From 4269c6fea3ee22d6c1c4683aaa919c5bea5af8fd Mon Sep 17 00:00:00 2001 From: Ayush Maniar Date: Thu, 13 Mar 2025 21:26:49 -0700 Subject: [PATCH 01/28] Added hells kitchen tasks, improvements to cooking_tasks world reset, more general goals in tasks.js for cooking task. --- profiles/tasks/cooking_profile.json | 4 +- src/agent/task_types/cooking_tasks.js | 26 +- src/agent/tasks.js | 2 +- .../hells_kitchen_test_tasks.json | 537 ++++++ .../hells_kitchen_train_tasks.json | 1613 +++++++++++++++++ 5 files changed, 2168 insertions(+), 14 deletions(-) create mode 100644 tasks/cooking_tasks/hells_kitchen_test_tasks.json create mode 100644 tasks/cooking_tasks/hells_kitchen_train_tasks.json diff --git a/profiles/tasks/cooking_profile.json b/profiles/tasks/cooking_profile.json index a092dc8..8f941d4 100644 --- a/profiles/tasks/cooking_profile.json +++ b/profiles/tasks/cooking_profile.json @@ -1,9 +1,9 @@ { "name": "andy", - "model": "gpt-4o-mini", + "model": "claude-3-5-haiku-latest", "modes": { "hunting": 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. Environment Resources:\n Cooking stations: Fueled furnace, smoker, and crafting table are nearby\n**Farm resources**:\n - Various crops ready for harvesting\n- Livestock including cows, pigs, sheep, and chickens\n- Storage chests containing additional materials\n\n ## Collaboration Tips:\n- The farm area is extensive - search thoroughly for needed resources\n- 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- The farm area is extensive - search thoroughly for needed resources\n There is a chest nearby with valuable items.\n- 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/src/agent/task_types/cooking_tasks.js b/src/agent/task_types/cooking_tasks.js index 5c87477..d4c7804 100644 --- a/src/agent/task_types/cooking_tasks.js +++ b/src/agent/task_types/cooking_tasks.js @@ -143,7 +143,8 @@ export class CookingTaskInitiator { const x = xStart + i; const z = zStart + j; await bot.chat(`/setblock ${x} ${position.y - 1} ${z} mycelium`); - await bot.chat(`/setblock ${x} ${position.y} ${z} red_mushroom`); + const mushroomType = (i + j) % 2 === 0 ? 'red_mushroom' : 'brown_mushroom'; + await bot.chat(`/setblock ${x} ${position.y} ${z} ${mushroomType}`); } } }; @@ -312,7 +313,7 @@ export class CookingTaskInitiator { const cookingItems = [ ['minecraft:milk_bucket', 1], // Non-stackable ['minecraft:egg', 16], // Stacks to 16 - ['minecraft:melon_slice', 64], // Stacks to 64 + ['minecraft:dandelion', 64], // Stacks to 64 ['minecraft:sugar', 64], ['minecraft:cocoa_beans', 64], ['minecraft:apple', 64], @@ -334,6 +335,9 @@ export class CookingTaskInitiator { ['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 @@ -355,16 +359,16 @@ export class CookingTaskInitiator { await new Promise(resolve => setTimeout(resolve, 300)); // Animal management - await bot.chat('/kill @e[type=item,distance=..50]'); - await bot.chat('/kill @e[type=chicken,distance=..50]'); - await bot.chat('/kill @e[type=cow,distance=..50]'); - await bot.chat('/kill @e[type=llama,distance=..50]'); - await bot.chat('/kill @e[type=mooshroom,distance=..50]'); - await bot.chat('/kill @e[type=pig,distance=..50]'); - await bot.chat('/kill @e[type=rabbit,distance=..50]'); - await bot.chat('/kill @e[type=sheep,distance=..50]'); + 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=..50]`); + await bot.chat(`/kill @e[type=item,distance=..200]`); await new Promise(resolve => setTimeout(resolve, 300)); diff --git a/src/agent/tasks.js b/src/agent/tasks.js index eeb7944..74f65ae 100644 --- a/src/agent/tasks.js +++ b/src/agent/tasks.js @@ -198,7 +198,7 @@ export class Task { let add_string = ''; if (this.task_type === 'cooking') { - add_string = '\nIn the end, all the food should be given to Andy.'; + add_string = '\nIn the end, all the food items should be given to one single player.'; } // If goal is a string, all agents share the same goal diff --git a/tasks/cooking_tasks/hells_kitchen_test_tasks.json b/tasks/cooking_tasks/hells_kitchen_test_tasks.json new file mode 100644 index 0000000..6e916a3 --- /dev/null +++ b/tasks/cooking_tasks/hells_kitchen_test_tasks.json @@ -0,0 +1,537 @@ +{ + "multiagent_cooking_1_bread_1_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": 1, + "cooked_mutton": 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_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.", + "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." + }, + "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_1_baked_potato_1_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": 1, + "golden_carrot": 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_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and 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.", + "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." + }, + "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_1_cooked_mutton_1_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": 1, + "mushroom_stew": 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." + ], + "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.", + "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." + }, + "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_1_cake_1_golden_carrot_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": 1, + "cake": 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." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "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.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 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.", + "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." + }, + "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_1_cooked_mutton_1_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": 1, + "golden_carrot": 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." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and 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.", + "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." + }, + "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_1_baked_potato_1_bread_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": 1, + "baked_potato": 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." + ], + "baked_potato": [ + "Step 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.", + "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." + }, + "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_1_cake_1_mushroom_stew_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": 1, + "cake": 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." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "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.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 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.", + "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." + }, + "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_1_baked_potato_1_cake_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": 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": [], + "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.", + "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.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 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." + }, + "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_1_baked_potato_1_cooked_mutton_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": 1, + "baked_potato": 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." + ], + "baked_potato": [ + "Step 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.", + "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." + }, + "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_1_golden_carrot_1_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": 1, + "mushroom_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." + ], + "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.", + "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." + }, + "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_1_bread_1_mushroom_stew_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": 1, + "bread": 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." + ], + "bread": [ + "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.", + "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." + }, + "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_1_cake_1_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": 1, + "cooked_mutton": 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_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.", + "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.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 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." + }, + "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_1_bread_1_golden_carrot_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": 1, + "bread": 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." + ], + "bread": [ + "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.", + "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." + }, + "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_1_baked_potato_1_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": 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: 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.", + "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." + }, + "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_1_bread_1_cake_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": 1, + "bread": 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." + ], + "bread": [ + "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.", + "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.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 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." + }, + "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" + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/hells_kitchen_train_tasks.json b/tasks/cooking_tasks/hells_kitchen_train_tasks.json new file mode 100644 index 0000000..19528f8 --- /dev/null +++ b/tasks/cooking_tasks/hells_kitchen_train_tasks.json @@ -0,0 +1,1613 @@ +{ + "multiagent_cooking_1_cooked_beef_1_rabbit_stew_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": 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": "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.", + "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." + }, + "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_1_cooked_beef_1_cooked_rabbit_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": 1, + "cooked_beef": 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_beef": [ + "Step 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.", + "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." + }, + "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_1_cooked_chicken_1_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": 1, + "cookie": 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." + ], + "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.", + "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." + }, + "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_1_cooked_rabbit_1_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": 1, + "golden_apple": 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_apple": [ + "Step 1: Go to the chest and collect 1 apple 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.", + "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." + }, + "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_1_cooked_rabbit_1_suspicious_stew_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": 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": [], + "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.", + "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." + }, + "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_1_cookie_1_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": 1, + "pumpkin_pie": 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." + ], + "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.", + "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." + }, + "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_1_golden_apple_1_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": 1, + "pumpkin_pie": 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." + ], + "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.", + "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." + }, + "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_1_cooked_porkchop_1_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": 1, + "pumpkin_pie": 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." + ], + "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.", + "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." + }, + "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_1_cooked_beef_1_golden_apple_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": 1, + "cooked_beef": 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." + ], + "cooked_beef": [ + "Step 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.", + "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." + }, + "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_1_golden_apple_1_rabbit_stew_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": 1, + "golden_apple": 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." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple 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.", + "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." + }, + "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_1_beetroot_soup_1_rabbit_stew_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": 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: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw 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.", + "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." + }, + "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_1_beetroot_soup_1_cooked_chicken_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": 1, + "beetroot_soup": 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." + ], + "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.", + "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." + }, + "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_1_beetroot_soup_1_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": 1, + "suspicious_stew": 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." + ], + "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.", + "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." + }, + "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_1_cooked_beef_1_cookie_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": 1, + "cooked_beef": 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_beef": [ + "Step 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.", + "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." + }, + "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_1_beetroot_soup_1_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": 1, + "golden_apple": 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_apple": [ + "Step 1: Go to the chest and collect 1 apple 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.", + "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." + }, + "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_1_cooked_chicken_1_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": 1, + "rabbit_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." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw 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.", + "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." + }, + "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_1_cookie_1_suspicious_stew_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": 1, + "cookie": 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." + ], + "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.", + "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." + }, + "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_1_cooked_porkchop_1_golden_apple_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": 1, + "cooked_porkchop": 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." + ], + "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.", + "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." + }, + "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_1_rabbit_stew_1_suspicious_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": 1, + "rabbit_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." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw 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.", + "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." + }, + "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_1_cooked_chicken_1_golden_apple_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": 1, + "cooked_chicken": 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." + ], + "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.", + "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." + }, + "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_1_cooked_beef_1_pumpkin_pie_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": 1, + "cooked_beef": 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_beef": [ + "Step 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.", + "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." + }, + "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_1_cooked_rabbit_1_rabbit_stew_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": 1, + "cooked_rabbit": 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_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.", + "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." + }, + "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_1_pumpkin_pie_1_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": 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": "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.", + "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." + }, + "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_1_cookie_1_rabbit_stew_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": 1, + "cookie": 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." + ], + "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.", + "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." + }, + "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_1_cooked_beef_1_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": 1, + "cooked_chicken": 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." + ], + "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.", + "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." + }, + "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_1_beetroot_soup_1_cookie_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": 1, + "beetroot_soup": 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." + ], + "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.", + "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." + }, + "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_1_beetroot_soup_1_pumpkin_pie_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": 1, + "beetroot_soup": 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." + ], + "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.", + "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." + }, + "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_1_golden_apple_1_suspicious_stew_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": 1, + "golden_apple": 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_apple": [ + "Step 1: Go to the chest and collect 1 apple 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.", + "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." + }, + "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_1_cooked_porkchop_1_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": 1, + "cookie": 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." + ], + "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.", + "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." + }, + "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_1_beetroot_soup_1_cooked_rabbit_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": 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": [], + "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.", + "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." + }, + "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_1_beetroot_soup_1_cooked_beef_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": 1, + "beetroot_soup": 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." + ], + "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.", + "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." + }, + "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_1_cooked_beef_1_suspicious_stew_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": 1, + "cooked_beef": 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_beef": [ + "Step 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.", + "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." + }, + "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_1_cookie_1_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": 1, + "golden_apple": 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_apple": [ + "Step 1: Go to the chest and collect 1 apple 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.", + "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." + }, + "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_1_cooked_porkchop_1_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": 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": [], + "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.", + "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." + }, + "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_1_cooked_chicken_1_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": 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": "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.", + "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." + }, + "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_1_cooked_beef_1_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": 1, + "cooked_porkchop": 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." + ], + "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.", + "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." + }, + "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_1_cooked_porkchop_1_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": 1, + "rabbit_stew": 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." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw 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.", + "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." + }, + "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_1_cooked_chicken_1_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": 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": [], + "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.", + "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." + }, + "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_1_pumpkin_pie_1_rabbit_stew_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": 1, + "pumpkin_pie": 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." + ], + "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.", + "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." + }, + "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_1_cooked_rabbit_1_cookie_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": 1, + "cooked_rabbit": 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_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.", + "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." + }, + "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_1_cooked_rabbit_1_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": 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": [], + "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.", + "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." + }, + "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_1_cooked_porkchop_1_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": 1, + "suspicious_stew": 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." + ], + "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.", + "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." + }, + "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_1_cooked_chicken_1_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": 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": [], + "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.", + "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." + }, + "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_1_beetroot_soup_1_cooked_porkchop_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": 1, + "beetroot_soup": 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." + ], + "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.", + "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." + }, + "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_1_cooked_chicken_1_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": 1, + "pumpkin_pie": 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." + ], + "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.", + "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." + }, + "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" + } +} \ No newline at end of file From d8e933a25d089fe20e4be2dd0209d0c4594adb0e Mon Sep 17 00:00:00 2001 From: Isadora White Date: Thu, 13 Mar 2025 21:31:16 -0700 Subject: [PATCH 02/28] small fix to loading with cheats --- analyse_results.py | 2 +- evaluation_script.py | 40 +++++-------------- example_tasks.json | 64 +++++++++++++++++++++++++++++- profiles/tasks/collab_profile.json | 9 ++++- 4 files changed, 81 insertions(+), 34 deletions(-) diff --git a/analyse_results.py b/analyse_results.py index 820800e..552865e 100644 --- a/analyse_results.py +++ b/analyse_results.py @@ -155,7 +155,7 @@ def aggregate_results(local_folders): success = int(extract_result(folder_path)) successful += success - if "missing" in folder_path: + if "missing" in folder_path and not is_base(folder_path): missing_successful += success missing_total += 1 if is_base(folder_path): diff --git a/evaluation_script.py b/evaluation_script.py index 2cf6152..7168b51 100644 --- a/evaluation_script.py +++ b/evaluation_script.py @@ -71,35 +71,8 @@ def check_task_completion(agents): except (FileNotFoundError, json.JSONDecodeError) as e: print(f"Error reading memory for agent {agent}: {e}") continue - return False # Default to failure if no conclusive result found -def update_results_file(task_id, success_count, total_count, time_taken, experiment_results, results_filename): - """Update the results file with current success ratio and time taken.""" - success_ratio = success_count / total_count - - with open(results_filename, 'w') as f: # 'w' mode overwrites the file each time - f.write(f"Task ID: {task_id}\n") - f.write(f"Experiments completed: {total_count}\n") - f.write(f"Successful experiments: {success_count}\n") - f.write(f"Success ratio: {success_ratio:.2f}\n") - f.write(f"Time taken for last experiment: {time_taken:.2f} seconds\n") - - # Write individual experiment results - for i, result in enumerate(experiment_results, 1): - f.write(f"Experiment {i}: {'Success' if result['success'] else 'Failure'}, Time taken: {result['time_taken']:.2f} seconds\n") - - # Write aggregated metrics - total_time = sum(result['time_taken'] for result in experiment_results) - f.write(f"\nAggregated metrics:\n") - f.write(f"Total experiments: {total_count}\n") - f.write(f"Total successful experiments: {success_count}\n") - f.write(f"Overall success ratio: {success_ratio:.2f}\n") - f.write(f"Total time taken: {total_time:.2f} seconds\n") - f.write(f"Average time per experiment: {total_time / total_count:.2f} seconds\n") - f.write(f"Last updated: {datetime.now().strftime('%Y-%m-%d %H:%M:%S')}\n") - - def set_environment_variable_tmux_session(session_name, key, value): """Set an environment variable for the current process.""" subprocess.run(["tmux", "send-keys", "-t", session_name, f"export {key}={value}", "C-m"]) @@ -194,7 +167,9 @@ def launch_server_experiment(task_path, models = [model] * 2 apis = [api] * 2 else: - agent_names = [f"Andy_{session_name}", f"Jill_{session_name}", f"Bob_{session_name}"] + agent_names = [] + for i in range(num_agents): + agent_names.append(f"Agent_{i}_{session_name}") models = [model] * 3 apis = [api] * 3 make_profiles(agent_names, models, apis, template_profile=template_profile, url=url) @@ -205,6 +180,11 @@ def launch_server_experiment(task_path, agent_profiles_str = f"'[\"{agent_profiles[0]}\"]'" elif num_agents == 2: agent_profiles_str = f"'[\"{agent_profiles[0]}\", \"{agent_profiles[1]}\"]'" + else: + agent_profiles_str = "'[" + for agent in agent_profiles[:-1]: + agent_profiles_str += f'\"{agent}\", ' + agent_profiles_str += f"\"{agent_profiles[-1]}\"]'" print(agent_profiles_str) launch_world(server_path, session_name="server_" + session_name, agent_names=agent_names) @@ -218,11 +198,11 @@ def launch_server_experiment(task_path, set_environment_variable_tmux_session(session_name, "INSECURE_CODING", "true") # you need to add the bots to the world first before you can add them as op - cmd = f"node main.js --task_path example_tasks.json --task_id debug_multi_agent_timeout" + cmd = f"node main.js --task_path example_tasks.json --task_id debug_{num_agents}_agent_timeout" subprocess.run(["tmux", "send-keys", "-t", session_name, cmd, "C-m"]) - time.sleep(20) + time.sleep(40) # add the bots as op for agent in agent_names: diff --git a/example_tasks.json b/example_tasks.json index 4778439..d966103 100644 --- a/example_tasks.json +++ b/example_tasks.json @@ -17,7 +17,7 @@ }, "type": "debug" }, - "debug_multi_agent_timeout": { + "debug_2_agent_timeout": { "goal": "Just stand at a place and don't do anything", "agent_count": 2, "initial_inventory": { @@ -29,7 +29,67 @@ } }, "type": "debug", - "timeout": 30 + "timeout": 60 + }, + "debug_3_agent_timeout": { + "goal": "Just stand at a place and don't do anything", + "agent_count": 3, + "initial_inventory": { + "0": { + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + } + }, + "type": "debug", + "timeout": 60 + }, + "debug_4_agent_timeout": { + "goal": "Just stand at a place and don't do anything", + "agent_count": 4, + "initial_inventory": { + "0": { + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "type": "debug", + "timeout": 60 + }, + "debug_5_agent_timeout": { + "goal": "Just stand at a place and don't do anything", + "agent_count": 5, + "initial_inventory": { + "0": { + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "type": "debug", + "timeout": 60 }, "debug_different_goal": { "goal": { diff --git a/profiles/tasks/collab_profile.json b/profiles/tasks/collab_profile.json index df422ac..f0cf090 100644 --- a/profiles/tasks/collab_profile.json +++ b/profiles/tasks/collab_profile.json @@ -34,7 +34,14 @@ {"role": "assistant", "content": "Seems like we need are missing 1 peony which we can use craft 1 pink_dye which is an intermediate item, but since you already have a pink_dye, there is no need to search for peony which is used to craft pink_dye, can you pass the pink_dye to me?"}, {"role": "user", "content": "terrance: (FROM OTHER BOT) Sure, here you go !givePlayer(\"pink_dye\", 1, \"jacob\")"}, {"role": "assistant", "content": "Thanks for the pink_dye, now I can craft the pink_wool. !craftItem(\"pink_wool\", 1)"} + ], + [ + {"role": "user", "content": "terrance: (FROM OTHER BOT) Lets craft a cyan bed together"}, + {"role": "assistant", "content": "Sure, I have !inventory\n I have a cyan_dye and oak_planks. What do you have? "}, + {"role": "user", "content": "terrance: (FROM OTHER BOT) I have 1 cyan_wool and 1 oak_planks. Let me give those to you !givePlayer(\"cyan_wool\", 1, \"andy\") !givePlayer(\"oak_planks\", 1, \"andy\")"}, + {"role": "assistant", "content": "Hmm seems like we don't have enough to craft a cyan bed, let me reach out to the third agent and ask for help! !startConversation(\"jacob\", Hey jacob, can you help us craft a cyan bed? We need cyan_dye and oak_planks"}, + {"role": "user", "content": "jacob: (FROM OTHER BOT) Sure! Let me give those to you !givePlayer(\"cyan_dye\", 1, \"andy\") !givePlayer(\"oak_planks\", 1, \"andy\")"}, + {"role": "assistant", "content": "Thanks for the items, now I can craft the cyan bed. !craftItem(\"cyan_bed\", 1)"} ] ] - } \ No newline at end of file From dc3322b5185275c70992b00550446e13d909ab34 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Fri, 14 Mar 2025 00:14:37 -0700 Subject: [PATCH 03/28] more /op commands --- evaluation_script.py | 32 ++++++++++++++++++++++++-------- 1 file changed, 24 insertions(+), 8 deletions(-) diff --git a/evaluation_script.py b/evaluation_script.py index 7168b51..c3f8b2f 100644 --- a/evaluation_script.py +++ b/evaluation_script.py @@ -106,6 +106,8 @@ def launch_parallel_experiments(task_path, experiments_folder = f"experiments/{exp_name}_{date_time}" exp_name = f"{exp_name}_{date_time}" + + # start wandb os.makedirs(experiments_folder, exist_ok=True) for i, server in enumerate(servers): @@ -124,6 +126,12 @@ def launch_parallel_experiments(task_path, num_agents=num_agents, url=url) time.sleep(5) + + for i in range(20): + for i in range(len(servers)): + session_name = str(servers[i][1] - 55916) + subprocess.run(["tmux", "send-keys", "-t", "server_" + session_name, f"/op @a", "C-m"]) + time.sleep(1) def launch_server_experiment(task_path, task_ids, @@ -204,10 +212,13 @@ def launch_server_experiment(task_path, time.sleep(40) + subprocess.run(["tmux", "send-keys", "-t", "server_" + session_name, f"/op {agent_names[0]}", "C-m"]) + # add the bots as op - for agent in agent_names: - subprocess.run(["tmux", "send-keys", "-t", "server_" + session_name, f"/op {agent}", "C-m"]) - time.sleep(1) + # op_script_content = "sleep 5\n\op @p" * 20 + # op_script_file = f"./tmp/op_script_{session_name}.sh" + # make_script_file_and_run(op_script_content, "server_" + session_name, op_script_file) + script_content = "" for task_id in task_ids: @@ -243,23 +254,28 @@ def launch_server_experiment(task_path, # Create a temporary shell script file script_file = f"./tmp/experiment_script_{session_name}.sh" + make_script_file_and_run(script_content, session_name, script_file) - script_dir = os.path.dirname(script_file) + + + + +def make_script_file_and_run(script_content, session_name, file_name): + script_dir = os.path.dirname(file_name) os.makedirs(script_dir, exist_ok=True) assert os.path.exists(script_dir), f"Script directory {script_dir} was not created" print(f"Created script directory: {script_dir}") # Call the function before writing the script file - with open(script_file, 'w') as f: + with open(file_name, 'w') as f: f.write(script_content) - assert os.path.exists(script_file), f"Script file {script_file} was not created" + assert os.path.exists(file_name), f"Script file {file_name} was not created" - script_file_run = "bash " + script_file + script_file_run = "bash " + file_name # Execute the shell script using subprocess subprocess.run(["tmux", "send-keys", "-t", session_name, script_file_run, "C-m"]) - # subprocess.run(["tmux", "send-keys", "-t", session_name, f"/op {agent_names[0]}", "C-m"]) def make_profiles(agent_names, models, apis, template_profile="profiles/collab_profile.json", url="http://127.0.0.1:8000/v1"): From 9c3e726a360086906893b6b24c51f49c7dbf4c15 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Fri, 14 Mar 2025 00:35:21 -0700 Subject: [PATCH 04/28] fix prompter logging --- src/models/prompter.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/models/prompter.js b/src/models/prompter.js index bdcaa4e..3334ffb 100644 --- a/src/models/prompter.js +++ b/src/models/prompter.js @@ -430,7 +430,7 @@ export class Prompter { async promptMemSaving(to_summarize) { await this.checkCooldown(); - let prompt = this.profile.saving_memory; + let prompt = await this.replaceStrings(prompt, null, null, to_summarize); let logEntry; const timestamp = new Date().toISOString().replace(/[:.]/g, '-'); if (this.task_id === null) { @@ -440,7 +440,7 @@ export class Prompter { } const logFile = `memSaving_${timestamp}.txt`; await this.saveToFile(logFile, logEntry); - prompt = await this.replaceStrings(prompt, null, null, to_summarize); + return await this.chat_model.sendRequest([], prompt); } From 8c78398056140a991157bb6fa568dbd89ba6b02b Mon Sep 17 00:00:00 2001 From: Isadora White Date: Fri, 14 Mar 2025 15:19:26 -0700 Subject: [PATCH 05/28] fix single agent issue --- evaluation_script.py | 2 +- example_tasks.json | 9 +++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/evaluation_script.py b/evaluation_script.py index c3f8b2f..dfcc897 100644 --- a/evaluation_script.py +++ b/evaluation_script.py @@ -131,7 +131,7 @@ def launch_parallel_experiments(task_path, for i in range(len(servers)): session_name = str(servers[i][1] - 55916) subprocess.run(["tmux", "send-keys", "-t", "server_" + session_name, f"/op @a", "C-m"]) - time.sleep(1) + time.sleep(10) def launch_server_experiment(task_path, task_ids, diff --git a/example_tasks.json b/example_tasks.json index d966103..7a08ce4 100644 --- a/example_tasks.json +++ b/example_tasks.json @@ -17,6 +17,15 @@ }, "type": "debug" }, + "debug_1_agent_timeout": { + "goal": "Just stand at a place and don't do anything", + "agent_count": 1, + "initial_inventory": { + "iron_ingot": 1 + }, + "type": "debug", + "timeout": 60 + }, "debug_2_agent_timeout": { "goal": "Just stand at a place and don't do anything", "agent_count": 2, From 2dea51f2d1976e5f4c59bfdf9dda2cfb458af60f Mon Sep 17 00:00:00 2001 From: Isadora White Date: Fri, 14 Mar 2025 18:20:33 -0700 Subject: [PATCH 06/28] fix prompter --- src/models/prompter.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/models/prompter.js b/src/models/prompter.js index 3334ffb..9785831 100644 --- a/src/models/prompter.js +++ b/src/models/prompter.js @@ -430,7 +430,8 @@ export class Prompter { async promptMemSaving(to_summarize) { await this.checkCooldown(); - let prompt = await this.replaceStrings(prompt, null, null, to_summarize); + let prompt = this.profile.saving_memory; + prompt = await this.replaceStrings(prompt, null, null, to_summarize); let logEntry; const timestamp = new Date().toISOString().replace(/[:.]/g, '-'); if (this.task_id === null) { From d399f8e214afc23db87d36561634b719d5d48c0e Mon Sep 17 00:00:00 2001 From: Isadora White Date: Fri, 14 Mar 2025 18:49:33 -0700 Subject: [PATCH 07/28] blocked actions --- evaluation_script.py | 25 +++++++++++++++++-------- 1 file changed, 17 insertions(+), 8 deletions(-) diff --git a/evaluation_script.py b/evaluation_script.py index dfcc897..b6cdc86 100644 --- a/evaluation_script.py +++ b/evaluation_script.py @@ -9,6 +9,10 @@ import sys import os import time +BLOCKED_ACTIONS_COOKING = [] +BLOCKED_ACTIONS_CRAFTING = [] +BLOCKED_ACTIONS_CONSTRUCTION = [] + def read_settings(file_path): """Read and parse the settings.js file to get agent profiles.""" with open(file_path, 'r', encoding='utf-8') as file: @@ -97,6 +101,9 @@ def launch_parallel_experiments(task_path, task_ids = json_data.keys() + task_type = json_data[list(task_ids)[0]]["type"] + + # split the task_ids into num_parallel groups task_ids = list(task_ids) task_ids_split = [task_ids[i::num_parallel] for i in range(num_parallel)] @@ -106,8 +113,6 @@ def launch_parallel_experiments(task_path, experiments_folder = f"experiments/{exp_name}_{date_time}" exp_name = f"{exp_name}_{date_time}" - - # start wandb os.makedirs(experiments_folder, exist_ok=True) for i, server in enumerate(servers): @@ -124,7 +129,8 @@ def launch_parallel_experiments(task_path, api=api, insecure_coding=insecure_coding, num_agents=num_agents, - url=url) + url=url, + task_type=task_type) time.sleep(5) for i in range(20): @@ -146,7 +152,8 @@ def launch_server_experiment(task_path, bucket_name="mindcraft-experiments", template_profile="profiles/tasks/collab_profile.json", insecure_coding=False, - url="http://127.0.0.1:8000/v1"): + url="http://127.0.0.1:8000/v1", + task_type="techtree"): """ Launch a Minecraft server and run experiments on it. @param task_path: Path to the task file @@ -218,6 +225,12 @@ def launch_server_experiment(task_path, # op_script_content = "sleep 5\n\op @p" * 20 # op_script_file = f"./tmp/op_script_{session_name}.sh" # make_script_file_and_run(op_script_content, "server_" + session_name, op_script_file) + if task_type == "cooking": + set_environment_variable_tmux_session(session_name, "BLOCKED_ACTIONS", BLOCKED_ACTIONS_COOKING) + elif task_type == "techtree": + set_environment_variable_tmux_session(session_name, "BLOCKED_ACTIONS", BLOCKED_ACTIONS_CRAFTING) + elif task_type == "construction": + set_environment_variable_tmux_session(session_name, "BLOCKED_ACTIONS", BLOCKED_ACTIONS_CONSTRUCTION) script_content = "" @@ -256,10 +269,6 @@ def launch_server_experiment(task_path, script_file = f"./tmp/experiment_script_{session_name}.sh" make_script_file_and_run(script_content, session_name, script_file) - - - - def make_script_file_and_run(script_content, session_name, file_name): script_dir = os.path.dirname(file_name) os.makedirs(script_dir, exist_ok=True) From 125aa73d6c961e96f082e313a70153699d867632 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Fri, 14 Mar 2025 18:51:41 -0700 Subject: [PATCH 08/28] adding blocked actions --- evaluation_script.py | 26 +++++++++++++++++++++++--- settings.js | 4 ++-- 2 files changed, 25 insertions(+), 5 deletions(-) diff --git a/evaluation_script.py b/evaluation_script.py index b6cdc86..2c8654c 100644 --- a/evaluation_script.py +++ b/evaluation_script.py @@ -9,9 +9,29 @@ import sys import os import time -BLOCKED_ACTIONS_COOKING = [] -BLOCKED_ACTIONS_CRAFTING = [] -BLOCKED_ACTIONS_CONSTRUCTION = [] +BLOCKED_ACTIONS_COOKING = [ + '!activate', '!attackPlayer', '!checkBlueprint', '!checkBlueprintLevel', + '!clearChat', '!clearFurnace', '!consume', '!craftable', '!discard', '!endConversation', + '!endGoal', '!entities', '!equip', '!followPlayer', '!getBlueprint', '!getBlueprintLevel', + '!goToBed', '!help', '!modes', '!moveAway', '!newAction', '!placeHere', '!putInChest', + '!restart', '!setMode', '!stay', '!stfu', '!stop' +] +BLOCKED_ACTIONS_CRAFTING = [ + '!activate', '!attack', '!attackPlayer', '!checkBlueprint', '!checkBlueprintLevel', + '!clearChat', '!clearFurnace', '!consume', '!craftable', '!discard', '!endConversation', + '!endGoal', '!entities', '!followPlayer', '!getBlueprint', '!getBlueprintLevel', + '!goToBed', '!help', '!modes', '!newAction', '!putInChest', '!restart', + '!searchForEntity', '!setMode', '!stay', '!stfu', '!stop', '!takeFromChest', + '!viewChest' +] +BLOCKED_ACTIONS_CONSTRUCTION = [ + '!activate', '!attackPlayer', '!clearChat', '!clearFurnace', '!collectBlocks', + '!consume', '!craftable', '!discard', '!endConversation', '!endGoal', '!entities', + '!equip', '!followPlayer', '!getBlueprint', '!getBlueprintLevel', '!goToBed', + '!help', '!modes', '!moveAway', '!newAction', '!placeHere', '!putInChest', + '!restart', '!searchForBlock', '!searchForEntity', '!setMode', '!stay', '!stfu', + '!stop', '!takeFromChest', '!viewChest' +] def read_settings(file_path): """Read and parse the settings.js file to get agent profiles.""" diff --git a/settings.js b/settings.js index 2a960fa..a0c2292 100644 --- a/settings.js +++ b/settings.js @@ -35,11 +35,11 @@ export default "show_bot_views": false, // show bot's view in browser at localhost:3000, 3001... "allow_insecure_coding": process.env.INSECURE_CODING || false, // allows newAction command and model can write/run code on your computer. enable at own risk - "blocked_actions" : [], // commands to disable and remove from docs. Ex: ["!setMode"] + "blocked_actions" : process.env.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, // Parameter: -1 = all, 0 = no references, 5 = five references. If exceeding the maximum, all reference documents are returned. - "max_messages": 15, // max number of messages to keep in context + "max_messages": 150, // 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 From c5b834597ab17b21ebe6d7dd27b1628d4566bd3d Mon Sep 17 00:00:00 2001 From: Ayush Maniar Date: Sat, 15 Mar 2025 14:27:56 -0700 Subject: [PATCH 09/28] Turned off item_collecting for cooking_profile.json --- profiles/tasks/cooking_profile.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/profiles/tasks/cooking_profile.json b/profiles/tasks/cooking_profile.json index 8f941d4..25d82aa 100644 --- a/profiles/tasks/cooking_profile.json +++ b/profiles/tasks/cooking_profile.json @@ -2,8 +2,9 @@ "name": "andy", "model": "claude-3-5-haiku-latest", "modes": { - "hunting": false + "hunting": false, + "item_collecting": 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- The farm area is extensive - search thoroughly for needed resources\n There is a chest nearby with valuable items.\n- 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 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 From 4b1e02fc95fcce62896079fe4140e04b4bf4a333 Mon Sep 17 00:00:00 2001 From: MaxRobinsonTheGreat Date: Sat, 15 Mar 2025 16:54:16 -0500 Subject: [PATCH 10/28] add manual collection for crops/other weird blocks --- src/agent/library/skills.js | 9 ++++++++- src/utils/mcdata.js | 10 ++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/src/agent/library/skills.js b/src/agent/library/skills.js index 95073fe..c4710d3 100644 --- a/src/agent/library/skills.js +++ b/src/agent/library/skills.js @@ -460,7 +460,14 @@ export async function collectBlock(bot, blockType, num=1, exclude=null) { return false; } try { - await bot.collectBlock.collect(block); + if (mc.mustCollectManually(blockType)) { + await goToPosition(bot, block.position.x, block.position.y, block.position.z, 2); + await bot.dig(block); + await pickupNearbyItems(bot); + } + else { + await bot.collectBlock.collect(block); + } collected++; await autoLight(bot); } diff --git a/src/utils/mcdata.js b/src/utils/mcdata.js index 2a3a27c..33b0142 100644 --- a/src/utils/mcdata.js +++ b/src/utils/mcdata.js @@ -86,6 +86,16 @@ export function isHostile(mob) { return (mob.type === 'mob' || mob.type === 'hostile') && mob.name !== 'iron_golem' && mob.name !== 'snow_golem'; } +// blocks that don't work with collectBlock, need to be manually collected +export function mustCollectManually(blockName) { + // all crops (that aren't normal blocks), torches, buttons, levers, redstone, + const full_names = ['wheat', 'carrots', 'potatoes', 'beetroots', 'nether_wart', 'cocoa', 'sugar_cane', 'kelp', 'short_grass', 'fern', 'tall_grass', 'bamboo', + 'poppy', 'dandelion', 'blue_orchid', 'allium', 'azure_bluet', 'oxeye_daisy', 'cornflower', 'lilac', 'wither_rose', 'lily_of_the_valley', 'wither_rose', + 'lever', 'redstone_wire', 'lantern'] + const partial_names = ['sapling', 'torch', 'button', 'carpet', 'pressure_plate', 'mushroom', 'tulip', 'bush', 'vines', 'fern'] + return full_names.includes(blockName.toLowerCase()) || partial_names.some(partial => blockName.toLowerCase().includes(partial)); +} + export function getItemId(itemName) { let item = mcdata.itemsByName[itemName]; if (item) { From 7c96cca59cb64be74e60dec743a075a6cbf06db2 Mon Sep 17 00:00:00 2001 From: Ayush Maniar Date: Sat, 15 Mar 2025 22:35:23 -0700 Subject: [PATCH 11/28] Bug fix for validator execution before the bot initialization --- src/agent/tasks.js | 32 ++++++++++++++++++++++---------- 1 file changed, 22 insertions(+), 10 deletions(-) diff --git a/src/agent/tasks.js b/src/agent/tasks.js index 74f65ae..9e5c9bb 100644 --- a/src/agent/tasks.js +++ b/src/agent/tasks.js @@ -126,16 +126,25 @@ class CookingCraftingTaskValidator { this.data = data; this.agent = agent; } - validate() { - const result = checkItemPresence(this.data, this.agent); - let score = 0; - if (result.success) { - score = 1; + validate(has_initiated) { + if (has_initiated) { + + const result = checkItemPresence(this.data, this.agent); + let score = 0; + if (result.success) { + score = 1; + } + return { + "valid": result.success, + "score": score, + }; + } + else { + return { + "valid": false, + "score": 0 + }; } - return { - "valid": result.success, - "score": score, - }; } } @@ -188,6 +197,7 @@ export class Task { this.name = this.agent.name; this.available_agents = settings.profiles.map((p) => JSON.parse(readFileSync(p, 'utf8')).name); + this.agent_initialized = false; } getAgentGoal() { @@ -239,7 +249,7 @@ export class Task { isDone() { let res = null; if (this.validator) - res = this.validator.validate(); + res = this.validator.validate(this.agent_initialized); if (res && res.valid) { return {"message": 'Task successful', "score": res.score}; } @@ -311,6 +321,8 @@ export class Task { await new Promise((resolve) => setTimeout(resolve, 500)); } + this.agent_initialized = true; + if (this.initiator) { await this.initiator.init(); } From 7bb2b9c38230a925b431703c5659e614c2b35749 Mon Sep 17 00:00:00 2001 From: hlillemark Date: Sat, 15 Mar 2025 22:46:46 -0700 Subject: [PATCH 12/28] Change analyse results to take all possible success signals --- analyse_results.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/analyse_results.py b/analyse_results.py index 552865e..c83a83a 100644 --- a/analyse_results.py +++ b/analyse_results.py @@ -76,7 +76,7 @@ def analyze_json_file(file_path): if 'turns' in data and isinstance(data['turns'], list): for turn in reversed(data['turns']): # Check turns from the end if turn.get('role') == 'system' and isinstance(turn.get('content'), str): - if "Task successful ended with code : 2" in turn['content'] or "Task ended in score: 1" in turn["content"]: + if "Task successful ended with code : 2" in turn['content'] or "Task ended with score : 1" in turn["content"] or "Task ended in score: 1" in turn["content"]: return True return False except FileNotFoundError: From 4d1319f530b6370cab818c7efd2e03e3c431e77b Mon Sep 17 00:00:00 2001 From: Ayush Maniar Date: Sat, 15 Mar 2025 22:55:41 -0700 Subject: [PATCH 13/28] Correct task ended message checking from "ended in" to "ended with" --- analyse_results.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/analyse_results.py b/analyse_results.py index 552865e..c83a83a 100644 --- a/analyse_results.py +++ b/analyse_results.py @@ -76,7 +76,7 @@ def analyze_json_file(file_path): if 'turns' in data and isinstance(data['turns'], list): for turn in reversed(data['turns']): # Check turns from the end if turn.get('role') == 'system' and isinstance(turn.get('content'), str): - if "Task successful ended with code : 2" in turn['content'] or "Task ended in score: 1" in turn["content"]: + if "Task successful ended with code : 2" in turn['content'] or "Task ended with score : 1" in turn["content"] or "Task ended in score: 1" in turn["content"]: return True return False except FileNotFoundError: From 8bdb1b01c1d4ddddbcfe52daf296ec21b50f6cb8 Mon Sep 17 00:00:00 2001 From: Ayush Maniar Date: Sun, 16 Mar 2025 00:00:24 -0700 Subject: [PATCH 14/28] Updated takeFromChest skill to withdraw items from multiple slots when needed --- src/agent/library/skills.js | 30 +++++++++++++++++++++++------- 1 file changed, 23 insertions(+), 7 deletions(-) diff --git a/src/agent/library/skills.js b/src/agent/library/skills.js index c4710d3..f149ef8 100644 --- a/src/agent/library/skills.js +++ b/src/agent/library/skills.js @@ -830,7 +830,7 @@ export async function putInChest(bot, itemName, num=-1) { export async function takeFromChest(bot, itemName, num=-1) { /** - * Take the given item from the nearest chest. + * Take the given item from the nearest chest, potentially from multiple slots. * @param {MinecraftBot} bot, reference to the minecraft bot. * @param {string} itemName, the item or block name to take from the chest. * @param {number} num, the number of items to take from the chest. Defaults to -1, which takes all items. @@ -845,17 +845,33 @@ export async function takeFromChest(bot, itemName, num=-1) { } await goToPosition(bot, chest.position.x, chest.position.y, chest.position.z, 2); const chestContainer = await bot.openContainer(chest); - let item = chestContainer.containerItems().find(item => item.name === itemName); - if (!item) { + + // Find all matching items in the chest + let matchingItems = chestContainer.containerItems().filter(item => item.name === itemName); + if (matchingItems.length === 0) { log(bot, `Could not find any ${itemName} in the chest.`); await chestContainer.close(); return false; } - let to_take = num === -1 ? item.count : Math.min(num, item.count); - await chestContainer.withdraw(item.type, null, to_take); + + let totalAvailable = matchingItems.reduce((sum, item) => sum + item.count, 0); + let remaining = num === -1 ? totalAvailable : Math.min(num, totalAvailable); + let totalTaken = 0; + + // Take items from each slot until we've taken enough or run out + for (const item of matchingItems) { + if (remaining <= 0) break; + + let toTakeFromSlot = Math.min(remaining, item.count); + await chestContainer.withdraw(item.type, null, toTakeFromSlot); + + totalTaken += toTakeFromSlot; + remaining -= toTakeFromSlot; + } + await chestContainer.close(); - log(bot, `Successfully took ${to_take} ${itemName} from the chest.`); - return true; + log(bot, `Successfully took ${totalTaken} ${itemName} from the chest.`); + return totalTaken > 0; } export async function viewChest(bot) { From 1ccba3a4b5c3d89114a46ba045c1e383e6c2c842 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Sun, 16 Mar 2025 17:55:05 -0700 Subject: [PATCH 15/28] new train, test, dev tasks and new analysis files --- analyze_construction_tasks.py | 39 + analyze_cooking_tasks.py | 222 + evaluation_script.py | 6 +- settings.js | 2 +- .../dev_tasks/tasks_2_agents.json | 5432 ++++++++ .../dev_tasks/tasks_2_agents_stats.txt | 16 + .../dev_tasks/tasks_3_agents.json | 6044 +++++++++ .../dev_tasks/tasks_3_agents_stats.txt | 16 + .../dev_tasks/tasks_4_agents.json | 4766 ++++++++ .../dev_tasks/tasks_4_agents_stats.txt | 15 + .../dev_tasks/tasks_5_agents.json | 5582 +++++++++ .../dev_tasks/tasks_5_agents_stats.txt | 15 + .../test_tasks/tasks_2_agents.json | 5516 +++++++++ .../test_tasks/tasks_2_agents_stats.txt | 14 + .../test_tasks/tasks_3_agents.json | 5528 +++++++++ .../test_tasks/tasks_3_agents_stats.txt | 14 + .../test_tasks/tasks_4_agents.json | 5658 +++++++++ .../test_tasks/tasks_4_agents_stats.txt | 14 + .../test_tasks/tasks_5_agents.json | 5777 +++++++++ .../test_tasks/tasks_5_agents_stats.txt | 14 + .../train_tasks/tasks_2_agents.json | 7800 ++++++++++++ .../train_tasks/tasks_2_agents_stats.txt | 16 + .../train_tasks/tasks_3_agents.json | 9278 ++++++++++++++ .../train_tasks/tasks_3_agents_stats.txt | 15 + .../train_tasks/tasks_4_agents.json | 9401 ++++++++++++++ .../train_tasks/tasks_4_agents_stats.txt | 16 + .../train_tasks/tasks_5_agents.json | 10201 ++++++++++++++++ .../train_tasks/tasks_5_agents_stats.txt | 15 + 28 files changed, 81428 insertions(+), 4 deletions(-) create mode 100644 analyze_construction_tasks.py create mode 100644 analyze_cooking_tasks.py create mode 100644 tasks/crafting_tasks/dev_tasks/tasks_2_agents.json create mode 100644 tasks/crafting_tasks/dev_tasks/tasks_2_agents_stats.txt create mode 100644 tasks/crafting_tasks/dev_tasks/tasks_3_agents.json create mode 100644 tasks/crafting_tasks/dev_tasks/tasks_3_agents_stats.txt create mode 100644 tasks/crafting_tasks/dev_tasks/tasks_4_agents.json create mode 100644 tasks/crafting_tasks/dev_tasks/tasks_4_agents_stats.txt create mode 100644 tasks/crafting_tasks/dev_tasks/tasks_5_agents.json create mode 100644 tasks/crafting_tasks/dev_tasks/tasks_5_agents_stats.txt create mode 100644 tasks/crafting_tasks/test_tasks/tasks_2_agents.json create mode 100644 tasks/crafting_tasks/test_tasks/tasks_2_agents_stats.txt create mode 100644 tasks/crafting_tasks/test_tasks/tasks_3_agents.json create mode 100644 tasks/crafting_tasks/test_tasks/tasks_3_agents_stats.txt create mode 100644 tasks/crafting_tasks/test_tasks/tasks_4_agents.json create mode 100644 tasks/crafting_tasks/test_tasks/tasks_4_agents_stats.txt create mode 100644 tasks/crafting_tasks/test_tasks/tasks_5_agents.json create mode 100644 tasks/crafting_tasks/test_tasks/tasks_5_agents_stats.txt create mode 100644 tasks/crafting_tasks/train_tasks/tasks_2_agents.json create mode 100644 tasks/crafting_tasks/train_tasks/tasks_2_agents_stats.txt create mode 100644 tasks/crafting_tasks/train_tasks/tasks_3_agents.json create mode 100644 tasks/crafting_tasks/train_tasks/tasks_3_agents_stats.txt create mode 100644 tasks/crafting_tasks/train_tasks/tasks_4_agents.json create mode 100644 tasks/crafting_tasks/train_tasks/tasks_4_agents_stats.txt create mode 100644 tasks/crafting_tasks/train_tasks/tasks_5_agents.json create mode 100644 tasks/crafting_tasks/train_tasks/tasks_5_agents_stats.txt diff --git a/analyze_construction_tasks.py b/analyze_construction_tasks.py new file mode 100644 index 0000000..2879033 --- /dev/null +++ b/analyze_construction_tasks.py @@ -0,0 +1,39 @@ +import boto3 +import os +import json +import re +from botocore.exceptions import ClientError +import json +import argparse +from tqdm import tqdm +import glob + + +def analyze_json_file(file_path): + """ + Analyzes a single JSON file to extract the task outcome. + + Args: + file_path (str): Path to the JSON file. + + Returns: + str or None: The task outcome string if found, otherwise None. + """ + try: + with open(file_path, 'r') as f: + data = json.load(f) + if 'turns' in data and isinstance(data['turns'], list): + for turn in reversed(data['turns']): # Check turns from the end + if turn.get('role') == 'system' and isinstance(turn.get('content'), str): + if "Task successful ended with code : 2" in turn['content'] or "Task ended in score: 1" in turn["content"]: + return True + return False + except FileNotFoundError: + print(f"Error: File not found: {file_path}") + return None + except json.JSONDecodeError: + print(f"Error: Invalid JSON format in: {file_path}") + return None + except Exception as e: + print(f"An unexpected error occurred while processing {file_path}: {e}") + return None \ No newline at end of file diff --git a/analyze_cooking_tasks.py b/analyze_cooking_tasks.py new file mode 100644 index 0000000..d727d5b --- /dev/null +++ b/analyze_cooking_tasks.py @@ -0,0 +1,222 @@ +import os +import json +import re +from collections import defaultdict + +def extract_cooking_items(exp_dir): + """Extract cooking items from experiment directory name.""" + # Remove prefix and blocked access part + clean_name = re.sub(r'^multiagent_cooking_', '', exp_dir) + clean_name = re.sub(r'_blocked_access_[0-9_]+$', '', clean_name) + + # Extract individual items + items = [] + for item_match in re.finditer(r'([0-9]+)_([a-zA-Z_]+)', clean_name): + count = int(item_match.group(1)) + item = item_match.group(2) + # Remove trailing underscores to fix the item name issue + item = item.rstrip('_') + items.append(item) + + return items + +def analyze_experiments(root_dir): + # Store results by number of blocked agents + blocked_access_results = defaultdict(lambda: { + "success": 0, + "total": 0, + "cake_success": 0, + "cake_total": 0, + "non_cake_success": 0, + "non_cake_total": 0 + }) + + # Store results by cooking item + cooking_item_results = defaultdict(lambda: { + "success": 0, + "total": 0 + }) + + # Keep track of all unique cooking items + all_cooking_items = set() + + # Get a list of all experiment directories + experiment_dirs = [d for d in os.listdir(root_dir) if os.path.isdir(os.path.join(root_dir, d)) + and d.startswith("multiagent_cooking_")] + + for exp_dir in experiment_dirs: + # Extract cooking items + cooking_items = extract_cooking_items(exp_dir) + + # Add to unique items set + all_cooking_items.update(cooking_items) + + # Check if experiment involves cake + has_cake = any(item == "cake" for item in cooking_items) + + # Extract blocked access information from directory name + blocked_access_match = re.search(r'blocked_access_([0-9_]+)$', exp_dir) + + if blocked_access_match: + blocked_access_str = blocked_access_match.group(1) + # Count how many agents have blocked access + num_blocked_agents = len(blocked_access_str.split('_')) + blocked_key = f"{num_blocked_agents} agent(s)" + else: + # No agents blocked + blocked_key = "0 agent(s)" + + # Check if the task was successful + is_successful = False + full_exp_path = os.path.join(root_dir, exp_dir) + + # Get all JSON files in the experiment directory + agent_files = [f for f in os.listdir(full_exp_path) if f.endswith(".json")] + + # Check each agent file for success information + for agent_file in agent_files: + agent_file_path = os.path.join(full_exp_path, agent_file) + + try: + with open(agent_file_path, 'r') as f: + agent_data = json.load(f) + + # Check for success in the turns data + if "turns" in agent_data: + for turn in agent_data["turns"]: + if turn.get("role") == "system" and "content" in turn: + if isinstance(turn["content"], str) and "Task ended with score : 1" in turn["content"]: + is_successful = True + break + + # If we found success, no need to check other files + if is_successful: + break + + except (json.JSONDecodeError, IOError) as e: + print(f"Error reading {agent_file_path}: {e}") + # Continue to check other agent files instead of failing + continue + + # Update cooking item results + for item in cooking_items: + cooking_item_results[item]["total"] += 1 + if is_successful: + cooking_item_results[item]["success"] += 1 + + # Update the appropriate blocked access counters + # First update the category-specific counters + if has_cake: + blocked_access_results[blocked_key]["cake_total"] += 1 + if is_successful: + blocked_access_results[blocked_key]["cake_success"] += 1 + else: + blocked_access_results[blocked_key]["non_cake_total"] += 1 + if is_successful: + blocked_access_results[blocked_key]["non_cake_success"] += 1 + + # Only count non-cake experiments in the main totals + blocked_access_results[blocked_key]["total"] += 1 + if is_successful: + blocked_access_results[blocked_key]["success"] += 1 + + return blocked_access_results, cooking_item_results, all_cooking_items + +def print_blocked_results(results): + print("\nExperiment Results by Number of Agents with Blocked Access (Excluding Cake Experiments):") + print("=" * 80) + print(f"{'Blocked Agents':<15} | {'Success Rate':<15} | {'Success/Total':<15} | {'Cake Tasks':<15} | {'Non-Cake Tasks':<15}") + print("-" * 80) + + # Calculate totals + total_success = 0 + total_experiments = 0 + total_cake = 0 + total_non_cake = 0 + + # Sort by number of blocked agents + for key in sorted(results.keys(), key=lambda x: int(x.split()[0])): + success = results[key]["success"] + total = results[key]["total"] + cake_total = results[key]["cake_total"] + non_cake_total = results[key]["non_cake_total"] + + # Verify that non_cake_total matches total + if non_cake_total != total: + print(f"Warning: Non-cake total ({non_cake_total}) doesn't match the total ({total}) for {key}") + + total_success += success + total_experiments += total + total_cake += cake_total + total_non_cake += non_cake_total + + success_rate = (success / total * 100) if total > 0 else 0 + + print(f"{key:<15} | {success_rate:>6.2f}% | {success}/{total:<13} | {cake_total:<15} | {non_cake_total:<15}") + + # Calculate overall success rate (excluding cake experiments) + overall_success_rate = (total_success / total_experiments * 100) if total_experiments > 0 else 0 + + print("-" * 80) + print(f"{'Overall':<15} | {overall_success_rate:>6.2f}% | {total_success}/{total_experiments:<13} | {total_cake:<15} | {total_non_cake:<15}") + + # Print cake experiment details + print("\nCake Experiment Details:") + print("=" * 60) + print(f"{'Blocked Agents':<15} | {'Success Rate':<15} | {'Success/Total':<15}") + print("-" * 60) + + cake_total_success = 0 + cake_total_experiments = 0 + + for key in sorted(results.keys(), key=lambda x: int(x.split()[0])): + cake_success = results[key]["cake_success"] + cake_total = results[key]["cake_total"] + + cake_total_success += cake_success + cake_total_experiments += cake_total + + cake_success_rate = (cake_success / cake_total * 100) if cake_total > 0 else 0 + + print(f"{key:<15} | {cake_success_rate:>6.2f}% | {cake_success}/{cake_total}") + + cake_overall_success_rate = (cake_total_success / cake_total_experiments * 100) if cake_total_experiments > 0 else 0 + + print("-" * 60) + print(f"{'Overall':<15} | {cake_overall_success_rate:>6.2f}% | {cake_total_success}/{cake_total_experiments}") + +def print_cooking_items(cooking_items): + print("\nUnique Cooking Items Found:") + print("=" * 60) + print(", ".join(sorted(cooking_items))) + print(f"Total unique items: {len(cooking_items)}") + +def print_item_results(item_results): + print("\nExperiment Results by Cooking Item:") + print("=" * 60) + print(f"{'Cooking Item':<20} | {'Success Rate':<15} | {'Success/Total':<15}") + print("-" * 60) + + # Sort by item name + for item in sorted(item_results.keys()): + success = item_results[item]["success"] + total = item_results[item]["total"] + success_rate = (success / total * 100) if total > 0 else 0 + + print(f"{item:<20} | {success_rate:>6.2f}% | {success}/{total}") + + print("-" * 60) + +def main(): + # Update this path to your experiments directory + experiments_root = "../results/llama_70b_hells_kitchen_cooking_tasks" + + print(f"Analyzing experiments in: {os.path.abspath(experiments_root)}") + blocked_results, item_results, unique_items = analyze_experiments(experiments_root) + + print_blocked_results(blocked_results) + print_cooking_items(unique_items) + print_item_results(item_results) + +if __name__ == "__main__": + main() \ No newline at end of file diff --git a/evaluation_script.py b/evaluation_script.py index 2c8654c..8c1194b 100644 --- a/evaluation_script.py +++ b/evaluation_script.py @@ -274,8 +274,8 @@ def launch_server_experiment(task_path, script_content += f"{cp_cmd}\n" script_content += "sleep 1\n" if s3: - s3_cmd = f"aws s3 cp {agent_file_path} s3://{bucket_name}/{exp_name}/{task_id}/{agent}_{_}.json" - s3_upload_experiment = f"aws s3 cp {agent_file_path} s3://{bucket_name}/{exp_name}/{task_id}/{agent}_{_}.json" + s3_cmd = f"aws s3 cp {agent_file_path} s3://{bucket_name}/{task_type}/{model}/{exp_name}/{task_id}/{agent}_{_}.json" + s3_upload_experiment = f"aws s3 cp {agent_file_path} s3://{bucket_name}/{task_type}/{model}/{exp_name}/{task_id}/{agent}_{_}.json" script_content += f"echo 'Uploading {agent_file_path} to S3'\n" script_content += f"echo '{s3_cmd}'\n" script_content += f"{s3_cmd}\n" @@ -283,7 +283,7 @@ def launch_server_experiment(task_path, script_content += f"sleep 10\n" if s3: for agent in agent_names: - script_content += f"aws s3 cp bots/{agent} s3://{bucket_name}/{exp_name}/bots/{agent} --recursive\n" + script_content += f"aws s3 cp bots/{agent} s3://{bucket_name}/{task_type}/{model}/{exp_name}/bots/{agent} --recursive\n" # Create a temporary shell script file script_file = f"./tmp/experiment_script_{session_name}.sh" diff --git a/settings.js b/settings.js index a0c2292..d66ce1e 100644 --- a/settings.js +++ b/settings.js @@ -39,7 +39,7 @@ export default "code_timeout_mins": -1, // minutes code is allowed to run. -1 for no timeout "relevant_docs_count": 5, // Parameter: -1 = all, 0 = no references, 5 = five references. If exceeding the maximum, all reference documents are returned. - "max_messages": 150, // max number of messages to keep in context + "max_messages": process.env.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 diff --git a/tasks/crafting_tasks/dev_tasks/tasks_2_agents.json b/tasks/crafting_tasks/dev_tasks/tasks_2_agents.json new file mode 100644 index 0000000..61145a2 --- /dev/null +++ b/tasks/crafting_tasks/dev_tasks/tasks_2_agents.json @@ -0,0 +1,5432 @@ +{ + "multiagent_crafting_waxed_exposed_cut_copper_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an waxed_exposed_cut_copper", + "conversation": "Let's work together to craft an waxed_exposed_cut_copper.", + "initial_inventory": { + "0": { + "waxed_exposed_copper": 2 + }, + "1": { + "waxed_exposed_copper": 2 + } + }, + "agent_count": 2, + "target": "waxed_exposed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_bed_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_bed", + "conversation": "Let's work together to craft an purple_bed.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "black_wool": 1, + "oak_planks": 1 + }, + "1": { + "red_dye": 1, + "black_wool": 2, + "oak_planks": 2 + } + }, + "agent_count": 2, + "target": "purple_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_daylight_detector_0_with_plan_missing_glass_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "quartz": 2, + "oak_slab": 1 + }, + "1": { + "quartz": 1, + "oak_slab": 2 + } + }, + "agent_count": 2, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "glass" + ] + }, + "multiagent_crafting_lime_banner_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 3, + "black_wool": 3, + "oak_planks": 1 + }, + "1": { + "lime_dye": 3, + "black_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_stone_bricks_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an chiseled_stone_bricks", + "conversation": "Let's work together to craft an chiseled_stone_bricks.", + "initial_inventory": { + "0": { + "stone_brick_slab": 1 + }, + "1": { + "stone_brick_slab": 1 + } + }, + "agent_count": 2, + "target": "chiseled_stone_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_wool_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an white_wool", + "conversation": "Let's work together to craft an white_wool.", + "initial_inventory": { + "0": { + "bone_meal": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "white_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_smithing_table_0_with_plan_missing_iron_ingot_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an smithing_table", + "conversation": "Let's work together to craft an smithing_table.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 2, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "smithing_table", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_tripwire_hook_0_with_plan_missing_iron_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an tripwire_hook", + "conversation": "Let's work together to craft an tripwire_hook.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "oak_log": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 1, + "stone_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "tripwire_hook", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_orange_wool_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an orange_wool", + "conversation": "Let's work together to craft an orange_wool.", + "initial_inventory": { + "0": { + "orange_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "orange_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 3, + "black_wool": 3, + "oak_planks": 1 + }, + "1": { + "brown_dye": 3, + "black_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_bed_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_bed", + "conversation": "Let's work together to craft an purple_bed.", + "initial_inventory": { + "0": { + "purple_dye": 1 + }, + "1": { + "black_bed": 1 + } + }, + "agent_count": 2, + "target": "purple_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_writable_book_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an writable_book", + "conversation": "Let's work together to craft an writable_book.", + "initial_inventory": { + "0": { + "paper": 2, + "leather": 1, + "feather": 1 + }, + "1": { + "paper": 1, + "ink_sac": 1 + } + }, + "agent_count": 2, + "target": "writable_book", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_quartz_pillar_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an quartz_pillar", + "conversation": "Let's work together to craft an quartz_pillar.", + "initial_inventory": { + "0": { + "quartz_block": 1 + }, + "1": { + "quartz_block": 1 + } + }, + "agent_count": 2, + "target": "quartz_pillar", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_0_with_plan_missing_redstone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 3, + "oak_planks": 1, + "diamond_pickaxe": 1 + }, + "1": { + "gold_ingot": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_hopper_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "chest": 1 + }, + "1": { + "iron_ingot": 2 + } + }, + "agent_count": 2, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_daylight_detector_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "glass": 2, + "quartz": 1, + "oak_planks": 2 + }, + "1": { + "glass": 1, + "quartz": 2, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "hopper": 1 + }, + "1": { + "minecart": 1 + } + }, + "agent_count": 2, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_wool_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "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, + "shears": 1 + }, + "1": { + "white_dye": 1 + } + }, + "agent_count": 2, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_beehive_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an beehive", + "conversation": "Let's work together to craft an beehive.", + "initial_inventory": { + "0": { + "oak_planks": 3, + "honeycomb": 1 + }, + "1": { + "oak_planks": 3, + "honeycomb": 2 + } + }, + "agent_count": 2, + "target": "beehive", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_bed_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_bed", + "conversation": "Let's work together to craft an red_bed.", + "initial_inventory": { + "0": { + "beetroot": 1, + "oak_planks": 2 + }, + "1": { + "oak_planks": 1, + "shears": 1 + } + }, + "agent_count": 2, + "target": "red_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_daylight_detector_1_with_plan_missing_glass_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "quartz": 2, + "oak_slab": 1 + }, + "1": { + "quartz": 1, + "oak_slab": 2 + } + }, + "agent_count": 2, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "glass" + ] + }, + "multiagent_crafting_purple_bed_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_bed", + "conversation": "Let's work together to craft an purple_bed.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "red_dye": 1, + "oak_planks": 2 + } + }, + "agent_count": 2, + "target": "purple_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_magenta_wool_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an magenta_wool", + "conversation": "Let's work together to craft an magenta_wool.", + "initial_inventory": { + "0": { + "magenta_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "magenta_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_daylight_detector_0_with_plan_missing_glass_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "quartz": 1, + "oak_planks": 2 + }, + "1": { + "quartz": 2, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "glass" + ] + }, + "multiagent_crafting_hopper_1_with_plan_missing_iron_ingot_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "chest": 1, + "furnace": 1 + }, + "1": { + "stone_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_powered_rail_1_with_plan_missing_redstone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 3, + "oak_planks": 1, + "diamond_pickaxe": 1 + }, + "1": { + "gold_ingot": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_gray_banner_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_wool": 3, + "stick": 1 + }, + "1": { + "gray_wool": 3 + } + }, + "agent_count": 2, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_0_with_plan_missing_gold_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "redstone": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 1, + "iron_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_purple_bed_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_bed", + "conversation": "Let's work together to craft an purple_bed.", + "initial_inventory": { + "0": { + "purple_dye": 1 + }, + "1": { + "black_bed": 1 + } + }, + "agent_count": 2, + "target": "purple_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_jack_o_lantern_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an jack_o_lantern", + "conversation": "Let's work together to craft an jack_o_lantern.", + "initial_inventory": { + "0": { + "carved_pumpkin": 1, + "stick": 1 + }, + "1": { + "coal": 1 + } + }, + "agent_count": 2, + "target": "jack_o_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_boots_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an leather_boots", + "conversation": "Let's work together to craft an leather_boots.", + "initial_inventory": { + "0": { + "leather": 2 + }, + "1": { + "leather": 2 + } + }, + "agent_count": 2, + "target": "leather_boots", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_1_with_plan_missing_gold_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "redstone": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 1, + "iron_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_chiseled_deepslate_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an chiseled_deepslate", + "conversation": "Let's work together to craft an chiseled_deepslate.", + "initial_inventory": { + "0": { + "cobbled_deepslate_slab": 1 + }, + "1": { + "cobbled_deepslate_slab": 1 + } + }, + "agent_count": 2, + "target": "chiseled_deepslate", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_bed_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_bed", + "conversation": "Let's work together to craft an red_bed.", + "initial_inventory": { + "0": { + "beetroot": 1, + "oak_planks": 2 + }, + "1": { + "oak_planks": 1, + "shears": 1 + } + }, + "agent_count": 2, + "target": "red_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_banner_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_wool": 3, + "stick": 1 + }, + "1": { + "lime_wool": 3 + } + }, + "agent_count": 2, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_carpet_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_carpet", + "conversation": "Let's work together to craft an purple_carpet.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "shears": 1 + }, + "1": { + "red_dye": 1 + } + }, + "agent_count": 2, + "target": "purple_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_polished_blackstone_bricks_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_blackstone_bricks", + "conversation": "Let's work together to craft an polished_blackstone_bricks.", + "initial_inventory": { + "0": { + "polished_blackstone": 2 + }, + "1": { + "polished_blackstone": 2 + } + }, + "agent_count": 2, + "target": "polished_blackstone_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 3, + "oak_planks": 1, + "redstone": 1 + }, + "1": { + "gold_ingot": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_smithing_table_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an smithing_table", + "conversation": "Let's work together to craft an smithing_table.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 2 + } + }, + "agent_count": 2, + "target": "smithing_table", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_daylight_detector_1_with_plan_missing_glass_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "quartz": 1, + "oak_planks": 2 + }, + "1": { + "quartz": 2, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "glass" + ] + }, + "multiagent_crafting_lime_wool_1_with_plan_missing_black_wool_depth_0_num_agents_2": { + "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": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_powered_rail_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 3, + "oak_planks": 1, + "redstone": 1 + }, + "1": { + "gold_ingot": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_0_with_plan_missing_redstone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 3, + "stick": 1 + }, + "1": { + "gold_ingot": 3, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_hopper_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "oak_planks": 4 + }, + "1": { + "iron_ingot": 3, + "oak_planks": 4 + } + }, + "agent_count": 2, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_1_with_plan_missing_gold_ingot_redstone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "stick": 1, + "furnace": 1 + }, + "1": { + "iron_pickaxe": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "gold_ingot", + "redstone" + ] + }, + "multiagent_crafting_tripwire_hook_1_with_plan_missing_iron_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an tripwire_hook", + "conversation": "Let's work together to craft an tripwire_hook.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "oak_log": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 1, + "stone_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "tripwire_hook", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_magenta_wool_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an magenta_wool", + "conversation": "Let's work together to craft an magenta_wool.", + "initial_inventory": { + "0": { + "magenta_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "magenta_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 3, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "lime_dye": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_purple_carpet_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_carpet", + "conversation": "Let's work together to craft an purple_carpet.", + "initial_inventory": { + "0": { + "purple_dye": 1 + }, + "1": { + "black_carpet": 1 + } + }, + "agent_count": 2, + "target": "purple_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_ender_chest_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 4, + "ender_pearl": 1 + }, + "1": { + "obsidian": 4, + "blaze_powder": 1 + } + }, + "agent_count": 2, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "chest": 1 + }, + "1": { + "iron_ingot": 2 + } + }, + "agent_count": 2, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_writable_book_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an writable_book", + "conversation": "Let's work together to craft an writable_book.", + "initial_inventory": { + "0": { + "paper": 2, + "leather": 1, + "feather": 1 + }, + "1": { + "paper": 1, + "ink_sac": 1 + } + }, + "agent_count": 2, + "target": "writable_book", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_smithing_table_1_with_plan_missing_iron_ingot_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an smithing_table", + "conversation": "Let's work together to craft an smithing_table.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 2, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "smithing_table", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_polished_andesite_0_with_plan_missing_cobblestone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_andesite", + "conversation": "Let's work together to craft an polished_andesite.", + "initial_inventory": { + "0": { + "diorite": 1, + "wooden_pickaxe": 1 + }, + "1": { + "diorite": 1 + } + }, + "agent_count": 2, + "target": "polished_andesite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_lime_wool_0_with_plan__depth_0_num_agents_2": { + "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": 2, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_iron_shovel_1_with_plan_missing_iron_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an iron_shovel", + "conversation": "Let's work together to craft an iron_shovel.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "iron_shovel", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_jack_o_lantern_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an jack_o_lantern", + "conversation": "Let's work together to craft an jack_o_lantern.", + "initial_inventory": { + "0": { + "carved_pumpkin": 1 + }, + "1": { + "torch": 1 + } + }, + "agent_count": 2, + "target": "jack_o_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_dye_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_dye", + "conversation": "Let's work together to craft an lime_dye.", + "initial_inventory": { + "0": { + "green_dye": 1 + }, + "1": { + "bone_meal": 1 + } + }, + "agent_count": 2, + "target": "lime_dye", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_wool_0_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an white_wool", + "conversation": "Let's work together to craft an white_wool.", + "initial_inventory": { + "0": { + "white_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "white_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_purple_carpet_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_carpet", + "conversation": "Let's work together to craft an purple_carpet.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "black_wool": 1 + }, + "1": { + "red_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "purple_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_bed_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_bed", + "conversation": "Let's work together to craft an red_bed.", + "initial_inventory": { + "0": { + "red_dye": 1 + }, + "1": { + "black_bed": 1 + } + }, + "agent_count": 2, + "target": "red_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_bed_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_bed", + "conversation": "Let's work together to craft an purple_bed.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "black_wool": 1, + "oak_planks": 1 + }, + "1": { + "red_dye": 1, + "black_wool": 2, + "oak_planks": 2 + } + }, + "agent_count": 2, + "target": "purple_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_daylight_detector_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "glass": 1, + "quartz": 1, + "oak_slab": 2 + }, + "1": { + "glass": 2, + "quartz": 2, + "oak_slab": 1 + } + }, + "agent_count": 2, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_1_with_plan_missing_iron_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "chest": 1, + "furnace": 1 + }, + "1": { + "stone_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_magenta_wool_0_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an magenta_wool", + "conversation": "Let's work together to craft an magenta_wool.", + "initial_inventory": { + "0": { + "magenta_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "magenta_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_wool_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "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, + "shears": 1 + }, + "1": { + "white_dye": 1 + } + }, + "agent_count": 2, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_leather_boots_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an leather_boots", + "conversation": "Let's work together to craft an leather_boots.", + "initial_inventory": { + "0": { + "leather": 2 + }, + "1": { + "leather": 2 + } + }, + "agent_count": 2, + "target": "leather_boots", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_wool_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an white_wool", + "conversation": "Let's work together to craft an white_wool.", + "initial_inventory": { + "0": { + "bone_meal": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "white_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_wool_0_with_plan_missing_black_wool_depth_0_num_agents_2": { + "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": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_gray_banner_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 3, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "gray_dye": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_quartz_pillar_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an quartz_pillar", + "conversation": "Let's work together to craft an quartz_pillar.", + "initial_inventory": { + "0": { + "quartz_block": 1 + }, + "1": { + "quartz_block": 1 + } + }, + "agent_count": 2, + "target": "quartz_pillar", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_0_with_plan_missing_iron_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "chest": 1, + "furnace": 1 + }, + "1": { + "stone_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_ender_chest_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 4, + "ender_eye": 1 + }, + "1": { + "obsidian": 4 + } + }, + "agent_count": 2, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 3, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "gray_dye": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_tripwire_hook_1_with_plan_missing_iron_ingot_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an tripwire_hook", + "conversation": "Let's work together to craft an tripwire_hook.", + "initial_inventory": { + "0": { + "stick": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "tripwire_hook", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_purple_bed_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_bed", + "conversation": "Let's work together to craft an purple_bed.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "red_dye": 1, + "oak_planks": 2 + } + }, + "agent_count": 2, + "target": "purple_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_brown_banner_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_wool": 3, + "stick": 1 + }, + "1": { + "brown_wool": 3 + } + }, + "agent_count": 2, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 3, + "black_wool": 3, + "oak_planks": 1 + }, + "1": { + "gray_dye": 3, + "black_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_orange_wool_1_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an orange_wool", + "conversation": "Let's work together to craft an orange_wool.", + "initial_inventory": { + "0": { + "orange_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "orange_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_brown_banner_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 3, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "brown_dye": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_powered_rail_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 3, + "stick": 1 + }, + "1": { + "gold_ingot": 3, + "redstone": 1 + } + }, + "agent_count": 2, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_carpet_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_carpet", + "conversation": "Let's work together to craft an purple_carpet.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "shears": 1 + }, + "1": { + "red_dye": 1 + } + }, + "agent_count": 2, + "target": "purple_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_ender_chest_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 4, + "ender_eye": 1 + }, + "1": { + "obsidian": 4 + } + }, + "agent_count": 2, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_wool_0_with_plan__depth_1_num_agents_2": { + "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, + "black_wool": 1 + }, + "1": { + "white_dye": 1 + } + }, + "agent_count": 2, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_writable_book_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an writable_book", + "conversation": "Let's work together to craft an writable_book.", + "initial_inventory": { + "0": { + "book": 1, + "feather": 1 + }, + "1": { + "ink_sac": 1 + } + }, + "agent_count": 2, + "target": "writable_book", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_ender_chest_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 4, + "ender_pearl": 1 + }, + "1": { + "obsidian": 4, + "blaze_powder": 1 + } + }, + "agent_count": 2, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_furnace_minecart_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an furnace_minecart", + "conversation": "Let's work together to craft an furnace_minecart.", + "initial_inventory": { + "0": { + "furnace": 1 + }, + "1": { + "minecart": 1 + } + }, + "agent_count": 2, + "target": "furnace_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 3, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "brown_dye": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_leather_horse_armor_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an leather_horse_armor", + "conversation": "Let's work together to craft an leather_horse_armor.", + "initial_inventory": { + "0": { + "leather": 4 + }, + "1": { + "leather": 3 + } + }, + "agent_count": 2, + "target": "leather_horse_armor", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_wool_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an white_wool", + "conversation": "Let's work together to craft an white_wool.", + "initial_inventory": { + "0": { + "bone_meal": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "white_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_writable_book_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an writable_book", + "conversation": "Let's work together to craft an writable_book.", + "initial_inventory": { + "0": { + "book": 1, + "feather": 1 + }, + "1": { + "ink_sac": 1 + } + }, + "agent_count": 2, + "target": "writable_book", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_bed_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_bed", + "conversation": "Let's work together to craft an red_bed.", + "initial_inventory": { + "0": { + "beetroot": 1, + "black_wool": 2, + "oak_planks": 1 + }, + "1": { + "black_wool": 1, + "oak_planks": 2 + } + }, + "agent_count": 2, + "target": "red_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_orange_wool_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an orange_wool", + "conversation": "Let's work together to craft an orange_wool.", + "initial_inventory": { + "0": { + "orange_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "orange_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 3, + "black_wool": 3, + "oak_planks": 1 + }, + "1": { + "brown_dye": 3, + "black_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_exposed_cut_copper_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an waxed_exposed_cut_copper", + "conversation": "Let's work together to craft an waxed_exposed_cut_copper.", + "initial_inventory": { + "0": { + "waxed_exposed_copper": 2 + }, + "1": { + "waxed_exposed_copper": 2 + } + }, + "agent_count": 2, + "target": "waxed_exposed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_wool_1_with_plan__depth_1_num_agents_2": { + "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, + "black_wool": 1 + }, + "1": { + "white_dye": 1 + } + }, + "agent_count": 2, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_daylight_detector_0_with_plan_missing_glass_oak_slab_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "quartz": 2 + }, + "1": { + "quartz": 1 + } + }, + "agent_count": 2, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "glass", + "oak_slab" + ] + }, + "multiagent_crafting_hopper_1_with_plan_missing_iron_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "oak_planks": 4, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 4, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_leather_horse_armor_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an leather_horse_armor", + "conversation": "Let's work together to craft an leather_horse_armor.", + "initial_inventory": { + "0": { + "leather": 4 + }, + "1": { + "leather": 3 + } + }, + "agent_count": 2, + "target": "leather_horse_armor", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_daylight_detector_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "glass": 2, + "quartz": 1, + "oak_planks": 2 + }, + "1": { + "glass": 1, + "quartz": 2, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 3, + "stick": 1 + }, + "1": { + "gold_ingot": 3, + "redstone": 1 + } + }, + "agent_count": 2, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_stone_bricks_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an chiseled_stone_bricks", + "conversation": "Let's work together to craft an chiseled_stone_bricks.", + "initial_inventory": { + "0": { + "stone_bricks": 1 + }, + "1": { + "stone_bricks": 2 + } + }, + "agent_count": 2, + "target": "chiseled_stone_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_snow_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an snow", + "conversation": "Let's work together to craft an snow.", + "initial_inventory": { + "0": { + "snow_block": 2 + }, + "1": { + "snow_block": 1 + } + }, + "agent_count": 2, + "target": "snow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_jack_o_lantern_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an jack_o_lantern", + "conversation": "Let's work together to craft an jack_o_lantern.", + "initial_inventory": { + "0": { + "carved_pumpkin": 1, + "stick": 1 + }, + "1": { + "coal": 1 + } + }, + "agent_count": 2, + "target": "jack_o_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_wool_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an white_wool", + "conversation": "Let's work together to craft an white_wool.", + "initial_inventory": { + "0": { + "white_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "white_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_bed_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_bed", + "conversation": "Let's work together to craft an red_bed.", + "initial_inventory": { + "0": { + "beetroot": 1, + "black_wool": 2, + "oak_planks": 1 + }, + "1": { + "black_wool": 1, + "oak_planks": 2 + } + }, + "agent_count": 2, + "target": "red_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_deepslate_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an chiseled_deepslate", + "conversation": "Let's work together to craft an chiseled_deepslate.", + "initial_inventory": { + "0": { + "cobbled_deepslate_slab": 1 + }, + "1": { + "cobbled_deepslate_slab": 1 + } + }, + "agent_count": 2, + "target": "chiseled_deepslate", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 3, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "lime_dye": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_powered_rail_0_with_plan_missing_gold_ingot_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "stick": 1, + "iron_pickaxe": 1 + }, + "1": { + "redstone": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_hopper_minecart_0_with_plan_missing_chest_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 5 + }, + "1": { + "iron_ingot": 5 + } + }, + "agent_count": 2, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_white_wool_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an white_wool", + "conversation": "Let's work together to craft an white_wool.", + "initial_inventory": { + "0": { + "white_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "white_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 3, + "black_wool": 3, + "oak_planks": 1 + }, + "1": { + "gray_dye": 3, + "black_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_snow_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an snow", + "conversation": "Let's work together to craft an snow.", + "initial_inventory": { + "0": { + "snow_block": 2 + }, + "1": { + "snow_block": 1 + } + }, + "agent_count": 2, + "target": "snow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_wool_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an white_wool", + "conversation": "Let's work together to craft an white_wool.", + "initial_inventory": { + "0": { + "bone_meal": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "white_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_andesite_1_with_plan_missing_cobblestone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an andesite", + "conversation": "Let's work together to craft an andesite.", + "initial_inventory": { + "0": { + "diorite": 1 + }, + "1": { + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "andesite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_hopper_minecart_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 5, + "chest": 1 + }, + "1": { + "iron_ingot": 5 + } + }, + "agent_count": 2, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_daylight_detector_0_with_plan_missing_oak_slab_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "glass": 2, + "quartz": 2 + }, + "1": { + "glass": 1, + "quartz": 1 + } + }, + "agent_count": 2, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "oak_slab" + ] + }, + "multiagent_crafting_purple_carpet_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_carpet", + "conversation": "Let's work together to craft an purple_carpet.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "black_wool": 1 + }, + "1": { + "red_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "purple_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_jack_o_lantern_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an jack_o_lantern", + "conversation": "Let's work together to craft an jack_o_lantern.", + "initial_inventory": { + "0": { + "carved_pumpkin": 1 + }, + "1": { + "torch": 1 + } + }, + "agent_count": 2, + "target": "jack_o_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_0_with_plan_missing_iron_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "oak_planks": 4, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 4, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_polished_andesite_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_andesite", + "conversation": "Let's work together to craft an polished_andesite.", + "initial_inventory": { + "0": { + "andesite": 2 + }, + "1": { + "andesite": 2 + } + }, + "agent_count": 2, + "target": "polished_andesite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_dye_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_dye", + "conversation": "Let's work together to craft an lime_dye.", + "initial_inventory": { + "0": { + "green_dye": 1 + }, + "1": { + "bone_meal": 1 + } + }, + "agent_count": 2, + "target": "lime_dye", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_stone_bricks_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an chiseled_stone_bricks", + "conversation": "Let's work together to craft an chiseled_stone_bricks.", + "initial_inventory": { + "0": { + "stone_brick_slab": 1 + }, + "1": { + "stone_brick_slab": 1 + } + }, + "agent_count": 2, + "target": "chiseled_stone_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_andesite_1_with_plan_missing_cobblestone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_andesite", + "conversation": "Let's work together to craft an polished_andesite.", + "initial_inventory": { + "0": { + "diorite": 1, + "wooden_pickaxe": 1 + }, + "1": { + "diorite": 1 + } + }, + "agent_count": 2, + "target": "polished_andesite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_firework_rocket_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an firework_rocket", + "conversation": "Let's work together to craft an firework_rocket.", + "initial_inventory": { + "0": { + "gunpowder": 1 + }, + "1": { + "paper": 1 + } + }, + "agent_count": 2, + "target": "firework_rocket", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_andesite_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_andesite", + "conversation": "Let's work together to craft an polished_andesite.", + "initial_inventory": { + "0": { + "diorite": 1, + "cobblestone": 1 + }, + "1": { + "diorite": 1, + "cobblestone": 1 + } + }, + "agent_count": 2, + "target": "polished_andesite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_dye_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_dye", + "conversation": "Let's work together to craft an lime_dye.", + "initial_inventory": { + "0": { + "green_dye": 1 + }, + "1": { + "white_dye": 1 + } + }, + "agent_count": 2, + "target": "lime_dye", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "oak_planks": 4 + }, + "1": { + "iron_ingot": 3, + "oak_planks": 4 + } + }, + "agent_count": 2, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_dye_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_dye", + "conversation": "Let's work together to craft an lime_dye.", + "initial_inventory": { + "0": { + "green_dye": 1 + }, + "1": { + "white_dye": 1 + } + }, + "agent_count": 2, + "target": "lime_dye", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_1_with_plan_missing_gold_ingot_redstone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "iron_pickaxe": 1, + "diamond_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "gold_ingot", + "redstone" + ] + }, + "multiagent_crafting_white_wool_1_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an white_wool", + "conversation": "Let's work together to craft an white_wool.", + "initial_inventory": { + "0": { + "white_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "white_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_chiseled_stone_bricks_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an chiseled_stone_bricks", + "conversation": "Let's work together to craft an chiseled_stone_bricks.", + "initial_inventory": { + "0": { + "stone_bricks": 1 + }, + "1": { + "stone_bricks": 2 + } + }, + "agent_count": 2, + "target": "chiseled_stone_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_wool": 3, + "stick": 1 + }, + "1": { + "lime_wool": 3 + } + }, + "agent_count": 2, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_andesite_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_andesite", + "conversation": "Let's work together to craft an polished_andesite.", + "initial_inventory": { + "0": { + "diorite": 1, + "cobblestone": 1 + }, + "1": { + "diorite": 1, + "cobblestone": 1 + } + }, + "agent_count": 2, + "target": "polished_andesite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cut_sandstone_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cut_sandstone", + "conversation": "Let's work together to craft an cut_sandstone.", + "initial_inventory": { + "0": { + "sandstone": 2 + }, + "1": { + "sandstone": 2 + } + }, + "agent_count": 2, + "target": "cut_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 3, + "black_wool": 3, + "oak_planks": 1 + }, + "1": { + "lime_dye": 3, + "black_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_daylight_detector_1_with_plan_missing_oak_slab_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "glass": 2, + "quartz": 2 + }, + "1": { + "glass": 1, + "quartz": 1 + } + }, + "agent_count": 2, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "oak_slab" + ] + }, + "multiagent_crafting_hopper_minecart_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 5, + "chest": 1 + }, + "1": { + "iron_ingot": 5 + } + }, + "agent_count": 2, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_1_with_plan_missing_redstone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 3, + "stick": 1 + }, + "1": { + "gold_ingot": 3, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_iron_shovel_0_with_plan_missing_iron_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an iron_shovel", + "conversation": "Let's work together to craft an iron_shovel.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "iron_shovel", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_iron_shovel_1_with_plan_missing_iron_ingot_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an iron_shovel", + "conversation": "Let's work together to craft an iron_shovel.", + "initial_inventory": { + "0": { + "stick": 1, + "stone_pickaxe": 1 + }, + "1": { + "stick": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "iron_shovel", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_hopper_minecart_1_with_plan_missing_chest_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 5 + }, + "1": { + "iron_ingot": 5 + } + }, + "agent_count": 2, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_purple_carpet_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_carpet", + "conversation": "Let's work together to craft an purple_carpet.", + "initial_inventory": { + "0": { + "purple_dye": 1 + }, + "1": { + "black_carpet": 1 + } + }, + "agent_count": 2, + "target": "purple_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_0_with_plan_missing_gold_ingot_redstone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "iron_pickaxe": 1, + "diamond_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "gold_ingot", + "redstone" + ] + }, + "multiagent_crafting_orange_wool_0_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an orange_wool", + "conversation": "Let's work together to craft an orange_wool.", + "initial_inventory": { + "0": { + "orange_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "orange_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_polished_andesite_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_andesite", + "conversation": "Let's work together to craft an polished_andesite.", + "initial_inventory": { + "0": { + "andesite": 2 + }, + "1": { + "andesite": 2 + } + }, + "agent_count": 2, + "target": "polished_andesite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_0_with_plan_missing_gold_ingot_redstone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "stick": 1, + "furnace": 1 + }, + "1": { + "iron_pickaxe": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "gold_ingot", + "redstone" + ] + }, + "multiagent_crafting_hopper_1_with_plan_missing_chest_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 2 + }, + "1": { + "iron_ingot": 3 + } + }, + "agent_count": 2, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_furnace_minecart_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an furnace_minecart", + "conversation": "Let's work together to craft an furnace_minecart.", + "initial_inventory": { + "0": { + "furnace": 1 + }, + "1": { + "minecart": 1 + } + }, + "agent_count": 2, + "target": "furnace_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_daylight_detector_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "glass": 1, + "quartz": 1, + "oak_slab": 2 + }, + "1": { + "glass": 2, + "quartz": 2, + "oak_slab": 1 + } + }, + "agent_count": 2, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_andesite_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an andesite", + "conversation": "Let's work together to craft an andesite.", + "initial_inventory": { + "0": { + "diorite": 1 + }, + "1": { + "cobblestone": 1 + } + }, + "agent_count": 2, + "target": "andesite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_tripwire_hook_0_with_plan_missing_iron_ingot_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an tripwire_hook", + "conversation": "Let's work together to craft an tripwire_hook.", + "initial_inventory": { + "0": { + "stick": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "tripwire_hook", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_polished_blackstone_bricks_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_blackstone_bricks", + "conversation": "Let's work together to craft an polished_blackstone_bricks.", + "initial_inventory": { + "0": { + "polished_blackstone": 2 + }, + "1": { + "polished_blackstone": 2 + } + }, + "agent_count": 2, + "target": "polished_blackstone_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_iron_shovel_0_with_plan_missing_iron_ingot_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an iron_shovel", + "conversation": "Let's work together to craft an iron_shovel.", + "initial_inventory": { + "0": { + "stick": 1, + "stone_pickaxe": 1 + }, + "1": { + "stick": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "iron_shovel", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_magenta_wool_1_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an magenta_wool", + "conversation": "Let's work together to craft an magenta_wool.", + "initial_inventory": { + "0": { + "magenta_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "magenta_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_wool_1_with_plan__depth_0_num_agents_2": { + "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": 2, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_smithing_table_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an smithing_table", + "conversation": "Let's work together to craft an smithing_table.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 2 + } + }, + "agent_count": 2, + "target": "smithing_table", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_wool": 3, + "stick": 1 + }, + "1": { + "brown_wool": 3 + } + }, + "agent_count": 2, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_bed_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_bed", + "conversation": "Let's work together to craft an red_bed.", + "initial_inventory": { + "0": { + "red_dye": 1 + }, + "1": { + "black_bed": 1 + } + }, + "agent_count": 2, + "target": "red_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "hopper": 1 + }, + "1": { + "minecart": 1 + } + }, + "agent_count": 2, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_wool": 3, + "stick": 1 + }, + "1": { + "gray_wool": 3 + } + }, + "agent_count": 2, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_0_with_plan_missing_chest_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 2 + }, + "1": { + "iron_ingot": 3 + } + }, + "agent_count": 2, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_powered_rail_1_with_plan_missing_gold_ingot_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "stick": 1, + "iron_pickaxe": 1 + }, + "1": { + "redstone": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_daylight_detector_1_with_plan_missing_glass_oak_slab_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "quartz": 2 + }, + "1": { + "quartz": 1 + } + }, + "agent_count": 2, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "glass", + "oak_slab" + ] + }, + "multiagent_crafting_firework_rocket_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an firework_rocket", + "conversation": "Let's work together to craft an firework_rocket.", + "initial_inventory": { + "0": { + "gunpowder": 1 + }, + "1": { + "paper": 1 + } + }, + "agent_count": 2, + "target": "firework_rocket", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_beehive_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an beehive", + "conversation": "Let's work together to craft an beehive.", + "initial_inventory": { + "0": { + "oak_planks": 3, + "honeycomb": 1 + }, + "1": { + "oak_planks": 3, + "honeycomb": 2 + } + }, + "agent_count": 2, + "target": "beehive", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_andesite_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an andesite", + "conversation": "Let's work together to craft an andesite.", + "initial_inventory": { + "0": { + "diorite": 1 + }, + "1": { + "cobblestone": 1 + } + }, + "agent_count": 2, + "target": "andesite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_andesite_0_with_plan_missing_cobblestone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an andesite", + "conversation": "Let's work together to craft an andesite.", + "initial_inventory": { + "0": { + "diorite": 1 + }, + "1": { + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "andesite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_hopper_0_with_plan_missing_iron_ingot_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "chest": 1, + "furnace": 1 + }, + "1": { + "stone_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_cut_sandstone_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cut_sandstone", + "conversation": "Let's work together to craft an cut_sandstone.", + "initial_inventory": { + "0": { + "sandstone": 2 + }, + "1": { + "sandstone": 2 + } + }, + "agent_count": 2, + "target": "cut_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_wool_0_with_plan_missing_black_wool_depth_2_num_agents_2": { + "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, + "shears": 1 + }, + "1": { + "bone_meal": 1 + } + }, + "agent_count": 2, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_wool_1_with_plan_missing_black_wool_depth_2_num_agents_2": { + "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, + "shears": 1 + }, + "1": { + "bone_meal": 1 + } + }, + "agent_count": 2, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_wool_0_with_plan__depth_2_num_agents_2": { + "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, + "black_wool": 1 + }, + "1": { + "bone_meal": 1 + } + }, + "agent_count": 2, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_wool_1_with_plan__depth_2_num_agents_2": { + "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, + "black_wool": 1 + }, + "1": { + "bone_meal": 1 + } + }, + "agent_count": 2, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_0_with_plan_missing_black_wool_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "black_dye": 1, + "white_dye": 1, + "oak_log": 1 + }, + "1": { + "black_dye": 2, + "white_dye": 2, + "shears": 1 + } + }, + "agent_count": 2, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_gray_banner_1_with_plan_missing_black_wool_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "black_dye": 1, + "white_dye": 1, + "oak_log": 1 + }, + "1": { + "black_dye": 2, + "white_dye": 2, + "shears": 1 + } + }, + "agent_count": 2, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_gray_banner_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "black_dye": 1, + "white_dye": 1, + "black_wool": 3, + "oak_log": 1 + }, + "1": { + "black_dye": 2, + "white_dye": 2, + "black_wool": 3 + } + }, + "agent_count": 2, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "black_dye": 1, + "white_dye": 1, + "black_wool": 3, + "oak_log": 1 + }, + "1": { + "black_dye": 2, + "white_dye": 2, + "black_wool": 3 + } + }, + "agent_count": 2, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_0_with_plan_missing_black_wool_depth_3_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "ink_sac": 2, + "bone_meal": 2, + "oak_log": 1 + }, + "1": { + "ink_sac": 1, + "bone_meal": 1, + "shears": 1 + } + }, + "agent_count": 2, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 540, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_gray_banner_1_with_plan_missing_black_wool_depth_3_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "ink_sac": 2, + "bone_meal": 2, + "oak_log": 1 + }, + "1": { + "ink_sac": 1, + "bone_meal": 1, + "shears": 1 + } + }, + "agent_count": 2, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 540, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_gray_banner_0_with_plan__depth_3_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "ink_sac": 1, + "bone_meal": 1, + "black_wool": 3, + "oak_log": 1 + }, + "1": { + "ink_sac": 2, + "bone_meal": 2, + "black_wool": 3 + } + }, + "agent_count": 2, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_1_with_plan__depth_3_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "ink_sac": 1, + "bone_meal": 1, + "black_wool": 3, + "oak_log": 1 + }, + "1": { + "ink_sac": 2, + "bone_meal": 2, + "black_wool": 3 + } + }, + "agent_count": 2, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_0_with_plan_missing_black_wool_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "white_dye": 2, + "oak_log": 1 + }, + "1": { + "green_dye": 2, + "white_dye": 1, + "shears": 1 + } + }, + "agent_count": 2, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_banner_1_with_plan_missing_black_wool_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "white_dye": 2, + "oak_log": 1 + }, + "1": { + "green_dye": 2, + "white_dye": 1, + "shears": 1 + } + }, + "agent_count": 2, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_banner_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "white_dye": 2, + "black_wool": 3, + "oak_log": 1 + }, + "1": { + "green_dye": 2, + "white_dye": 1, + "black_wool": 3 + } + }, + "agent_count": 2, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "white_dye": 2, + "black_wool": 3, + "oak_log": 1 + }, + "1": { + "green_dye": 2, + "white_dye": 1, + "black_wool": 3 + } + }, + "agent_count": 2, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_0_with_plan_missing_black_wool_depth_3_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 2, + "bone_meal": 1, + "oak_log": 1 + }, + "1": { + "green_dye": 1, + "bone_meal": 2, + "shears": 1 + } + }, + "agent_count": 2, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 540, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_banner_1_with_plan_missing_black_wool_depth_3_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 2, + "bone_meal": 1, + "oak_log": 1 + }, + "1": { + "green_dye": 1, + "bone_meal": 2, + "shears": 1 + } + }, + "agent_count": 2, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 540, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_banner_0_with_plan__depth_3_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "bone_meal": 1, + "black_wool": 3, + "oak_log": 1 + }, + "1": { + "green_dye": 2, + "bone_meal": 2, + "black_wool": 3 + } + }, + "agent_count": 2, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_1_with_plan__depth_3_num_agents_2": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "bone_meal": 1, + "black_wool": 3, + "oak_log": 1 + }, + "1": { + "green_dye": 2, + "bone_meal": 2, + "black_wool": 3 + } + }, + "agent_count": 2, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_0_with_plan_missing_iron_ingot_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "oak_planks": 4, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 4, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_hopper_minecart_1_with_plan_missing_iron_ingot_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "oak_planks": 4, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 4, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_hopper_minecart_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 5, + "oak_planks": 4 + }, + "1": { + "iron_ingot": 5, + "oak_planks": 4 + } + }, + "agent_count": 2, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 5, + "oak_planks": 4 + }, + "1": { + "iron_ingot": 5, + "oak_planks": 4 + } + }, + "agent_count": 2, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_jack_o_lantern_0_with_plan_missing_coal_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an jack_o_lantern", + "conversation": "Let's work together to craft an jack_o_lantern.", + "initial_inventory": { + "0": { + "carved_pumpkin": 1, + "oak_planks": 1 + }, + "1": { + "oak_planks": 1, + "iron_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "jack_o_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "coal" + ] + }, + "multiagent_crafting_jack_o_lantern_1_with_plan_missing_coal_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an jack_o_lantern", + "conversation": "Let's work together to craft an jack_o_lantern.", + "initial_inventory": { + "0": { + "carved_pumpkin": 1, + "oak_planks": 1 + }, + "1": { + "oak_planks": 1, + "iron_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "jack_o_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "coal" + ] + }, + "multiagent_crafting_jack_o_lantern_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an jack_o_lantern", + "conversation": "Let's work together to craft an jack_o_lantern.", + "initial_inventory": { + "0": { + "carved_pumpkin": 1, + "oak_planks": 1 + }, + "1": { + "coal": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "jack_o_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_jack_o_lantern_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an jack_o_lantern", + "conversation": "Let's work together to craft an jack_o_lantern.", + "initial_inventory": { + "0": { + "carved_pumpkin": 1, + "oak_planks": 1 + }, + "1": { + "coal": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "jack_o_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/dev_tasks/tasks_2_agents_stats.txt b/tasks/crafting_tasks/dev_tasks/tasks_2_agents_stats.txt new file mode 100644 index 0000000..b3f64f4 --- /dev/null +++ b/tasks/crafting_tasks/dev_tasks/tasks_2_agents_stats.txt @@ -0,0 +1,16 @@ +{ + "num_tasks": 199, + "avg_depth": 2.2525252525252526, + "std_depth": 0.9248907589704736, + "num_tasks_based_depth": { + "0": 98, + "1": 72, + "2": 20, + "3": 8 + }, + "num_missing_resources": { + "0": 116, + "1": 76, + "2": 6 + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/dev_tasks/tasks_3_agents.json b/tasks/crafting_tasks/dev_tasks/tasks_3_agents.json new file mode 100644 index 0000000..9602a97 --- /dev/null +++ b/tasks/crafting_tasks/dev_tasks/tasks_3_agents.json @@ -0,0 +1,6044 @@ +{ + "multiagent_crafting_ender_chest_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 2, + "ender_eye": 1 + }, + "1": { + "obsidian": 4 + }, + "2": { + "obsidian": 2 + } + }, + "agent_count": 3, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 4 + }, + "2": { + "iron_ingot": 1, + "oak_planks": 2 + } + }, + "agent_count": 3, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_horse_armor_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an leather_horse_armor", + "conversation": "Let's work together to craft an leather_horse_armor.", + "initial_inventory": { + "0": { + "leather": 3 + }, + "1": { + "leather": 2 + }, + "2": { + "leather": 2 + } + }, + "agent_count": 3, + "target": "leather_horse_armor", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_carpet_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_carpet", + "conversation": "Let's work together to craft an purple_carpet.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "red_dye": 1 + }, + "2": { + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "purple_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_boots_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an leather_boots", + "conversation": "Let's work together to craft an leather_boots.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 2 + }, + "2": { + "leather": 1 + } + }, + "agent_count": 3, + "target": "leather_boots", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_wool_2_with_plan_missing_black_wool_depth_1_num_agents_3": { + "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 + }, + "1": { + "white_dye": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_writable_book_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an writable_book", + "conversation": "Let's work together to craft an writable_book.", + "initial_inventory": { + "0": { + "book": 1 + }, + "1": { + "ink_sac": 1 + }, + "2": { + "feather": 1 + } + }, + "agent_count": 3, + "target": "writable_book", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_ender_chest_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 2, + "ender_pearl": 1 + }, + "1": { + "obsidian": 4, + "blaze_powder": 1 + }, + "2": { + "obsidian": 2 + } + }, + "agent_count": 3, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_writable_book_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an writable_book", + "conversation": "Let's work together to craft an writable_book.", + "initial_inventory": { + "0": { + "book": 1 + }, + "1": { + "ink_sac": 1 + }, + "2": { + "feather": 1 + } + }, + "agent_count": 3, + "target": "writable_book", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_carpet_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_carpet", + "conversation": "Let's work together to craft an purple_carpet.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "red_dye": 1 + }, + "2": { + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "purple_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_0_with_plan_missing_redstone_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 2, + "stick": 1 + }, + "1": { + "gold_ingot": 2, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 2 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_ender_chest_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 2, + "ender_pearl": 1 + }, + "1": { + "obsidian": 4, + "blaze_powder": 1 + }, + "2": { + "obsidian": 2 + } + }, + "agent_count": 3, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_wool": 2, + "stick": 1 + }, + "1": { + "gray_wool": 2 + }, + "2": { + "gray_wool": 2 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_0_with_plan_missing_iron_ingot_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "chest": 1 + }, + "1": { + "stone_pickaxe": 1 + }, + "2": { + "furnace": 1 + } + }, + "agent_count": 3, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_powered_rail_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 2, + "stick": 1 + }, + "1": { + "gold_ingot": 2, + "redstone": 1 + }, + "2": { + "gold_ingot": 2 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_ender_chest_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 2, + "ender_pearl": 1 + }, + "1": { + "obsidian": 4, + "blaze_powder": 1 + }, + "2": { + "obsidian": 2 + } + }, + "agent_count": 3, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_wool": 2, + "stick": 1 + }, + "1": { + "brown_wool": 2 + }, + "2": { + "brown_wool": 2 + } + }, + "agent_count": 3, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_writable_book_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an writable_book", + "conversation": "Let's work together to craft an writable_book.", + "initial_inventory": { + "0": { + "paper": 1, + "leather": 1 + }, + "1": { + "paper": 1, + "ink_sac": 1 + }, + "2": { + "paper": 1, + "feather": 1 + } + }, + "agent_count": 3, + "target": "writable_book", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_ender_chest_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 2, + "ender_eye": 1 + }, + "1": { + "obsidian": 4 + }, + "2": { + "obsidian": 2 + } + }, + "agent_count": 3, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_2_with_plan_missing_iron_ingot_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "chest": 1 + }, + "1": { + "stone_pickaxe": 1 + }, + "2": { + "furnace": 1 + } + }, + "agent_count": 3, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_leather_boots_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an leather_boots", + "conversation": "Let's work together to craft an leather_boots.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 2 + }, + "2": { + "leather": 1 + } + }, + "agent_count": 3, + "target": "leather_boots", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 4 + }, + "2": { + "iron_ingot": 1, + "oak_planks": 2 + } + }, + "agent_count": 3, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_wool": 2, + "stick": 1 + }, + "1": { + "brown_wool": 2 + }, + "2": { + "brown_wool": 2 + } + }, + "agent_count": 3, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_2_with_plan_missing_chest_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 3 + }, + "1": { + "iron_ingot": 3 + }, + "2": { + "iron_ingot": 4 + } + }, + "agent_count": 3, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_gray_banner_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_wool": 2, + "stick": 1 + }, + "1": { + "gray_wool": 2 + }, + "2": { + "gray_wool": 2 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_0_with_plan_missing_gold_ingot_redstone_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "diamond_pickaxe": 1 + }, + "1": { + "iron_pickaxe": 1 + }, + "2": { + "furnace": 1 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "gold_ingot", + "redstone" + ] + }, + "multiagent_crafting_waxed_exposed_cut_copper_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an waxed_exposed_cut_copper", + "conversation": "Let's work together to craft an waxed_exposed_cut_copper.", + "initial_inventory": { + "0": { + "waxed_exposed_copper": 1 + }, + "1": { + "waxed_exposed_copper": 2 + }, + "2": { + "waxed_exposed_copper": 1 + } + }, + "agent_count": 3, + "target": "waxed_exposed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_0_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 2, + "oak_planks": 2 + }, + "1": { + "gray_dye": 2, + "shears": 1 + }, + "2": { + "gray_dye": 2 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_polished_blackstone_bricks_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an polished_blackstone_bricks", + "conversation": "Let's work together to craft an polished_blackstone_bricks.", + "initial_inventory": { + "0": { + "polished_blackstone": 2 + }, + "1": { + "polished_blackstone": 1 + }, + "2": { + "polished_blackstone": 1 + } + }, + "agent_count": 3, + "target": "polished_blackstone_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_stone_bricks_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an chiseled_stone_bricks", + "conversation": "Let's work together to craft an chiseled_stone_bricks.", + "initial_inventory": { + "0": { + "stone_bricks": 1 + }, + "1": { + "stone_bricks": 1 + }, + "2": { + "stone_bricks": 1 + } + }, + "agent_count": 3, + "target": "chiseled_stone_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 2, + "stick": 1 + }, + "1": { + "gold_ingot": 2, + "redstone": 1 + }, + "2": { + "gold_ingot": 2 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_0_with_plan_missing_gold_ingot_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "furnace": 1 + }, + "1": { + "redstone": 1 + }, + "2": { + "iron_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_leather_boots_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an leather_boots", + "conversation": "Let's work together to craft an leather_boots.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 2 + }, + "2": { + "leather": 1 + } + }, + "agent_count": 3, + "target": "leather_boots", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_bed_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an red_bed", + "conversation": "Let's work together to craft an red_bed.", + "initial_inventory": { + "0": { + "beetroot": 1, + "black_wool": 1, + "oak_planks": 1 + }, + "1": { + "black_wool": 1, + "oak_planks": 1 + }, + "2": { + "black_wool": 1, + "oak_planks": 1 + } + }, + "agent_count": 3, + "target": "red_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_ender_chest_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 2, + "ender_eye": 1 + }, + "1": { + "obsidian": 4 + }, + "2": { + "obsidian": 2 + } + }, + "agent_count": 3, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "brown_dye": 2, + "black_wool": 2 + }, + "2": { + "brown_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_0_with_plan_missing_iron_ingot_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "chest": 1 + }, + "1": { + "stone_pickaxe": 1 + }, + "2": { + "furnace": 1 + } + }, + "agent_count": 3, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_purple_bed_1_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_bed", + "conversation": "Let's work together to craft an purple_bed.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "oak_planks": 1 + }, + "1": { + "red_dye": 1, + "oak_planks": 1 + }, + "2": { + "oak_planks": 1, + "shears": 1 + } + }, + "agent_count": 3, + "target": "purple_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cut_sandstone_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an cut_sandstone", + "conversation": "Let's work together to craft an cut_sandstone.", + "initial_inventory": { + "0": { + "sandstone": 1 + }, + "1": { + "sandstone": 2 + }, + "2": { + "sandstone": 1 + } + }, + "agent_count": 3, + "target": "cut_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_1_with_plan_missing_iron_ingot_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "chest": 1 + }, + "1": { + "stone_pickaxe": 1 + }, + "2": { + "furnace": 1 + } + }, + "agent_count": 3, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_daylight_detector_0_with_plan_missing_oak_slab_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "glass": 1, + "quartz": 1 + }, + "1": { + "glass": 1, + "quartz": 1 + }, + "2": { + "glass": 1, + "quartz": 1 + } + }, + "agent_count": 3, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "oak_slab" + ] + }, + "multiagent_crafting_brown_banner_1_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 2, + "oak_planks": 2 + }, + "1": { + "brown_dye": 2, + "shears": 1 + }, + "2": { + "brown_dye": 2 + } + }, + "agent_count": 3, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_leather_horse_armor_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an leather_horse_armor", + "conversation": "Let's work together to craft an leather_horse_armor.", + "initial_inventory": { + "0": { + "leather": 3 + }, + "1": { + "leather": 2 + }, + "2": { + "leather": 2 + } + }, + "agent_count": 3, + "target": "leather_horse_armor", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_bed_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an red_bed", + "conversation": "Let's work together to craft an red_bed.", + "initial_inventory": { + "0": { + "beetroot": 1, + "black_wool": 1, + "oak_planks": 1 + }, + "1": { + "black_wool": 1, + "oak_planks": 1 + }, + "2": { + "black_wool": 1, + "oak_planks": 1 + } + }, + "agent_count": 3, + "target": "red_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_wool": 2, + "stick": 1 + }, + "1": { + "lime_wool": 2 + }, + "2": { + "lime_wool": 2 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_daylight_detector_0_with_plan_missing_glass_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "quartz": 1, + "oak_planks": 1 + }, + "1": { + "quartz": 1, + "oak_planks": 1 + }, + "2": { + "quartz": 1, + "oak_planks": 1 + } + }, + "agent_count": 3, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "glass" + ] + }, + "multiagent_crafting_brown_banner_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_wool": 2, + "stick": 1 + }, + "1": { + "brown_wool": 2 + }, + "2": { + "brown_wool": 2 + } + }, + "agent_count": 3, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_carpet_2_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_carpet", + "conversation": "Let's work together to craft an purple_carpet.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "red_dye": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "purple_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_hopper_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "chest": 1 + }, + "1": { + "iron_ingot": 3 + }, + "2": { + "iron_ingot": 1 + } + }, + "agent_count": 3, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_1_with_plan_missing_redstone_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 2, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 2, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 2 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_snow_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an snow", + "conversation": "Let's work together to craft an snow.", + "initial_inventory": { + "0": { + "snow_block": 1 + }, + "1": { + "snow_block": 1 + }, + "2": { + "snow_block": 1 + } + }, + "agent_count": 3, + "target": "snow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "gray_dye": 2, + "black_wool": 2 + }, + "2": { + "gray_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_1_with_plan_missing_redstone_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 2, + "stick": 1 + }, + "1": { + "gold_ingot": 2, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 2 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_hopper_minecart_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "chest": 1 + }, + "1": { + "iron_ingot": 3 + }, + "2": { + "iron_ingot": 4 + } + }, + "agent_count": 3, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_0_with_plan_missing_chest_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 3 + }, + "2": { + "iron_ingot": 1 + } + }, + "agent_count": 3, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_powered_rail_1_with_plan_missing_gold_ingot_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "furnace": 1 + }, + "1": { + "redstone": 1 + }, + "2": { + "iron_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_writable_book_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an writable_book", + "conversation": "Let's work together to craft an writable_book.", + "initial_inventory": { + "0": { + "book": 1 + }, + "1": { + "ink_sac": 1 + }, + "2": { + "feather": 1 + } + }, + "agent_count": 3, + "target": "writable_book", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_writable_book_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an writable_book", + "conversation": "Let's work together to craft an writable_book.", + "initial_inventory": { + "0": { + "paper": 1, + "leather": 1 + }, + "1": { + "paper": 1, + "ink_sac": 1 + }, + "2": { + "paper": 1, + "feather": 1 + } + }, + "agent_count": 3, + "target": "writable_book", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_daylight_detector_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "glass": 1, + "quartz": 1, + "oak_slab": 1 + }, + "1": { + "glass": 1, + "quartz": 1, + "oak_slab": 1 + }, + "2": { + "glass": 1, + "quartz": 1, + "oak_slab": 1 + } + }, + "agent_count": 3, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_2_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 2, + "oak_planks": 2 + }, + "1": { + "brown_dye": 2, + "shears": 1 + }, + "2": { + "brown_dye": 2 + } + }, + "agent_count": 3, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_polished_blackstone_bricks_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an polished_blackstone_bricks", + "conversation": "Let's work together to craft an polished_blackstone_bricks.", + "initial_inventory": { + "0": { + "polished_blackstone": 2 + }, + "1": { + "polished_blackstone": 1 + }, + "2": { + "polished_blackstone": 1 + } + }, + "agent_count": 3, + "target": "polished_blackstone_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_bed_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_bed", + "conversation": "Let's work together to craft an purple_bed.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "black_wool": 1, + "oak_planks": 1 + }, + "1": { + "red_dye": 1, + "black_wool": 1, + "oak_planks": 1 + }, + "2": { + "black_wool": 1, + "oak_planks": 1 + } + }, + "agent_count": 3, + "target": "purple_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_2_with_plan_missing_redstone_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 2, + "stick": 1 + }, + "1": { + "gold_ingot": 2, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 2 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_powered_rail_2_with_plan_missing_gold_ingot_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "furnace": 1 + }, + "1": { + "redstone": 1 + }, + "2": { + "iron_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_polished_andesite_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an polished_andesite", + "conversation": "Let's work together to craft an polished_andesite.", + "initial_inventory": { + "0": { + "andesite": 2 + }, + "1": { + "andesite": 1 + }, + "2": { + "andesite": 1 + } + }, + "agent_count": 3, + "target": "polished_andesite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "lime_dye": 2, + "black_wool": 2 + }, + "2": { + "lime_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cut_sandstone_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an cut_sandstone", + "conversation": "Let's work together to craft an cut_sandstone.", + "initial_inventory": { + "0": { + "sandstone": 1 + }, + "1": { + "sandstone": 2 + }, + "2": { + "sandstone": 1 + } + }, + "agent_count": 3, + "target": "cut_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_daylight_detector_2_with_plan_missing_glass_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "quartz": 1, + "oak_planks": 1 + }, + "1": { + "quartz": 1, + "oak_planks": 1 + }, + "2": { + "quartz": 1, + "oak_planks": 1 + } + }, + "agent_count": 3, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "glass" + ] + }, + "multiagent_crafting_beehive_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an beehive", + "conversation": "Let's work together to craft an beehive.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "honeycomb": 1 + }, + "1": { + "oak_planks": 2, + "honeycomb": 1 + }, + "2": { + "oak_planks": 2, + "honeycomb": 1 + } + }, + "agent_count": 3, + "target": "beehive", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_2_with_plan_missing_redstone_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 2, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 2, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 2 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_lime_banner_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_wool": 2, + "stick": 1 + }, + "1": { + "lime_wool": 2 + }, + "2": { + "lime_wool": 2 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_wool_0_with_plan_missing_black_wool_depth_1_num_agents_3": { + "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 + }, + "1": { + "white_dye": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_powered_rail_2_with_plan_missing_gold_ingot_redstone_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "stick": 1, + "diamond_pickaxe": 1 + }, + "1": { + "iron_pickaxe": 1 + }, + "2": { + "furnace": 1 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "gold_ingot", + "redstone" + ] + }, + "multiagent_crafting_daylight_detector_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "glass": 1, + "quartz": 1, + "oak_planks": 1 + }, + "1": { + "glass": 1, + "quartz": 1, + "oak_planks": 1 + }, + "2": { + "glass": 1, + "quartz": 1, + "oak_planks": 1 + } + }, + "agent_count": 3, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_horse_armor_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an leather_horse_armor", + "conversation": "Let's work together to craft an leather_horse_armor.", + "initial_inventory": { + "0": { + "leather": 3 + }, + "1": { + "leather": 2 + }, + "2": { + "leather": 2 + } + }, + "agent_count": 3, + "target": "leather_horse_armor", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_carpet_1_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_carpet", + "conversation": "Let's work together to craft an purple_carpet.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "red_dye": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "purple_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_hopper_1_with_plan_missing_chest_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 3 + }, + "2": { + "iron_ingot": 1 + } + }, + "agent_count": 3, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_daylight_detector_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "glass": 1, + "quartz": 1, + "oak_planks": 1 + }, + "1": { + "glass": 1, + "quartz": 1, + "oak_planks": 1 + }, + "2": { + "glass": 1, + "quartz": 1, + "oak_planks": 1 + } + }, + "agent_count": 3, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_daylight_detector_2_with_plan_missing_oak_slab_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "glass": 1, + "quartz": 1 + }, + "1": { + "glass": 1, + "quartz": 1 + }, + "2": { + "glass": 1, + "quartz": 1 + } + }, + "agent_count": 3, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "oak_slab" + ] + }, + "multiagent_crafting_powered_rail_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 2, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 2, + "redstone": 1 + }, + "2": { + "gold_ingot": 2 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_daylight_detector_0_with_plan_missing_glass_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "quartz": 1, + "oak_slab": 1 + }, + "1": { + "quartz": 1, + "oak_slab": 1 + }, + "2": { + "quartz": 1, + "oak_slab": 1 + } + }, + "agent_count": 3, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "glass" + ] + }, + "multiagent_crafting_daylight_detector_1_with_plan_missing_glass_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "quartz": 1, + "oak_planks": 1 + }, + "1": { + "quartz": 1, + "oak_planks": 1 + }, + "2": { + "quartz": 1, + "oak_planks": 1 + } + }, + "agent_count": 3, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "glass" + ] + }, + "multiagent_crafting_cut_sandstone_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an cut_sandstone", + "conversation": "Let's work together to craft an cut_sandstone.", + "initial_inventory": { + "0": { + "sandstone": 1 + }, + "1": { + "sandstone": 2 + }, + "2": { + "sandstone": 1 + } + }, + "agent_count": 3, + "target": "cut_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_2_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 2, + "oak_planks": 2 + }, + "1": { + "lime_dye": 2, + "shears": 1 + }, + "2": { + "lime_dye": 2 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_polished_andesite_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an polished_andesite", + "conversation": "Let's work together to craft an polished_andesite.", + "initial_inventory": { + "0": { + "andesite": 2 + }, + "1": { + "andesite": 1 + }, + "2": { + "andesite": 1 + } + }, + "agent_count": 3, + "target": "polished_andesite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 4 + }, + "2": { + "iron_ingot": 1, + "oak_planks": 2 + } + }, + "agent_count": 3, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_wool": 2, + "stick": 1 + }, + "1": { + "gray_wool": 2 + }, + "2": { + "gray_wool": 2 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_daylight_detector_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "glass": 1, + "quartz": 1, + "oak_planks": 1 + }, + "1": { + "glass": 1, + "quartz": 1, + "oak_planks": 1 + }, + "2": { + "glass": 1, + "quartz": 1, + "oak_planks": 1 + } + }, + "agent_count": 3, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_0_with_plan_missing_gold_ingot_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "stick": 1, + "furnace": 1 + }, + "1": { + "redstone": 1 + }, + "2": { + "iron_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_lime_banner_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "lime_dye": 2, + "black_wool": 2 + }, + "2": { + "lime_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_0_with_plan_missing_gold_ingot_redstone_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "stick": 1, + "diamond_pickaxe": 1 + }, + "1": { + "iron_pickaxe": 1 + }, + "2": { + "furnace": 1 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "gold_ingot", + "redstone" + ] + }, + "multiagent_crafting_powered_rail_0_with_plan_missing_redstone_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 2, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 2, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 2 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_daylight_detector_2_with_plan_missing_glass_oak_slab_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "quartz": 1 + }, + "1": { + "quartz": 1 + }, + "2": { + "quartz": 1 + } + }, + "agent_count": 3, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "glass", + "oak_slab" + ] + }, + "multiagent_crafting_purple_bed_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_bed", + "conversation": "Let's work together to craft an purple_bed.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "black_wool": 1, + "oak_planks": 1 + }, + "1": { + "red_dye": 1, + "black_wool": 1, + "oak_planks": 1 + }, + "2": { + "black_wool": 1, + "oak_planks": 1 + } + }, + "agent_count": 3, + "target": "purple_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_beehive_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an beehive", + "conversation": "Let's work together to craft an beehive.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "honeycomb": 1 + }, + "1": { + "oak_planks": 2, + "honeycomb": 1 + }, + "2": { + "oak_planks": 2, + "honeycomb": 1 + } + }, + "agent_count": 3, + "target": "beehive", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_2_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 2, + "oak_planks": 2 + }, + "1": { + "gray_dye": 2, + "shears": 1 + }, + "2": { + "gray_dye": 2 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_daylight_detector_1_with_plan_missing_glass_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "quartz": 1, + "oak_slab": 1 + }, + "1": { + "quartz": 1, + "oak_slab": 1 + }, + "2": { + "quartz": 1, + "oak_slab": 1 + } + }, + "agent_count": 3, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "glass" + ] + }, + "multiagent_crafting_writable_book_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an writable_book", + "conversation": "Let's work together to craft an writable_book.", + "initial_inventory": { + "0": { + "paper": 1, + "leather": 1 + }, + "1": { + "paper": 1, + "ink_sac": 1 + }, + "2": { + "paper": 1, + "feather": 1 + } + }, + "agent_count": 3, + "target": "writable_book", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_2_with_plan_missing_gold_ingot_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "stick": 1, + "furnace": 1 + }, + "1": { + "redstone": 1 + }, + "2": { + "iron_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_hopper_minecart_1_with_plan_missing_chest_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 3 + }, + "1": { + "iron_ingot": 3 + }, + "2": { + "iron_ingot": 4 + } + }, + "agent_count": 3, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_powered_rail_1_with_plan_missing_gold_ingot_redstone_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "stick": 1, + "diamond_pickaxe": 1 + }, + "1": { + "iron_pickaxe": 1 + }, + "2": { + "furnace": 1 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "gold_ingot", + "redstone" + ] + }, + "multiagent_crafting_purple_bed_2_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_bed", + "conversation": "Let's work together to craft an purple_bed.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "oak_planks": 1 + }, + "1": { + "red_dye": 1, + "oak_planks": 1 + }, + "2": { + "oak_planks": 1, + "shears": 1 + } + }, + "agent_count": 3, + "target": "purple_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_polished_andesite_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an polished_andesite", + "conversation": "Let's work together to craft an polished_andesite.", + "initial_inventory": { + "0": { + "andesite": 2 + }, + "1": { + "andesite": 1 + }, + "2": { + "andesite": 1 + } + }, + "agent_count": 3, + "target": "polished_andesite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_1_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 2, + "oak_planks": 2 + }, + "1": { + "gray_dye": 2, + "shears": 1 + }, + "2": { + "gray_dye": 2 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_powered_rail_1_with_plan_missing_gold_ingot_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "stick": 1, + "furnace": 1 + }, + "1": { + "redstone": 1 + }, + "2": { + "iron_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_powered_rail_2_with_plan_missing_gold_ingot_redstone_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "diamond_pickaxe": 1 + }, + "1": { + "iron_pickaxe": 1 + }, + "2": { + "furnace": 1 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "gold_ingot", + "redstone" + ] + }, + "multiagent_crafting_polished_blackstone_bricks_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an polished_blackstone_bricks", + "conversation": "Let's work together to craft an polished_blackstone_bricks.", + "initial_inventory": { + "0": { + "polished_blackstone": 2 + }, + "1": { + "polished_blackstone": 1 + }, + "2": { + "polished_blackstone": 1 + } + }, + "agent_count": 3, + "target": "polished_blackstone_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "brown_dye": 2, + "black_wool": 2 + }, + "2": { + "brown_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_daylight_detector_2_with_plan_missing_glass_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "quartz": 1, + "oak_slab": 1 + }, + "1": { + "quartz": 1, + "oak_slab": 1 + }, + "2": { + "quartz": 1, + "oak_slab": 1 + } + }, + "agent_count": 3, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "glass" + ] + }, + "multiagent_crafting_gray_banner_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "gray_dye": 2, + "black_wool": 2 + }, + "2": { + "gray_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_2_with_plan_missing_chest_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 3 + }, + "2": { + "iron_ingot": 1 + } + }, + "agent_count": 3, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_powered_rail_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 2, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 2, + "redstone": 1 + }, + "2": { + "gold_ingot": 2 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_snow_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an snow", + "conversation": "Let's work together to craft an snow.", + "initial_inventory": { + "0": { + "snow_block": 1 + }, + "1": { + "snow_block": 1 + }, + "2": { + "snow_block": 1 + } + }, + "agent_count": 3, + "target": "snow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_0_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 2, + "oak_planks": 2 + }, + "1": { + "brown_dye": 2, + "shears": 1 + }, + "2": { + "brown_dye": 2 + } + }, + "agent_count": 3, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_hopper_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "chest": 1 + }, + "1": { + "iron_ingot": 3 + }, + "2": { + "iron_ingot": 1 + } + }, + "agent_count": 3, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "gray_dye": 2, + "black_wool": 2 + }, + "2": { + "gray_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_exposed_cut_copper_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an waxed_exposed_cut_copper", + "conversation": "Let's work together to craft an waxed_exposed_cut_copper.", + "initial_inventory": { + "0": { + "waxed_exposed_copper": 1 + }, + "1": { + "waxed_exposed_copper": 2 + }, + "2": { + "waxed_exposed_copper": 1 + } + }, + "agent_count": 3, + "target": "waxed_exposed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_carpet_0_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_carpet", + "conversation": "Let's work together to craft an purple_carpet.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "red_dye": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "purple_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_daylight_detector_1_with_plan_missing_oak_slab_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "glass": 1, + "quartz": 1 + }, + "1": { + "glass": 1, + "quartz": 1 + }, + "2": { + "glass": 1, + "quartz": 1 + } + }, + "agent_count": 3, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "oak_slab" + ] + }, + "multiagent_crafting_lime_wool_1_with_plan_missing_black_wool_depth_1_num_agents_3": { + "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 + }, + "1": { + "white_dye": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_banner_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_wool": 2, + "stick": 1 + }, + "1": { + "lime_wool": 2 + }, + "2": { + "lime_wool": 2 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_1_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 2, + "oak_planks": 2 + }, + "1": { + "lime_dye": 2, + "shears": 1 + }, + "2": { + "lime_dye": 2 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_daylight_detector_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "glass": 1, + "quartz": 1, + "oak_slab": 1 + }, + "1": { + "glass": 1, + "quartz": 1, + "oak_slab": 1 + }, + "2": { + "glass": 1, + "quartz": 1, + "oak_slab": 1 + } + }, + "agent_count": 3, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_stone_bricks_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an chiseled_stone_bricks", + "conversation": "Let's work together to craft an chiseled_stone_bricks.", + "initial_inventory": { + "0": { + "stone_bricks": 1 + }, + "1": { + "stone_bricks": 1 + }, + "2": { + "stone_bricks": 1 + } + }, + "agent_count": 3, + "target": "chiseled_stone_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_2_with_plan_missing_iron_ingot_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "chest": 1 + }, + "1": { + "stone_pickaxe": 1 + }, + "2": { + "furnace": 1 + } + }, + "agent_count": 3, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_hopper_minecart_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "chest": 1 + }, + "1": { + "iron_ingot": 3 + }, + "2": { + "iron_ingot": 4 + } + }, + "agent_count": 3, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_snow_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an snow", + "conversation": "Let's work together to craft an snow.", + "initial_inventory": { + "0": { + "snow_block": 1 + }, + "1": { + "snow_block": 1 + }, + "2": { + "snow_block": 1 + } + }, + "agent_count": 3, + "target": "snow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_bed_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_bed", + "conversation": "Let's work together to craft an purple_bed.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "black_wool": 1, + "oak_planks": 1 + }, + "1": { + "red_dye": 1, + "black_wool": 1, + "oak_planks": 1 + }, + "2": { + "black_wool": 1, + "oak_planks": 1 + } + }, + "agent_count": 3, + "target": "purple_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_daylight_detector_1_with_plan_missing_glass_oak_slab_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "quartz": 1 + }, + "1": { + "quartz": 1 + }, + "2": { + "quartz": 1 + } + }, + "agent_count": 3, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "glass", + "oak_slab" + ] + }, + "multiagent_crafting_lime_banner_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "lime_dye": 2, + "black_wool": 2 + }, + "2": { + "lime_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_beehive_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an beehive", + "conversation": "Let's work together to craft an beehive.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "honeycomb": 1 + }, + "1": { + "oak_planks": 2, + "honeycomb": 1 + }, + "2": { + "oak_planks": 2, + "honeycomb": 1 + } + }, + "agent_count": 3, + "target": "beehive", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_0_with_plan_missing_chest_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 3 + }, + "1": { + "iron_ingot": 3 + }, + "2": { + "iron_ingot": 4 + } + }, + "agent_count": 3, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_waxed_exposed_cut_copper_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an waxed_exposed_cut_copper", + "conversation": "Let's work together to craft an waxed_exposed_cut_copper.", + "initial_inventory": { + "0": { + "waxed_exposed_copper": 1 + }, + "1": { + "waxed_exposed_copper": 2 + }, + "2": { + "waxed_exposed_copper": 1 + } + }, + "agent_count": 3, + "target": "waxed_exposed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_stone_bricks_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an chiseled_stone_bricks", + "conversation": "Let's work together to craft an chiseled_stone_bricks.", + "initial_inventory": { + "0": { + "stone_bricks": 1 + }, + "1": { + "stone_bricks": 1 + }, + "2": { + "stone_bricks": 1 + } + }, + "agent_count": 3, + "target": "chiseled_stone_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "chest": 1 + }, + "1": { + "iron_ingot": 3 + }, + "2": { + "iron_ingot": 1 + } + }, + "agent_count": 3, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_0_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 2, + "oak_planks": 2 + }, + "1": { + "lime_dye": 2, + "shears": 1 + }, + "2": { + "lime_dye": 2 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_hopper_1_with_plan_missing_iron_ingot_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "chest": 1 + }, + "1": { + "stone_pickaxe": 1 + }, + "2": { + "furnace": 1 + } + }, + "agent_count": 3, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_brown_banner_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "brown_dye": 2, + "black_wool": 2 + }, + "2": { + "brown_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 2, + "stick": 1 + }, + "1": { + "gold_ingot": 2, + "redstone": 1 + }, + "2": { + "gold_ingot": 2 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_wool_0_with_plan__depth_1_num_agents_3": { + "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 + }, + "1": { + "white_dye": 1 + }, + "2": { + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_daylight_detector_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "glass": 1, + "quartz": 1, + "oak_slab": 1 + }, + "1": { + "glass": 1, + "quartz": 1, + "oak_slab": 1 + }, + "2": { + "glass": 1, + "quartz": 1, + "oak_slab": 1 + } + }, + "agent_count": 3, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 2, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 2, + "redstone": 1 + }, + "2": { + "gold_ingot": 2 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_daylight_detector_0_with_plan_missing_glass_oak_slab_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an daylight_detector", + "conversation": "Let's work together to craft an daylight_detector.", + "initial_inventory": { + "0": { + "quartz": 1 + }, + "1": { + "quartz": 1 + }, + "2": { + "quartz": 1 + } + }, + "agent_count": 3, + "target": "daylight_detector", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "glass", + "oak_slab" + ] + }, + "multiagent_crafting_purple_carpet_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_carpet", + "conversation": "Let's work together to craft an purple_carpet.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "red_dye": 1 + }, + "2": { + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "purple_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_wool_2_with_plan__depth_1_num_agents_3": { + "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 + }, + "1": { + "white_dye": 1 + }, + "2": { + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_bed_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an red_bed", + "conversation": "Let's work together to craft an red_bed.", + "initial_inventory": { + "0": { + "beetroot": 1, + "black_wool": 1, + "oak_planks": 1 + }, + "1": { + "black_wool": 1, + "oak_planks": 1 + }, + "2": { + "black_wool": 1, + "oak_planks": 1 + } + }, + "agent_count": 3, + "target": "red_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_1_with_plan_missing_gold_ingot_redstone_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "diamond_pickaxe": 1 + }, + "1": { + "iron_pickaxe": 1 + }, + "2": { + "furnace": 1 + } + }, + "agent_count": 3, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "gold_ingot", + "redstone" + ] + }, + "multiagent_crafting_purple_bed_0_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_bed", + "conversation": "Let's work together to craft an purple_bed.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "oak_planks": 1 + }, + "1": { + "red_dye": 1, + "oak_planks": 1 + }, + "2": { + "oak_planks": 1, + "shears": 1 + } + }, + "agent_count": 3, + "target": "purple_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_wool_1_with_plan__depth_1_num_agents_3": { + "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 + }, + "1": { + "white_dye": 1 + }, + "2": { + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "chest": 1 + }, + "1": { + "iron_ingot": 3 + }, + "2": { + "iron_ingot": 4 + } + }, + "agent_count": 3, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_wool_0_with_plan_missing_black_wool_depth_2_num_agents_3": { + "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 + }, + "1": { + "bone_meal": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_wool_1_with_plan_missing_black_wool_depth_2_num_agents_3": { + "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 + }, + "1": { + "bone_meal": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_wool_2_with_plan_missing_black_wool_depth_2_num_agents_3": { + "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 + }, + "1": { + "bone_meal": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_wool_0_with_plan__depth_2_num_agents_3": { + "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 + }, + "1": { + "bone_meal": 1 + }, + "2": { + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_wool_1_with_plan__depth_2_num_agents_3": { + "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 + }, + "1": { + "bone_meal": 1 + }, + "2": { + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_wool_2_with_plan__depth_2_num_agents_3": { + "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 + }, + "1": { + "bone_meal": 1 + }, + "2": { + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_0_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "black_dye": 1, + "white_dye": 1, + "oak_log": 1 + }, + "1": { + "black_dye": 1, + "white_dye": 1, + "shears": 1 + }, + "2": { + "black_dye": 1, + "white_dye": 1 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_gray_banner_1_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "black_dye": 1, + "white_dye": 1, + "oak_log": 1 + }, + "1": { + "black_dye": 1, + "white_dye": 1, + "shears": 1 + }, + "2": { + "black_dye": 1, + "white_dye": 1 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_gray_banner_2_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "black_dye": 1, + "white_dye": 1, + "oak_log": 1 + }, + "1": { + "black_dye": 1, + "white_dye": 1, + "shears": 1 + }, + "2": { + "black_dye": 1, + "white_dye": 1 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_gray_banner_0_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "black_dye": 1, + "white_dye": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "black_dye": 1, + "white_dye": 1, + "black_wool": 2 + }, + "2": { + "black_dye": 1, + "white_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_1_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "black_dye": 1, + "white_dye": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "black_dye": 1, + "white_dye": 1, + "black_wool": 2 + }, + "2": { + "black_dye": 1, + "white_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_2_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "black_dye": 1, + "white_dye": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "black_dye": 1, + "white_dye": 1, + "black_wool": 2 + }, + "2": { + "black_dye": 1, + "white_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_0_with_plan_missing_black_wool_depth_3_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "ink_sac": 1, + "bone_meal": 1, + "oak_log": 1 + }, + "1": { + "ink_sac": 1, + "bone_meal": 1, + "shears": 1 + }, + "2": { + "ink_sac": 1, + "bone_meal": 1 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 540, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_gray_banner_1_with_plan_missing_black_wool_depth_3_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "ink_sac": 1, + "bone_meal": 1, + "oak_log": 1 + }, + "1": { + "ink_sac": 1, + "bone_meal": 1, + "shears": 1 + }, + "2": { + "ink_sac": 1, + "bone_meal": 1 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 540, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_gray_banner_2_with_plan_missing_black_wool_depth_3_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "ink_sac": 1, + "bone_meal": 1, + "oak_log": 1 + }, + "1": { + "ink_sac": 1, + "bone_meal": 1, + "shears": 1 + }, + "2": { + "ink_sac": 1, + "bone_meal": 1 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 540, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_gray_banner_0_with_plan__depth_3_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "ink_sac": 1, + "bone_meal": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "ink_sac": 1, + "bone_meal": 1, + "black_wool": 2 + }, + "2": { + "ink_sac": 1, + "bone_meal": 1, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_1_with_plan__depth_3_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "ink_sac": 1, + "bone_meal": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "ink_sac": 1, + "bone_meal": 1, + "black_wool": 2 + }, + "2": { + "ink_sac": 1, + "bone_meal": 1, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_2_with_plan__depth_3_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "ink_sac": 1, + "bone_meal": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "ink_sac": 1, + "bone_meal": 1, + "black_wool": 2 + }, + "2": { + "ink_sac": 1, + "bone_meal": 1, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_0_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "white_dye": 1, + "oak_log": 1 + }, + "1": { + "green_dye": 1, + "white_dye": 1, + "shears": 1 + }, + "2": { + "green_dye": 1, + "white_dye": 1 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_banner_1_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "white_dye": 1, + "oak_log": 1 + }, + "1": { + "green_dye": 1, + "white_dye": 1, + "shears": 1 + }, + "2": { + "green_dye": 1, + "white_dye": 1 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_banner_2_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "white_dye": 1, + "oak_log": 1 + }, + "1": { + "green_dye": 1, + "white_dye": 1, + "shears": 1 + }, + "2": { + "green_dye": 1, + "white_dye": 1 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_banner_0_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "white_dye": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "green_dye": 1, + "white_dye": 1, + "black_wool": 2 + }, + "2": { + "green_dye": 1, + "white_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_1_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "white_dye": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "green_dye": 1, + "white_dye": 1, + "black_wool": 2 + }, + "2": { + "green_dye": 1, + "white_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_2_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "white_dye": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "green_dye": 1, + "white_dye": 1, + "black_wool": 2 + }, + "2": { + "green_dye": 1, + "white_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_0_with_plan_missing_black_wool_depth_3_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "bone_meal": 1, + "oak_log": 1 + }, + "1": { + "green_dye": 1, + "bone_meal": 1, + "shears": 1 + }, + "2": { + "green_dye": 1, + "bone_meal": 1 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 540, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_banner_1_with_plan_missing_black_wool_depth_3_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "bone_meal": 1, + "oak_log": 1 + }, + "1": { + "green_dye": 1, + "bone_meal": 1, + "shears": 1 + }, + "2": { + "green_dye": 1, + "bone_meal": 1 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 540, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_banner_2_with_plan_missing_black_wool_depth_3_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "bone_meal": 1, + "oak_log": 1 + }, + "1": { + "green_dye": 1, + "bone_meal": 1, + "shears": 1 + }, + "2": { + "green_dye": 1, + "bone_meal": 1 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 540, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_banner_0_with_plan__depth_3_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "bone_meal": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "green_dye": 1, + "bone_meal": 1, + "black_wool": 2 + }, + "2": { + "green_dye": 1, + "bone_meal": 1, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_1_with_plan__depth_3_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "bone_meal": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "green_dye": 1, + "bone_meal": 1, + "black_wool": 2 + }, + "2": { + "green_dye": 1, + "bone_meal": 1, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_2_with_plan__depth_3_num_agents_3": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "bone_meal": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "green_dye": 1, + "bone_meal": 1, + "black_wool": 2 + }, + "2": { + "green_dye": 1, + "bone_meal": 1, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_0_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 4, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 3, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 3, + "oak_planks": 4 + } + }, + "agent_count": 3, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_1_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 4, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 3, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 3, + "oak_planks": 4 + } + }, + "agent_count": 3, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_2_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 4, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 3, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 3, + "oak_planks": 4 + } + }, + "agent_count": 3, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/dev_tasks/tasks_3_agents_stats.txt b/tasks/crafting_tasks/dev_tasks/tasks_3_agents_stats.txt new file mode 100644 index 0000000..60c7d8c --- /dev/null +++ b/tasks/crafting_tasks/dev_tasks/tasks_3_agents_stats.txt @@ -0,0 +1,16 @@ +{ + "num_tasks": 184, + "avg_depth": 2.4754098360655736, + "std_depth": 0.9684626549338964, + "num_tasks_based_depth": { + "0": 72, + "1": 78, + "2": 21, + "3": 12 + }, + "num_missing_resources": { + "0": 108, + "1": 66, + "2": 9 + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/dev_tasks/tasks_4_agents.json b/tasks/crafting_tasks/dev_tasks/tasks_4_agents.json new file mode 100644 index 0000000..6748528 --- /dev/null +++ b/tasks/crafting_tasks/dev_tasks/tasks_4_agents.json @@ -0,0 +1,4766 @@ +{ + "multiagent_crafting_leather_boots_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an leather_boots", + "conversation": "Let's work together to craft an leather_boots.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 1 + } + }, + "agent_count": 4, + "target": "leather_boots", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_0_with_plan_missing_redstone_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 1, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 3 + }, + "3": { + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_hopper_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "chest": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_writable_book_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an writable_book", + "conversation": "Let's work together to craft an writable_book.", + "initial_inventory": { + "0": { + "paper": 3 + }, + "1": { + "leather": 1 + }, + "2": { + "ink_sac": 1 + }, + "3": { + "feather": 1 + } + }, + "agent_count": 4, + "target": "writable_book", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cut_sandstone_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an cut_sandstone", + "conversation": "Let's work together to craft an cut_sandstone.", + "initial_inventory": { + "0": { + "sandstone": 1 + }, + "1": { + "sandstone": 1 + }, + "2": { + "sandstone": 1 + }, + "3": { + "sandstone": 1 + } + }, + "agent_count": 4, + "target": "cut_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 3, + "black_wool": 3, + "oak_planks": 2 + }, + "1": { + "gray_dye": 1, + "black_wool": 1 + }, + "2": { + "gray_dye": 1, + "black_wool": 1 + }, + "3": { + "gray_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_3_with_plan_missing_chest_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 2 + } + }, + "agent_count": 4, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_gray_banner_2_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 1, + "oak_planks": 2 + }, + "1": { + "gray_dye": 1, + "shears": 1 + }, + "2": { + "gray_dye": 3 + }, + "3": { + "gray_dye": 1 + } + }, + "agent_count": 4, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_ender_chest_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 2, + "ender_eye": 1 + }, + "1": { + "obsidian": 2 + }, + "2": { + "obsidian": 2 + }, + "3": { + "obsidian": 2 + } + }, + "agent_count": 4, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "chest": 1 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 4 + }, + "3": { + "iron_ingot": 2 + } + }, + "agent_count": 4, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_wool": 1, + "stick": 1 + }, + "1": { + "lime_wool": 1 + }, + "2": { + "lime_wool": 1 + }, + "3": { + "lime_wool": 3 + } + }, + "agent_count": 4, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "3": { + "iron_ingot": 2, + "oak_planks": 2 + } + }, + "agent_count": 4, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_0_with_plan_missing_redstone_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "stick": 1 + }, + "1": { + "gold_ingot": 1, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 3 + } + }, + "agent_count": 4, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_lime_banner_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "lime_dye": 3, + "black_wool": 3 + }, + "2": { + "lime_dye": 1, + "black_wool": 1 + }, + "3": { + "lime_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "stick": 1 + }, + "1": { + "gold_ingot": 1, + "redstone": 1 + }, + "2": { + "gold_ingot": 3 + }, + "3": { + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 3, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "brown_dye": 1, + "black_wool": 3 + }, + "2": { + "brown_dye": 1, + "black_wool": 1 + }, + "3": { + "brown_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_horse_armor_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an leather_horse_armor", + "conversation": "Let's work together to craft an leather_horse_armor.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 4 + }, + "3": { + "leather": 1 + } + }, + "agent_count": 4, + "target": "leather_horse_armor", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "chest": 1 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 4 + }, + "3": { + "iron_ingot": 2 + } + }, + "agent_count": 4, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "stick": 1 + }, + "1": { + "gold_ingot": 1, + "redstone": 1 + }, + "2": { + "gold_ingot": 3 + }, + "3": { + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "3": { + "iron_ingot": 2, + "oak_planks": 2 + } + }, + "agent_count": 4, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_horse_armor_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an leather_horse_armor", + "conversation": "Let's work together to craft an leather_horse_armor.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 4 + }, + "3": { + "leather": 1 + } + }, + "agent_count": 4, + "target": "leather_horse_armor", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_ender_chest_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 2, + "ender_pearl": 1 + }, + "1": { + "obsidian": 2, + "blaze_powder": 1 + }, + "2": { + "obsidian": 2 + }, + "3": { + "obsidian": 2 + } + }, + "agent_count": 4, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cut_sandstone_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an cut_sandstone", + "conversation": "Let's work together to craft an cut_sandstone.", + "initial_inventory": { + "0": { + "sandstone": 1 + }, + "1": { + "sandstone": 1 + }, + "2": { + "sandstone": 1 + }, + "3": { + "sandstone": 1 + } + }, + "agent_count": 4, + "target": "cut_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_2_with_plan_missing_redstone_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 1, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 3 + }, + "3": { + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_ender_chest_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 2, + "ender_eye": 1 + }, + "1": { + "obsidian": 2 + }, + "2": { + "obsidian": 2 + }, + "3": { + "obsidian": 2 + } + }, + "agent_count": 4, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_3_with_plan_missing_chest_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 2 + }, + "3": { + "iron_ingot": 4 + } + }, + "agent_count": 4, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_polished_andesite_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_andesite", + "conversation": "Let's work together to craft an polished_andesite.", + "initial_inventory": { + "0": { + "andesite": 1 + }, + "1": { + "andesite": 1 + }, + "2": { + "andesite": 1 + }, + "3": { + "andesite": 1 + } + }, + "agent_count": 4, + "target": "polished_andesite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_2_with_plan_missing_chest_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 2 + }, + "3": { + "iron_ingot": 4 + } + }, + "agent_count": 4, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_powered_rail_3_with_plan_missing_redstone_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "stick": 1 + }, + "1": { + "gold_ingot": 1, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 3 + } + }, + "agent_count": 4, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_gray_banner_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 3, + "black_wool": 3, + "oak_planks": 2 + }, + "1": { + "gray_dye": 1, + "black_wool": 1 + }, + "2": { + "gray_dye": 1, + "black_wool": 1 + }, + "3": { + "gray_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_wool": 1, + "stick": 1 + }, + "1": { + "lime_wool": 1 + }, + "2": { + "lime_wool": 1 + }, + "3": { + "lime_wool": 3 + } + }, + "agent_count": 4, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_writable_book_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an writable_book", + "conversation": "Let's work together to craft an writable_book.", + "initial_inventory": { + "0": { + "paper": 3 + }, + "1": { + "leather": 1 + }, + "2": { + "ink_sac": 1 + }, + "3": { + "feather": 1 + } + }, + "agent_count": 4, + "target": "writable_book", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cut_sandstone_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an cut_sandstone", + "conversation": "Let's work together to craft an cut_sandstone.", + "initial_inventory": { + "0": { + "sandstone": 1 + }, + "1": { + "sandstone": 1 + }, + "2": { + "sandstone": 1 + }, + "3": { + "sandstone": 1 + } + }, + "agent_count": 4, + "target": "cut_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_0_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 1, + "oak_planks": 2 + }, + "1": { + "gray_dye": 1, + "shears": 1 + }, + "2": { + "gray_dye": 3 + }, + "3": { + "gray_dye": 1 + } + }, + "agent_count": 4, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_polished_blackstone_bricks_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_blackstone_bricks", + "conversation": "Let's work together to craft an polished_blackstone_bricks.", + "initial_inventory": { + "0": { + "polished_blackstone": 1 + }, + "1": { + "polished_blackstone": 1 + }, + "2": { + "polished_blackstone": 1 + }, + "3": { + "polished_blackstone": 1 + } + }, + "agent_count": 4, + "target": "polished_blackstone_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_ender_chest_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 2, + "ender_pearl": 1 + }, + "1": { + "obsidian": 2, + "blaze_powder": 1 + }, + "2": { + "obsidian": 2 + }, + "3": { + "obsidian": 2 + } + }, + "agent_count": 4, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_2_with_plan_missing_redstone_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "stick": 1 + }, + "1": { + "gold_ingot": 1, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 3 + } + }, + "agent_count": 4, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_writable_book_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an writable_book", + "conversation": "Let's work together to craft an writable_book.", + "initial_inventory": { + "0": { + "paper": 3 + }, + "1": { + "leather": 1 + }, + "2": { + "ink_sac": 1 + }, + "3": { + "feather": 1 + } + }, + "agent_count": 4, + "target": "writable_book", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_blackstone_bricks_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_blackstone_bricks", + "conversation": "Let's work together to craft an polished_blackstone_bricks.", + "initial_inventory": { + "0": { + "polished_blackstone": 1 + }, + "1": { + "polished_blackstone": 1 + }, + "2": { + "polished_blackstone": 1 + }, + "3": { + "polished_blackstone": 1 + } + }, + "agent_count": 4, + "target": "polished_blackstone_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 3, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "brown_dye": 1, + "black_wool": 3 + }, + "2": { + "brown_dye": 1, + "black_wool": 1 + }, + "3": { + "brown_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_exposed_cut_copper_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an waxed_exposed_cut_copper", + "conversation": "Let's work together to craft an waxed_exposed_cut_copper.", + "initial_inventory": { + "0": { + "waxed_exposed_copper": 1 + }, + "1": { + "waxed_exposed_copper": 1 + }, + "2": { + "waxed_exposed_copper": 1 + }, + "3": { + "waxed_exposed_copper": 1 + } + }, + "agent_count": 4, + "target": "waxed_exposed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_3_with_plan_missing_redstone_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 1, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 3 + }, + "3": { + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_brown_banner_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_wool": 3, + "stick": 1 + }, + "1": { + "brown_wool": 1 + }, + "2": { + "brown_wool": 1 + }, + "3": { + "brown_wool": 1 + } + }, + "agent_count": 4, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_0_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 1, + "oak_planks": 2 + }, + "1": { + "brown_dye": 3, + "shears": 1 + }, + "2": { + "brown_dye": 1 + }, + "3": { + "brown_dye": 1 + } + }, + "agent_count": 4, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_polished_andesite_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_andesite", + "conversation": "Let's work together to craft an polished_andesite.", + "initial_inventory": { + "0": { + "andesite": 1 + }, + "1": { + "andesite": 1 + }, + "2": { + "andesite": 1 + }, + "3": { + "andesite": 1 + } + }, + "agent_count": 4, + "target": "polished_andesite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 3, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "brown_dye": 1, + "black_wool": 3 + }, + "2": { + "brown_dye": 1, + "black_wool": 1 + }, + "3": { + "brown_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_exposed_cut_copper_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an waxed_exposed_cut_copper", + "conversation": "Let's work together to craft an waxed_exposed_cut_copper.", + "initial_inventory": { + "0": { + "waxed_exposed_copper": 1 + }, + "1": { + "waxed_exposed_copper": 1 + }, + "2": { + "waxed_exposed_copper": 1 + }, + "3": { + "waxed_exposed_copper": 1 + } + }, + "agent_count": 4, + "target": "waxed_exposed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_ender_chest_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 2, + "ender_pearl": 1 + }, + "1": { + "obsidian": 2, + "blaze_powder": 1 + }, + "2": { + "obsidian": 2 + }, + "3": { + "obsidian": 2 + } + }, + "agent_count": 4, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "chest": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "lime_dye": 3, + "black_wool": 3 + }, + "2": { + "lime_dye": 1, + "black_wool": 1 + }, + "3": { + "lime_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_ender_chest_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 2, + "ender_eye": 1 + }, + "1": { + "obsidian": 2 + }, + "2": { + "obsidian": 2 + }, + "3": { + "obsidian": 2 + } + }, + "agent_count": 4, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_writable_book_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an writable_book", + "conversation": "Let's work together to craft an writable_book.", + "initial_inventory": { + "0": { + "paper": 3 + }, + "1": { + "leather": 1 + }, + "2": { + "ink_sac": 1 + }, + "3": { + "feather": 1 + } + }, + "agent_count": 4, + "target": "writable_book", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_wool": 3, + "stick": 1 + }, + "1": { + "gray_wool": 1 + }, + "2": { + "gray_wool": 1 + }, + "3": { + "gray_wool": 1 + } + }, + "agent_count": 4, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 3, + "redstone": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "chest": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "lime_dye": 3, + "black_wool": 3 + }, + "2": { + "lime_dye": 1, + "black_wool": 1 + }, + "3": { + "lime_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_boots_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an leather_boots", + "conversation": "Let's work together to craft an leather_boots.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 1 + } + }, + "agent_count": 4, + "target": "leather_boots", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 3, + "redstone": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_boots_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an leather_boots", + "conversation": "Let's work together to craft an leather_boots.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 1 + } + }, + "agent_count": 4, + "target": "leather_boots", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "chest": 1 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 4 + }, + "3": { + "iron_ingot": 2 + } + }, + "agent_count": 4, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cut_sandstone_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an cut_sandstone", + "conversation": "Let's work together to craft an cut_sandstone.", + "initial_inventory": { + "0": { + "sandstone": 1 + }, + "1": { + "sandstone": 1 + }, + "2": { + "sandstone": 1 + }, + "3": { + "sandstone": 1 + } + }, + "agent_count": 4, + "target": "cut_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_2_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 1, + "oak_planks": 2 + }, + "1": { + "lime_dye": 1, + "shears": 1 + }, + "2": { + "lime_dye": 3 + }, + "3": { + "lime_dye": 1 + } + }, + "agent_count": 4, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_powered_rail_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "stick": 1 + }, + "1": { + "gold_ingot": 1, + "redstone": 1 + }, + "2": { + "gold_ingot": 3 + }, + "3": { + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "chest": 1 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 4 + }, + "3": { + "iron_ingot": 2 + } + }, + "agent_count": 4, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_wool": 3, + "stick": 1 + }, + "1": { + "gray_wool": 1 + }, + "2": { + "gray_wool": 1 + }, + "3": { + "gray_wool": 1 + } + }, + "agent_count": 4, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_1_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 1, + "oak_planks": 2 + }, + "1": { + "gray_dye": 1, + "shears": 1 + }, + "2": { + "gray_dye": 3 + }, + "3": { + "gray_dye": 1 + } + }, + "agent_count": 4, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_leather_horse_armor_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an leather_horse_armor", + "conversation": "Let's work together to craft an leather_horse_armor.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 4 + }, + "3": { + "leather": 1 + } + }, + "agent_count": 4, + "target": "leather_horse_armor", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_0_with_plan_missing_chest_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 2 + }, + "3": { + "iron_ingot": 4 + } + }, + "agent_count": 4, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_brown_banner_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_wool": 3, + "stick": 1 + }, + "1": { + "brown_wool": 1 + }, + "2": { + "brown_wool": 1 + }, + "3": { + "brown_wool": 1 + } + }, + "agent_count": 4, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "3": { + "iron_ingot": 2, + "oak_planks": 2 + } + }, + "agent_count": 4, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_horse_armor_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an leather_horse_armor", + "conversation": "Let's work together to craft an leather_horse_armor.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 4 + }, + "3": { + "leather": 1 + } + }, + "agent_count": 4, + "target": "leather_horse_armor", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_2_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 1, + "oak_planks": 2 + }, + "1": { + "brown_dye": 3, + "shears": 1 + }, + "2": { + "brown_dye": 1 + }, + "3": { + "brown_dye": 1 + } + }, + "agent_count": 4, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_hopper_2_with_plan_missing_chest_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 2 + } + }, + "agent_count": 4, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_powered_rail_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 3, + "redstone": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_wool": 3, + "stick": 1 + }, + "1": { + "gray_wool": 1 + }, + "2": { + "gray_wool": 1 + }, + "3": { + "gray_wool": 1 + } + }, + "agent_count": 4, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_1_with_plan_missing_redstone_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 1, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 3 + }, + "3": { + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_lime_banner_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_wool": 1, + "stick": 1 + }, + "1": { + "lime_wool": 1 + }, + "2": { + "lime_wool": 1 + }, + "3": { + "lime_wool": 3 + } + }, + "agent_count": 4, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 3, + "black_wool": 3, + "oak_planks": 2 + }, + "1": { + "gray_dye": 1, + "black_wool": 1 + }, + "2": { + "gray_dye": 1, + "black_wool": 1 + }, + "3": { + "gray_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_1_with_plan_missing_chest_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 2 + } + }, + "agent_count": 4, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_ender_chest_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 2, + "ender_pearl": 1 + }, + "1": { + "obsidian": 2, + "blaze_powder": 1 + }, + "2": { + "obsidian": 2 + }, + "3": { + "obsidian": 2 + } + }, + "agent_count": 4, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_wool": 3, + "stick": 1 + }, + "1": { + "brown_wool": 1 + }, + "2": { + "brown_wool": 1 + }, + "3": { + "brown_wool": 1 + } + }, + "agent_count": 4, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "3": { + "iron_ingot": 2, + "oak_planks": 2 + } + }, + "agent_count": 4, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_andesite_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_andesite", + "conversation": "Let's work together to craft an polished_andesite.", + "initial_inventory": { + "0": { + "andesite": 1 + }, + "1": { + "andesite": 1 + }, + "2": { + "andesite": 1 + }, + "3": { + "andesite": 1 + } + }, + "agent_count": 4, + "target": "polished_andesite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_3_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 1, + "oak_planks": 2 + }, + "1": { + "lime_dye": 1, + "shears": 1 + }, + "2": { + "lime_dye": 3 + }, + "3": { + "lime_dye": 1 + } + }, + "agent_count": 4, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_waxed_exposed_cut_copper_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an waxed_exposed_cut_copper", + "conversation": "Let's work together to craft an waxed_exposed_cut_copper.", + "initial_inventory": { + "0": { + "waxed_exposed_copper": 1 + }, + "1": { + "waxed_exposed_copper": 1 + }, + "2": { + "waxed_exposed_copper": 1 + }, + "3": { + "waxed_exposed_copper": 1 + } + }, + "agent_count": 4, + "target": "waxed_exposed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_0_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 1, + "oak_planks": 2 + }, + "1": { + "lime_dye": 1, + "shears": 1 + }, + "2": { + "lime_dye": 3 + }, + "3": { + "lime_dye": 1 + } + }, + "agent_count": 4, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_polished_blackstone_bricks_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_blackstone_bricks", + "conversation": "Let's work together to craft an polished_blackstone_bricks.", + "initial_inventory": { + "0": { + "polished_blackstone": 1 + }, + "1": { + "polished_blackstone": 1 + }, + "2": { + "polished_blackstone": 1 + }, + "3": { + "polished_blackstone": 1 + } + }, + "agent_count": 4, + "target": "polished_blackstone_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_1_with_plan_missing_chest_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 2 + }, + "3": { + "iron_ingot": 4 + } + }, + "agent_count": 4, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_ender_chest_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 2, + "ender_eye": 1 + }, + "1": { + "obsidian": 2 + }, + "2": { + "obsidian": 2 + }, + "3": { + "obsidian": 2 + } + }, + "agent_count": 4, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 3, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "brown_dye": 1, + "black_wool": 3 + }, + "2": { + "brown_dye": 1, + "black_wool": 1 + }, + "3": { + "brown_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_1_with_plan_missing_redstone_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "stick": 1 + }, + "1": { + "gold_ingot": 1, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 3 + } + }, + "agent_count": 4, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_gray_banner_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 3, + "black_wool": 3, + "oak_planks": 2 + }, + "1": { + "gray_dye": 1, + "black_wool": 1 + }, + "2": { + "gray_dye": 1, + "black_wool": 1 + }, + "3": { + "gray_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_wool": 3, + "stick": 1 + }, + "1": { + "gray_wool": 1 + }, + "2": { + "gray_wool": 1 + }, + "3": { + "gray_wool": 1 + } + }, + "agent_count": 4, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_1_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 1, + "oak_planks": 2 + }, + "1": { + "brown_dye": 3, + "shears": 1 + }, + "2": { + "brown_dye": 1 + }, + "3": { + "brown_dye": 1 + } + }, + "agent_count": 4, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_leather_boots_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an leather_boots", + "conversation": "Let's work together to craft an leather_boots.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 1 + } + }, + "agent_count": 4, + "target": "leather_boots", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_1_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 1, + "oak_planks": 2 + }, + "1": { + "lime_dye": 1, + "shears": 1 + }, + "2": { + "lime_dye": 3 + }, + "3": { + "lime_dye": 1 + } + }, + "agent_count": 4, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_hopper_0_with_plan_missing_chest_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 2 + } + }, + "agent_count": 4, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_lime_banner_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "lime_dye": 3, + "black_wool": 3 + }, + "2": { + "lime_dye": 1, + "black_wool": 1 + }, + "3": { + "lime_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_wool": 1, + "stick": 1 + }, + "1": { + "lime_wool": 1 + }, + "2": { + "lime_wool": 1 + }, + "3": { + "lime_wool": 3 + } + }, + "agent_count": 4, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 3, + "redstone": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_wool": 3, + "stick": 1 + }, + "1": { + "brown_wool": 1 + }, + "2": { + "brown_wool": 1 + }, + "3": { + "brown_wool": 1 + } + }, + "agent_count": 4, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_3_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 1, + "oak_planks": 2 + }, + "1": { + "brown_dye": 3, + "shears": 1 + }, + "2": { + "brown_dye": 1 + }, + "3": { + "brown_dye": 1 + } + }, + "agent_count": 4, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_hopper_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "chest": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_3_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 1, + "oak_planks": 2 + }, + "1": { + "gray_dye": 1, + "shears": 1 + }, + "2": { + "gray_dye": 3 + }, + "3": { + "gray_dye": 1 + } + }, + "agent_count": 4, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_polished_blackstone_bricks_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_blackstone_bricks", + "conversation": "Let's work together to craft an polished_blackstone_bricks.", + "initial_inventory": { + "0": { + "polished_blackstone": 1 + }, + "1": { + "polished_blackstone": 1 + }, + "2": { + "polished_blackstone": 1 + }, + "3": { + "polished_blackstone": 1 + } + }, + "agent_count": 4, + "target": "polished_blackstone_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "stick": 1 + }, + "1": { + "gold_ingot": 1, + "redstone": 1 + }, + "2": { + "gold_ingot": 3 + }, + "3": { + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_exposed_cut_copper_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an waxed_exposed_cut_copper", + "conversation": "Let's work together to craft an waxed_exposed_cut_copper.", + "initial_inventory": { + "0": { + "waxed_exposed_copper": 1 + }, + "1": { + "waxed_exposed_copper": 1 + }, + "2": { + "waxed_exposed_copper": 1 + }, + "3": { + "waxed_exposed_copper": 1 + } + }, + "agent_count": 4, + "target": "waxed_exposed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_andesite_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_andesite", + "conversation": "Let's work together to craft an polished_andesite.", + "initial_inventory": { + "0": { + "andesite": 1 + }, + "1": { + "andesite": 1 + }, + "2": { + "andesite": 1 + }, + "3": { + "andesite": 1 + } + }, + "agent_count": 4, + "target": "polished_andesite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_0_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "black_dye": 3, + "black_wool": 1 + }, + "1": { + "white_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 3, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_1_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "black_dye": 3, + "black_wool": 1 + }, + "1": { + "white_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 3, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_2_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "black_dye": 3, + "black_wool": 1 + }, + "1": { + "white_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 3, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_3_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "black_dye": 3, + "black_wool": 1 + }, + "1": { + "white_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 3, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_0_with_plan__depth_3_num_agents_4": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "ink_sac": 3, + "black_wool": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 3, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_1_with_plan__depth_3_num_agents_4": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "ink_sac": 3, + "black_wool": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 3, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_2_with_plan__depth_3_num_agents_4": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "ink_sac": 3, + "black_wool": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 3, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_3_with_plan__depth_3_num_agents_4": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "ink_sac": 3, + "black_wool": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 3, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_0_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 3, + "black_wool": 1 + }, + "1": { + "white_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_1_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 3, + "black_wool": 1 + }, + "1": { + "white_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_2_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 3, + "black_wool": 1 + }, + "1": { + "white_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_3_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 3, + "black_wool": 1 + }, + "1": { + "white_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_0_with_plan__depth_3_num_agents_4": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 3, + "black_wool": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 3 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_1_with_plan__depth_3_num_agents_4": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 3, + "black_wool": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 3 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_2_with_plan__depth_3_num_agents_4": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 3, + "black_wool": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 3 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_3_with_plan__depth_3_num_agents_4": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 3, + "black_wool": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 3 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_0_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 4, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 2, + "oak_planks": 2 + }, + "3": { + "iron_ingot": 2, + "oak_planks": 2 + } + }, + "agent_count": 4, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_1_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 4, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 2, + "oak_planks": 2 + }, + "3": { + "iron_ingot": 2, + "oak_planks": 2 + } + }, + "agent_count": 4, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_2_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 4, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 2, + "oak_planks": 2 + }, + "3": { + "iron_ingot": 2, + "oak_planks": 2 + } + }, + "agent_count": 4, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_3_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 4, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 2, + "oak_planks": 2 + }, + "3": { + "iron_ingot": 2, + "oak_planks": 2 + } + }, + "agent_count": 4, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/dev_tasks/tasks_4_agents_stats.txt b/tasks/crafting_tasks/dev_tasks/tasks_4_agents_stats.txt new file mode 100644 index 0000000..8e9c523 --- /dev/null +++ b/tasks/crafting_tasks/dev_tasks/tasks_4_agents_stats.txt @@ -0,0 +1,15 @@ +{ + "num_tasks": 129, + "avg_depth": 2.5625, + "std_depth": 1.0879309490955758, + "num_tasks_based_depth": { + "0": 56, + "1": 52, + "2": 12, + "3": 8 + }, + "num_missing_resources": { + "0": 100, + "1": 28 + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/dev_tasks/tasks_5_agents.json b/tasks/crafting_tasks/dev_tasks/tasks_5_agents.json new file mode 100644 index 0000000..7b990e4 --- /dev/null +++ b/tasks/crafting_tasks/dev_tasks/tasks_5_agents.json @@ -0,0 +1,5582 @@ +{ + "multiagent_crafting_brown_banner_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_wool": 1, + "stick": 1 + }, + "1": { + "brown_wool": 1 + }, + "2": { + "brown_wool": 1 + }, + "3": { + "brown_wool": 2 + }, + "4": { + "brown_wool": 1 + } + }, + "agent_count": 5, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 1, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "gray_dye": 2, + "black_wool": 1 + }, + "2": { + "gray_dye": 1, + "black_wool": 1 + }, + "3": { + "gray_dye": 1, + "black_wool": 1 + }, + "4": { + "gray_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "stick": 1 + }, + "1": { + "gold_ingot": 1, + "redstone": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 2 + } + }, + "agent_count": 5, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_2_with_plan_missing_redstone_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 1, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 2 + }, + "4": { + "gold_ingot": 1 + } + }, + "agent_count": 5, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_powered_rail_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "stick": 1 + }, + "1": { + "gold_ingot": 1, + "redstone": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 2 + } + }, + "agent_count": 5, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 1, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "gray_dye": 2, + "black_wool": 1 + }, + "2": { + "gray_dye": 1, + "black_wool": 1 + }, + "3": { + "gray_dye": 1, + "black_wool": 1 + }, + "4": { + "gray_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_wool": 1, + "stick": 1 + }, + "1": { + "lime_wool": 1 + }, + "2": { + "lime_wool": 1 + }, + "3": { + "lime_wool": 2 + }, + "4": { + "lime_wool": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "2": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "3": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "4": { + "iron_ingot": 1, + "oak_planks": 4 + } + }, + "agent_count": 5, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "chest": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_2_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 1, + "oak_planks": 2 + }, + "1": { + "gray_dye": 1, + "shears": 1 + }, + "2": { + "gray_dye": 1 + }, + "3": { + "gray_dye": 1 + }, + "4": { + "gray_dye": 2 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_powered_rail_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "stick": 1 + }, + "1": { + "gold_ingot": 1, + "redstone": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 2 + } + }, + "agent_count": 5, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "2": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "3": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "4": { + "iron_ingot": 1, + "oak_planks": 4 + } + }, + "agent_count": 5, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_horse_armor_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an leather_horse_armor", + "conversation": "Let's work together to craft an leather_horse_armor.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 3 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 1 + }, + "4": { + "leather": 1 + } + }, + "agent_count": 5, + "target": "leather_horse_armor", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "chest": 1 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 2 + }, + "3": { + "iron_ingot": 2 + }, + "4": { + "iron_ingot": 2 + } + }, + "agent_count": 5, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_ender_chest_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 1, + "ender_eye": 1 + }, + "1": { + "obsidian": 1 + }, + "2": { + "obsidian": 4 + }, + "3": { + "obsidian": 1 + }, + "4": { + "obsidian": 1 + } + }, + "agent_count": 5, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_3_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 1, + "oak_planks": 2 + }, + "1": { + "lime_dye": 2, + "shears": 1 + }, + "2": { + "lime_dye": 1 + }, + "3": { + "lime_dye": 1 + }, + "4": { + "lime_dye": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_hopper_1_with_plan_missing_chest_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_brown_banner_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 2, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "brown_dye": 1, + "black_wool": 1 + }, + "2": { + "brown_dye": 1, + "black_wool": 1 + }, + "3": { + "brown_dye": 1, + "black_wool": 1 + }, + "4": { + "brown_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_horse_armor_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an leather_horse_armor", + "conversation": "Let's work together to craft an leather_horse_armor.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 3 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 1 + }, + "4": { + "leather": 1 + } + }, + "agent_count": 5, + "target": "leather_horse_armor", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 2, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 1, + "redstone": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 1 + } + }, + "agent_count": 5, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_ender_chest_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 1, + "ender_eye": 1 + }, + "1": { + "obsidian": 1 + }, + "2": { + "obsidian": 4 + }, + "3": { + "obsidian": 1 + }, + "4": { + "obsidian": 1 + } + }, + "agent_count": 5, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 1, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "gray_dye": 2, + "black_wool": 1 + }, + "2": { + "gray_dye": 1, + "black_wool": 1 + }, + "3": { + "gray_dye": 1, + "black_wool": 1 + }, + "4": { + "gray_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_ender_chest_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 1, + "ender_eye": 1 + }, + "1": { + "obsidian": 1 + }, + "2": { + "obsidian": 4 + }, + "3": { + "obsidian": 1 + }, + "4": { + "obsidian": 1 + } + }, + "agent_count": 5, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "2": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "3": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "4": { + "iron_ingot": 1, + "oak_planks": 4 + } + }, + "agent_count": 5, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_2_with_plan_missing_chest_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_hopper_minecart_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "chest": 1 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 2 + }, + "3": { + "iron_ingot": 2 + }, + "4": { + "iron_ingot": 2 + } + }, + "agent_count": 5, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_0_with_plan_missing_chest_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_lime_banner_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "lime_dye": 1, + "black_wool": 1 + }, + "2": { + "lime_dye": 2, + "black_wool": 1 + }, + "3": { + "lime_dye": 1, + "black_wool": 2 + }, + "4": { + "lime_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_horse_armor_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an leather_horse_armor", + "conversation": "Let's work together to craft an leather_horse_armor.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 3 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 1 + }, + "4": { + "leather": 1 + } + }, + "agent_count": 5, + "target": "leather_horse_armor", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 1, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "gray_dye": 2, + "black_wool": 1 + }, + "2": { + "gray_dye": 1, + "black_wool": 1 + }, + "3": { + "gray_dye": 1, + "black_wool": 1 + }, + "4": { + "gray_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_2_with_plan_missing_redstone_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "stick": 1 + }, + "1": { + "gold_ingot": 2, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 1 + } + }, + "agent_count": 5, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_hopper_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "2": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "3": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "4": { + "iron_ingot": 1, + "oak_planks": 4 + } + }, + "agent_count": 5, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_3_with_plan_missing_chest_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_powered_rail_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 2, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 1, + "redstone": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 1 + } + }, + "agent_count": 5, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "stick": 1 + }, + "1": { + "gold_ingot": 1, + "redstone": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 2 + } + }, + "agent_count": 5, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_2_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 1, + "oak_planks": 2 + }, + "1": { + "lime_dye": 2, + "shears": 1 + }, + "2": { + "lime_dye": 1 + }, + "3": { + "lime_dye": 1 + }, + "4": { + "lime_dye": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_ender_chest_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 1, + "ender_eye": 1 + }, + "1": { + "obsidian": 1 + }, + "2": { + "obsidian": 4 + }, + "3": { + "obsidian": 1 + }, + "4": { + "obsidian": 1 + } + }, + "agent_count": 5, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_0_with_plan_missing_chest_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 2 + }, + "3": { + "iron_ingot": 2 + }, + "4": { + "iron_ingot": 2 + } + }, + "agent_count": 5, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_lime_banner_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_wool": 1, + "stick": 1 + }, + "1": { + "lime_wool": 1 + }, + "2": { + "lime_wool": 1 + }, + "3": { + "lime_wool": 2 + }, + "4": { + "lime_wool": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "lime_dye": 1, + "black_wool": 1 + }, + "2": { + "lime_dye": 2, + "black_wool": 1 + }, + "3": { + "lime_dye": 1, + "black_wool": 2 + }, + "4": { + "lime_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "chest": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_3_with_plan_missing_chest_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 2 + }, + "3": { + "iron_ingot": 2 + }, + "4": { + "iron_ingot": 2 + } + }, + "agent_count": 5, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_powered_rail_3_with_plan_missing_redstone_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "stick": 1 + }, + "1": { + "gold_ingot": 2, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 1 + } + }, + "agent_count": 5, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_powered_rail_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 2, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 1, + "redstone": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 1 + } + }, + "agent_count": 5, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "chest": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_0_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 1, + "oak_planks": 2 + }, + "1": { + "lime_dye": 2, + "shears": 1 + }, + "2": { + "lime_dye": 1 + }, + "3": { + "lime_dye": 1 + }, + "4": { + "lime_dye": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_powered_rail_1_with_plan_missing_redstone_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "stick": 1 + }, + "1": { + "gold_ingot": 2, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 1 + } + }, + "agent_count": 5, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_ender_chest_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 1, + "ender_pearl": 1 + }, + "1": { + "obsidian": 1, + "blaze_powder": 1 + }, + "2": { + "obsidian": 4 + }, + "3": { + "obsidian": 1 + }, + "4": { + "obsidian": 1 + } + }, + "agent_count": 5, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_wool": 1, + "stick": 1 + }, + "1": { + "lime_wool": 1 + }, + "2": { + "lime_wool": 1 + }, + "3": { + "lime_wool": 2 + }, + "4": { + "lime_wool": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_0_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 1, + "oak_planks": 2 + }, + "1": { + "gray_dye": 1, + "shears": 1 + }, + "2": { + "gray_dye": 1 + }, + "3": { + "gray_dye": 1 + }, + "4": { + "gray_dye": 2 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lime_banner_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_wool": 1, + "stick": 1 + }, + "1": { + "lime_wool": 1 + }, + "2": { + "lime_wool": 1 + }, + "3": { + "lime_wool": 2 + }, + "4": { + "lime_wool": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_4_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 1, + "oak_planks": 2 + }, + "1": { + "gray_dye": 1, + "shears": 1 + }, + "2": { + "gray_dye": 1 + }, + "3": { + "gray_dye": 1 + }, + "4": { + "gray_dye": 2 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_ender_chest_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 1, + "ender_eye": 1 + }, + "1": { + "obsidian": 1 + }, + "2": { + "obsidian": 4 + }, + "3": { + "obsidian": 1 + }, + "4": { + "obsidian": 1 + } + }, + "agent_count": 5, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 2, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "brown_dye": 1, + "black_wool": 1 + }, + "2": { + "brown_dye": 1, + "black_wool": 1 + }, + "3": { + "brown_dye": 1, + "black_wool": 1 + }, + "4": { + "brown_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "chest": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_4_with_plan_missing_redstone_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 1, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 2 + }, + "4": { + "gold_ingot": 1 + } + }, + "agent_count": 5, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_gray_banner_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_wool": 1, + "stick": 1 + }, + "1": { + "gray_wool": 1 + }, + "2": { + "gray_wool": 1 + }, + "3": { + "gray_wool": 1 + }, + "4": { + "gray_wool": 2 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_1_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 1, + "oak_planks": 2 + }, + "1": { + "gray_dye": 1, + "shears": 1 + }, + "2": { + "gray_dye": 1 + }, + "3": { + "gray_dye": 1 + }, + "4": { + "gray_dye": 2 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_powered_rail_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "stick": 1 + }, + "1": { + "gold_ingot": 1, + "redstone": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 2 + } + }, + "agent_count": 5, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 2, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 1, + "redstone": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 1 + } + }, + "agent_count": 5, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_wool": 1, + "stick": 1 + }, + "1": { + "brown_wool": 1 + }, + "2": { + "brown_wool": 1 + }, + "3": { + "brown_wool": 2 + }, + "4": { + "brown_wool": 1 + } + }, + "agent_count": 5, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_0_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 1, + "oak_planks": 2 + }, + "1": { + "brown_dye": 1, + "shears": 1 + }, + "2": { + "brown_dye": 1 + }, + "3": { + "brown_dye": 1 + }, + "4": { + "brown_dye": 2 + } + }, + "agent_count": 5, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_gray_banner_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_wool": 1, + "stick": 1 + }, + "1": { + "gray_wool": 1 + }, + "2": { + "gray_wool": 1 + }, + "3": { + "gray_wool": 1 + }, + "4": { + "gray_wool": 2 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_1_with_plan_missing_chest_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 2 + }, + "3": { + "iron_ingot": 2 + }, + "4": { + "iron_ingot": 2 + } + }, + "agent_count": 5, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_lime_banner_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_wool": 1, + "stick": 1 + }, + "1": { + "lime_wool": 1 + }, + "2": { + "lime_wool": 1 + }, + "3": { + "lime_wool": 2 + }, + "4": { + "lime_wool": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_1_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 1, + "oak_planks": 2 + }, + "1": { + "lime_dye": 2, + "shears": 1 + }, + "2": { + "lime_dye": 1 + }, + "3": { + "lime_dye": 1 + }, + "4": { + "lime_dye": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_hopper_4_with_plan_missing_chest_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_powered_rail_1_with_plan_missing_redstone_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 1, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 2 + }, + "4": { + "gold_ingot": 1 + } + }, + "agent_count": 5, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_brown_banner_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_wool": 1, + "stick": 1 + }, + "1": { + "brown_wool": 1 + }, + "2": { + "brown_wool": 1 + }, + "3": { + "brown_wool": 2 + }, + "4": { + "brown_wool": 1 + } + }, + "agent_count": 5, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_ender_chest_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 1, + "ender_pearl": 1 + }, + "1": { + "obsidian": 1, + "blaze_powder": 1 + }, + "2": { + "obsidian": 4 + }, + "3": { + "obsidian": 1 + }, + "4": { + "obsidian": 1 + } + }, + "agent_count": 5, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_wool": 1, + "stick": 1 + }, + "1": { + "brown_wool": 1 + }, + "2": { + "brown_wool": 1 + }, + "3": { + "brown_wool": 2 + }, + "4": { + "brown_wool": 1 + } + }, + "agent_count": 5, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "chest": 1 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 2 + }, + "3": { + "iron_ingot": 2 + }, + "4": { + "iron_ingot": 2 + } + }, + "agent_count": 5, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_wool": 1, + "stick": 1 + }, + "1": { + "gray_wool": 1 + }, + "2": { + "gray_wool": 1 + }, + "3": { + "gray_wool": 1 + }, + "4": { + "gray_wool": 2 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_4_with_plan_missing_chest_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 2 + }, + "3": { + "iron_ingot": 2 + }, + "4": { + "iron_ingot": 2 + } + }, + "agent_count": 5, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_brown_banner_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_wool": 1, + "stick": 1 + }, + "1": { + "brown_wool": 1 + }, + "2": { + "brown_wool": 1 + }, + "3": { + "brown_wool": 2 + }, + "4": { + "brown_wool": 1 + } + }, + "agent_count": 5, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_2_with_plan_missing_chest_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 2 + }, + "3": { + "iron_ingot": 2 + }, + "4": { + "iron_ingot": 2 + } + }, + "agent_count": 5, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_gray_banner_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_wool": 1, + "stick": 1 + }, + "1": { + "gray_wool": 1 + }, + "2": { + "gray_wool": 1 + }, + "3": { + "gray_wool": 1 + }, + "4": { + "gray_wool": 2 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_1_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 1, + "oak_planks": 2 + }, + "1": { + "brown_dye": 1, + "shears": 1 + }, + "2": { + "brown_dye": 1 + }, + "3": { + "brown_dye": 1 + }, + "4": { + "brown_dye": 2 + } + }, + "agent_count": 5, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_leather_horse_armor_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an leather_horse_armor", + "conversation": "Let's work together to craft an leather_horse_armor.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 3 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 1 + }, + "4": { + "leather": 1 + } + }, + "agent_count": 5, + "target": "leather_horse_armor", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "lime_dye": 1, + "black_wool": 1 + }, + "2": { + "lime_dye": 2, + "black_wool": 1 + }, + "3": { + "lime_dye": 1, + "black_wool": 2 + }, + "4": { + "lime_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_wool": 1, + "stick": 1 + }, + "1": { + "gray_wool": 1 + }, + "2": { + "gray_wool": 1 + }, + "3": { + "gray_wool": 1 + }, + "4": { + "gray_wool": 2 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_4_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 1, + "oak_planks": 2 + }, + "1": { + "brown_dye": 1, + "shears": 1 + }, + "2": { + "brown_dye": 1 + }, + "3": { + "brown_dye": 1 + }, + "4": { + "brown_dye": 2 + } + }, + "agent_count": 5, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_hopper_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "chest": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_3_with_plan_missing_redstone_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 1, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 2 + }, + "4": { + "gold_ingot": 1 + } + }, + "agent_count": 5, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_powered_rail_0_with_plan_missing_redstone_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "stick": 1 + }, + "1": { + "gold_ingot": 2, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 1 + } + }, + "agent_count": 5, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_ender_chest_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 1, + "ender_pearl": 1 + }, + "1": { + "obsidian": 1, + "blaze_powder": 1 + }, + "2": { + "obsidian": 4 + }, + "3": { + "obsidian": 1 + }, + "4": { + "obsidian": 1 + } + }, + "agent_count": 5, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_horse_armor_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an leather_horse_armor", + "conversation": "Let's work together to craft an leather_horse_armor.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 3 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 1 + }, + "4": { + "leather": 1 + } + }, + "agent_count": 5, + "target": "leather_horse_armor", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_4_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 1, + "oak_planks": 2 + }, + "1": { + "lime_dye": 2, + "shears": 1 + }, + "2": { + "lime_dye": 1 + }, + "3": { + "lime_dye": 1 + }, + "4": { + "lime_dye": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_powered_rail_4_with_plan_missing_redstone_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "stick": 1 + }, + "1": { + "gold_ingot": 2, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 1 + } + }, + "agent_count": 5, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_brown_banner_2_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 1, + "oak_planks": 2 + }, + "1": { + "brown_dye": 1, + "shears": 1 + }, + "2": { + "brown_dye": 1 + }, + "3": { + "brown_dye": 1 + }, + "4": { + "brown_dye": 2 + } + }, + "agent_count": 5, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_brown_banner_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 2, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "brown_dye": 1, + "black_wool": 1 + }, + "2": { + "brown_dye": 1, + "black_wool": 1 + }, + "3": { + "brown_dye": 1, + "black_wool": 1 + }, + "4": { + "brown_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_3_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 1, + "oak_planks": 2 + }, + "1": { + "gray_dye": 1, + "shears": 1 + }, + "2": { + "gray_dye": 1 + }, + "3": { + "gray_dye": 1 + }, + "4": { + "gray_dye": 2 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_gray_banner_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "gray_dye": 1, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "gray_dye": 2, + "black_wool": 1 + }, + "2": { + "gray_dye": 1, + "black_wool": 1 + }, + "3": { + "gray_dye": 1, + "black_wool": 1 + }, + "4": { + "gray_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "lime_dye": 1, + "black_wool": 1 + }, + "2": { + "lime_dye": 2, + "black_wool": 1 + }, + "3": { + "lime_dye": 1, + "black_wool": 2 + }, + "4": { + "lime_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "chest": 1 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 2 + }, + "3": { + "iron_ingot": 2 + }, + "4": { + "iron_ingot": 2 + } + }, + "agent_count": 5, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 2, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "brown_dye": 1, + "black_wool": 1 + }, + "2": { + "brown_dye": 1, + "black_wool": 1 + }, + "3": { + "brown_dye": 1, + "black_wool": 1 + }, + "4": { + "brown_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "chest": 1 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 2 + }, + "3": { + "iron_ingot": 2 + }, + "4": { + "iron_ingot": 2 + } + }, + "agent_count": 5, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_ender_chest_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 1, + "ender_pearl": 1 + }, + "1": { + "obsidian": 1, + "blaze_powder": 1 + }, + "2": { + "obsidian": 4 + }, + "3": { + "obsidian": 1 + }, + "4": { + "obsidian": 1 + } + }, + "agent_count": 5, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_3_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 1, + "oak_planks": 2 + }, + "1": { + "brown_dye": 1, + "shears": 1 + }, + "2": { + "brown_dye": 1 + }, + "3": { + "brown_dye": 1 + }, + "4": { + "brown_dye": 2 + } + }, + "agent_count": 5, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_powered_rail_0_with_plan_missing_redstone_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 1, + "diamond_pickaxe": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 2 + }, + "4": { + "gold_ingot": 1 + } + }, + "agent_count": 5, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_ender_chest_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an ender_chest", + "conversation": "Let's work together to craft an ender_chest.", + "initial_inventory": { + "0": { + "obsidian": 1, + "ender_pearl": 1 + }, + "1": { + "obsidian": 1, + "blaze_powder": 1 + }, + "2": { + "obsidian": 4 + }, + "3": { + "obsidian": 1 + }, + "4": { + "obsidian": 1 + } + }, + "agent_count": 5, + "target": "ender_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_banner_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an brown_banner", + "conversation": "Let's work together to craft an brown_banner.", + "initial_inventory": { + "0": { + "brown_dye": 2, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "brown_dye": 1, + "black_wool": 1 + }, + "2": { + "brown_dye": 1, + "black_wool": 1 + }, + "3": { + "brown_dye": 1, + "black_wool": 1 + }, + "4": { + "brown_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "brown_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper", + "conversation": "Let's work together to craft an hopper.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "2": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "3": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "4": { + "iron_ingot": 1, + "oak_planks": 4 + } + }, + "agent_count": 5, + "target": "hopper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_powered_rail_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an powered_rail", + "conversation": "Let's work together to craft an powered_rail.", + "initial_inventory": { + "0": { + "gold_ingot": 2, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 1, + "redstone": 1 + }, + "2": { + "gold_ingot": 1 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 1 + } + }, + "agent_count": 5, + "target": "powered_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "lime_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "lime_dye": 1, + "black_wool": 1 + }, + "2": { + "lime_dye": 2, + "black_wool": 1 + }, + "3": { + "lime_dye": 1, + "black_wool": 2 + }, + "4": { + "lime_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_0_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "black_dye": 3, + "black_wool": 1 + }, + "1": { + "white_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_1_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "black_dye": 3, + "black_wool": 1 + }, + "1": { + "white_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_2_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "black_dye": 3, + "black_wool": 1 + }, + "1": { + "white_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_3_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "black_dye": 3, + "black_wool": 1 + }, + "1": { + "white_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_4_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "black_dye": 3, + "black_wool": 1 + }, + "1": { + "white_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_0_with_plan__depth_3_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "ink_sac": 3, + "black_wool": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 2, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_1_with_plan__depth_3_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "ink_sac": 3, + "black_wool": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 2, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_2_with_plan__depth_3_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "ink_sac": 3, + "black_wool": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 2, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_3_with_plan__depth_3_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "ink_sac": 3, + "black_wool": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 2, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_banner_4_with_plan__depth_3_num_agents_5": { + "goal": "Collaborate with other agents to craft an gray_banner", + "conversation": "Let's work together to craft an gray_banner.", + "initial_inventory": { + "0": { + "ink_sac": 3, + "black_wool": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 2, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_0_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 3, + "black_wool": 1 + }, + "1": { + "white_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 2, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_1_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 3, + "black_wool": 1 + }, + "1": { + "white_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 2, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_2_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 3, + "black_wool": 1 + }, + "1": { + "white_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 2, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_3_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 3, + "black_wool": 1 + }, + "1": { + "white_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 2, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_4_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 3, + "black_wool": 1 + }, + "1": { + "white_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 2, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_0_with_plan__depth_3_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 3, + "black_wool": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 2, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_1_with_plan__depth_3_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 3, + "black_wool": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 2, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_2_with_plan__depth_3_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 3, + "black_wool": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 2, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_3_with_plan__depth_3_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 3, + "black_wool": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 2, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lime_banner_4_with_plan__depth_3_num_agents_5": { + "goal": "Collaborate with other agents to craft an lime_banner", + "conversation": "Let's work together to craft an lime_banner.", + "initial_inventory": { + "0": { + "green_dye": 3, + "black_wool": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 2, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "lime_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 4, + "depth": 3, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_0_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "oak_planks": 1 + }, + "1": { + "iron_ingot": 2, + "oak_planks": 1 + }, + "2": { + "iron_ingot": 2, + "oak_planks": 1 + }, + "3": { + "iron_ingot": 2, + "oak_planks": 4 + }, + "4": { + "iron_ingot": 2, + "oak_planks": 1 + } + }, + "agent_count": 5, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_1_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "oak_planks": 1 + }, + "1": { + "iron_ingot": 2, + "oak_planks": 1 + }, + "2": { + "iron_ingot": 2, + "oak_planks": 1 + }, + "3": { + "iron_ingot": 2, + "oak_planks": 4 + }, + "4": { + "iron_ingot": 2, + "oak_planks": 1 + } + }, + "agent_count": 5, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_2_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "oak_planks": 1 + }, + "1": { + "iron_ingot": 2, + "oak_planks": 1 + }, + "2": { + "iron_ingot": 2, + "oak_planks": 1 + }, + "3": { + "iron_ingot": 2, + "oak_planks": 4 + }, + "4": { + "iron_ingot": 2, + "oak_planks": 1 + } + }, + "agent_count": 5, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_3_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "oak_planks": 1 + }, + "1": { + "iron_ingot": 2, + "oak_planks": 1 + }, + "2": { + "iron_ingot": 2, + "oak_planks": 1 + }, + "3": { + "iron_ingot": 2, + "oak_planks": 4 + }, + "4": { + "iron_ingot": 2, + "oak_planks": 1 + } + }, + "agent_count": 5, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_hopper_minecart_4_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an hopper_minecart", + "conversation": "Let's work together to craft an hopper_minecart.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "oak_planks": 1 + }, + "1": { + "iron_ingot": 2, + "oak_planks": 1 + }, + "2": { + "iron_ingot": 2, + "oak_planks": 1 + }, + "3": { + "iron_ingot": 2, + "oak_planks": 4 + }, + "4": { + "iron_ingot": 2, + "oak_planks": 1 + } + }, + "agent_count": 5, + "target": "hopper_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/dev_tasks/tasks_5_agents_stats.txt b/tasks/crafting_tasks/dev_tasks/tasks_5_agents_stats.txt new file mode 100644 index 0000000..4ed5ccf --- /dev/null +++ b/tasks/crafting_tasks/dev_tasks/tasks_5_agents_stats.txt @@ -0,0 +1,15 @@ +{ + "num_tasks": 131, + "avg_depth": 2.8461538461538463, + "std_depth": 0.9880948137434719, + "num_tasks_based_depth": { + "0": 45, + "1": 60, + "2": 15, + "3": 10 + }, + "num_missing_resources": { + "0": 95, + "1": 35 + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/test_tasks/tasks_2_agents.json b/tasks/crafting_tasks/test_tasks/tasks_2_agents.json new file mode 100644 index 0000000..69eb4b6 --- /dev/null +++ b/tasks/crafting_tasks/test_tasks/tasks_2_agents.json @@ -0,0 +1,5516 @@ +{ + "multiagent_crafting_leather_leggings_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an leather_leggings", + "conversation": "Let's work together to craft an leather_leggings.", + "initial_inventory": { + "0": { + "leather": 3 + }, + "1": { + "leather": 4 + } + }, + "agent_count": 2, + "target": "leather_leggings", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_0_with_plan__depth_1_num_agents_2": { + "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": 3, + "oak_planks": 1 + }, + "1": { + "white_dye": 3, + "black_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_smoker_0_with_plan_missing_furnace_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an smoker", + "conversation": "Let's work together to craft an smoker.", + "initial_inventory": { + "0": { + "dark_oak_log": 2 + }, + "1": { + "dark_oak_log": 2 + } + }, + "agent_count": 2, + "target": "smoker", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "furnace" + ] + }, + "multiagent_crafting_cyan_wool_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_wool", + "conversation": "Let's work together to craft an cyan_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "shears": 1 + }, + "1": { + "green_dye": 1 + } + }, + "agent_count": 2, + "target": "cyan_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_spectral_arrow_1_with_plan__depth_0_num_agents_2": { + "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": 2, + "arrow": 1 + }, + "1": { + "glowstone_dust": 2 + } + }, + "agent_count": 2, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_granite_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_granite", + "conversation": "Let's work together to craft an polished_granite.", + "initial_inventory": { + "0": { + "diorite": 2, + "quartz": 2 + }, + "1": { + "diorite": 2, + "quartz": 2 + } + }, + "agent_count": 2, + "target": "polished_granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_granite_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an granite", + "conversation": "Let's work together to craft an granite.", + "initial_inventory": { + "0": { + "diorite": 1 + }, + "1": { + "quartz": 1 + } + }, + "agent_count": 2, + "target": "granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_wool_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_wool", + "conversation": "Let's work together to craft an cyan_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "shears": 1 + }, + "1": { + "green_dye": 1 + } + }, + "agent_count": 2, + "target": "cyan_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_pink_wool_1_with_plan__depth_0_num_agents_2": { + "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": 2, + "target": "pink_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_1_with_plan__depth_1_num_agents_2": { + "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": 3, + "oak_planks": 1 + }, + "1": { + "white_dye": 3, + "black_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chest_minecart_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an chest_minecart", + "conversation": "Let's work together to craft an chest_minecart.", + "initial_inventory": { + "0": { + "chest": 1 + }, + "1": { + "minecart": 1 + } + }, + "agent_count": 2, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 3, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "pink_dye": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_pink_banner_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_wool": 3, + "stick": 1 + }, + "1": { + "pink_wool": 3 + } + }, + "agent_count": 2, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brush_0_with_plan_missing_copper_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an brush", + "conversation": "Let's work together to craft an brush.", + "initial_inventory": { + "0": { + "feather": 1, + "oak_planks": 1 + }, + "1": { + "oak_planks": 1, + "iron_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "brush", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "copper_ingot" + ] + }, + "multiagent_crafting_light_gray_wool_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an light_gray_wool", + "conversation": "Let's work together to craft an light_gray_wool.", + "initial_inventory": { + "0": { + "light_gray_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "light_gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_wool_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "black_dye": 1, + "black_wool": 1 + }, + "1": { + "white_dye": 1 + } + }, + "agent_count": 2, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_wool_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an brown_wool", + "conversation": "Let's work together to craft an brown_wool.", + "initial_inventory": { + "0": { + "brown_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "brown_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_wool_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "black_dye": 1, + "shears": 1 + }, + "1": { + "white_dye": 1 + } + }, + "agent_count": 2, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_bookshelf_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an bookshelf", + "conversation": "Let's work together to craft an bookshelf.", + "initial_inventory": { + "0": { + "oak_planks": 3, + "book": 1 + }, + "1": { + "oak_planks": 3, + "book": 2 + } + }, + "agent_count": 2, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 3, + "black_wool": 3, + "oak_planks": 1 + }, + "1": { + "red_dye": 3, + "black_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_soul_campfire_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an soul_campfire", + "conversation": "Let's work together to craft an soul_campfire.", + "initial_inventory": { + "0": { + "stick": 1, + "soul_sand": 1, + "dark_oak_log": 2 + }, + "1": { + "stick": 2, + "dark_oak_log": 1 + } + }, + "agent_count": 2, + "target": "soul_campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_wool_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "black_dye": 1, + "black_wool": 1 + }, + "1": { + "white_dye": 1 + } + }, + "agent_count": 2, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_gray_wool_1_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an light_gray_wool", + "conversation": "Let's work together to craft an light_gray_wool.", + "initial_inventory": { + "0": { + "light_gray_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "light_gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_pink_banner_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 3, + "black_wool": 3, + "oak_planks": 1 + }, + "1": { + "pink_dye": 3, + "black_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_wool_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_wool", + "conversation": "Let's work together to craft an cyan_wool.", + "initial_inventory": { + "0": { + "cyan_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "cyan_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_bed_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_bed", + "conversation": "Let's work together to craft an cyan_bed.", + "initial_inventory": { + "0": { + "cyan_dye": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "cyan_dye": 2, + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_wool_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_wool", + "conversation": "Let's work together to craft an cyan_wool.", + "initial_inventory": { + "0": { + "cyan_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "cyan_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_bed_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an magenta_bed", + "conversation": "Let's work together to craft an magenta_bed.", + "initial_inventory": { + "0": { + "allium": 1, + "oak_planks": 2 + }, + "1": { + "oak_planks": 1, + "shears": 1 + } + }, + "agent_count": 2, + "target": "magenta_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_yellow_wool_1_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an yellow_wool", + "conversation": "Let's work together to craft an yellow_wool.", + "initial_inventory": { + "0": { + "yellow_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "yellow_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_gray_wool_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "black_dye": 1, + "shears": 1 + }, + "1": { + "white_dye": 1 + } + }, + "agent_count": 2, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_gray_wool_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "gray_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 3, + "black_wool": 3, + "oak_planks": 1 + }, + "1": { + "pink_dye": 3, + "black_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_dye_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_dye", + "conversation": "Let's work together to craft an purple_dye.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "red_dye": 1 + } + }, + "agent_count": 2, + "target": "purple_dye", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "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": 3, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "cyan_dye": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_banner_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_wool": 3, + "stick": 1 + }, + "1": { + "cyan_wool": 3 + } + }, + "agent_count": 2, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brush_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an brush", + "conversation": "Let's work together to craft an brush.", + "initial_inventory": { + "0": { + "feather": 1, + "oak_planks": 1 + }, + "1": { + "copper_ingot": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "brush", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_carrot_on_a_stick_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an carrot_on_a_stick", + "conversation": "Let's work together to craft an carrot_on_a_stick.", + "initial_inventory": { + "0": { + "fishing_rod": 1 + }, + "1": { + "carrot": 1 + } + }, + "agent_count": 2, + "target": "carrot_on_a_stick", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_painting_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an painting", + "conversation": "Let's work together to craft an painting.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "white_dye": 1 + }, + "1": { + "oak_planks": 2, + "shears": 1 + } + }, + "agent_count": 2, + "target": "painting", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_bed_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_bed", + "conversation": "Let's work together to craft an cyan_bed.", + "initial_inventory": { + "0": { + "cyan_wool": 2, + "oak_planks": 1 + }, + "1": { + "cyan_wool": 1, + "oak_planks": 2 + } + }, + "agent_count": 2, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_soul_campfire_0_with_plan__depth_1_num_agents_2": { + "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": 1, + "soul_sand": 1, + "dark_oak_log": 1 + }, + "1": { + "oak_planks": 1, + "dark_oak_log": 2 + } + }, + "agent_count": 2, + "target": "soul_campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_wool_0_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_wool", + "conversation": "Let's work together to craft an red_wool.", + "initial_inventory": { + "0": { + "red_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "red_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_red_banner_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 3, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "red_dye": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_quartz_bricks_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an quartz_bricks", + "conversation": "Let's work together to craft an quartz_bricks.", + "initial_inventory": { + "0": { + "quartz_block": 2 + }, + "1": { + "quartz_block": 2 + } + }, + "agent_count": 2, + "target": "quartz_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chest_minecart_1_with_plan_missing_iron_ingot_depth_1_num_agents_2": { + "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": 4, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 4, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_pink_wool_0_with_plan_missing_black_wool_depth_0_num_agents_2": { + "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": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "pink_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_bed_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_bed", + "conversation": "Let's work together to craft an cyan_bed.", + "initial_inventory": { + "0": { + "cyan_dye": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "cyan_dye": 2, + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_granite_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_granite", + "conversation": "Let's work together to craft an polished_granite.", + "initial_inventory": { + "0": { + "granite": 2 + }, + "1": { + "granite": 2 + } + }, + "agent_count": 2, + "target": "polished_granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_0_with_plan__depth_1_num_agents_2": { + "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": 3, + "oak_planks": 1 + }, + "1": { + "black_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_carrot_on_a_stick_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an carrot_on_a_stick", + "conversation": "Let's work together to craft an carrot_on_a_stick.", + "initial_inventory": { + "0": { + "fishing_rod": 1 + }, + "1": { + "carrot": 1 + } + }, + "agent_count": 2, + "target": "carrot_on_a_stick", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_golden_shovel_1_with_plan_missing_gold_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an golden_shovel", + "conversation": "Let's work together to craft an golden_shovel.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "iron_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "golden_shovel", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_white_banner_1_with_plan__depth_0_num_agents_2": { + "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": 3, + "stick": 1 + }, + "1": { + "white_wool": 3 + } + }, + "agent_count": 2, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_1_with_plan__depth_1_num_agents_2": { + "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": 3, + "black_wool": 3, + "oak_planks": 1 + }, + "1": { + "cyan_dye": 3, + "black_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_dye_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_dye", + "conversation": "Let's work together to craft an purple_dye.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "red_dye": 1 + } + }, + "agent_count": 2, + "target": "purple_dye", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_planks": 4, + "book": 2 + }, + "1": { + "oak_planks": 5, + "book": 1 + } + }, + "agent_count": 2, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_gray_wool_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an light_gray_wool", + "conversation": "Let's work together to craft an light_gray_wool.", + "initial_inventory": { + "0": { + "light_gray_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "light_gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_1_with_plan_missing_glass_depth_1_num_agents_2": { + "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": { + "blue_dye": 1 + }, + "1": { + "green_dye": 1 + } + }, + "agent_count": 2, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "glass" + ] + }, + "multiagent_crafting_yellow_wool_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an yellow_wool", + "conversation": "Let's work together to craft an yellow_wool.", + "initial_inventory": { + "0": { + "yellow_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "yellow_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_bed_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_bed", + "conversation": "Let's work together to craft an cyan_bed.", + "initial_inventory": { + "0": { + "cyan_dye": 2, + "oak_log": 1 + }, + "1": { + "cyan_dye": 1, + "shears": 1 + } + }, + "agent_count": 2, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_tnt_minecart_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an tnt_minecart", + "conversation": "Let's work together to craft an tnt_minecart.", + "initial_inventory": { + "0": { + "tnt": 1 + }, + "1": { + "minecart": 1 + } + }, + "agent_count": 2, + "target": "tnt_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_painting_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an painting", + "conversation": "Let's work together to craft an painting.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "white_dye": 1 + }, + "1": { + "oak_planks": 2, + "shears": 1 + } + }, + "agent_count": 2, + "target": "painting", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_magenta_bed_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an magenta_bed", + "conversation": "Let's work together to craft an magenta_bed.", + "initial_inventory": { + "0": { + "magenta_dye": 1 + }, + "1": { + "black_bed": 1 + } + }, + "agent_count": 2, + "target": "magenta_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_0_with_plan__depth_1_num_agents_2": { + "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": 2, + "flint": 1, + "feather": 1 + }, + "1": { + "glowstone_dust": 2, + "stick": 1 + } + }, + "agent_count": 2, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_wool_0_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_wool", + "conversation": "Let's work together to craft an cyan_wool.", + "initial_inventory": { + "0": { + "cyan_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "cyan_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_soul_campfire_1_with_plan__depth_1_num_agents_2": { + "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": 1, + "soul_sand": 1, + "dark_oak_log": 1 + }, + "1": { + "oak_planks": 1, + "dark_oak_log": 2 + } + }, + "agent_count": 2, + "target": "soul_campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_wool_0_with_plan__depth_0_num_agents_2": { + "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": 2, + "target": "pink_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_warped_fungus_on_a_stick_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an warped_fungus_on_a_stick", + "conversation": "Let's work together to craft an warped_fungus_on_a_stick.", + "initial_inventory": { + "0": { + "stick": 1, + "string": 1, + "warped_fungus": 1 + }, + "1": { + "stick": 2, + "string": 1 + } + }, + "agent_count": 2, + "target": "warped_fungus_on_a_stick", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_dye_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_dye", + "conversation": "Let's work together to craft an gray_dye.", + "initial_inventory": { + "0": { + "black_dye": 1 + }, + "1": { + "white_dye": 1 + } + }, + "agent_count": 2, + "target": "gray_dye", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_bed_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an magenta_bed", + "conversation": "Let's work together to craft an magenta_bed.", + "initial_inventory": { + "0": { + "allium": 1, + "black_wool": 1, + "oak_planks": 1 + }, + "1": { + "black_wool": 2, + "oak_planks": 2 + } + }, + "agent_count": 2, + "target": "magenta_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_barrel_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an barrel", + "conversation": "Let's work together to craft an barrel.", + "initial_inventory": { + "0": { + "oak_planks": 3, + "oak_slab": 1 + }, + "1": { + "oak_planks": 3, + "oak_slab": 1 + } + }, + "agent_count": 2, + "target": "barrel", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 3, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "pink_dye": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_magenta_bed_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an magenta_bed", + "conversation": "Let's work together to craft an magenta_bed.", + "initial_inventory": { + "0": { + "magenta_dye": 1 + }, + "1": { + "black_bed": 1 + } + }, + "agent_count": 2, + "target": "magenta_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_dye_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_dye", + "conversation": "Let's work together to craft an gray_dye.", + "initial_inventory": { + "0": { + "ink_sac": 1 + }, + "1": { + "bone_meal": 1 + } + }, + "agent_count": 2, + "target": "gray_dye", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cut_red_sandstone_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cut_red_sandstone", + "conversation": "Let's work together to craft an cut_red_sandstone.", + "initial_inventory": { + "0": { + "red_sandstone": 2 + }, + "1": { + "red_sandstone": 2 + } + }, + "agent_count": 2, + "target": "cut_red_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_0_with_plan__depth_1_num_agents_2": { + "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": 4, + "blue_dye": 1 + }, + "1": { + "glass": 4, + "green_dye": 1 + } + }, + "agent_count": 2, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_0_with_plan__depth_0_num_agents_2": { + "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": 2, + "arrow": 1 + }, + "1": { + "glowstone_dust": 2 + } + }, + "agent_count": 2, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "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, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "white_dye": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_black_banner_1_with_plan__depth_0_num_agents_2": { + "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": 3, + "stick": 1 + }, + "1": { + "black_wool": 3 + } + }, + "agent_count": 2, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brush_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an brush", + "conversation": "Let's work together to craft an brush.", + "initial_inventory": { + "0": { + "feather": 1, + "oak_planks": 1 + }, + "1": { + "copper_ingot": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "brush", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_wool_0_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "gray_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_stained_glass_1_with_plan__depth_1_num_agents_2": { + "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": 4, + "blue_dye": 1 + }, + "1": { + "glass": 4, + "green_dye": 1 + } + }, + "agent_count": 2, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_golden_shovel_0_with_plan_missing_gold_ingot_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an golden_shovel", + "conversation": "Let's work together to craft an golden_shovel.", + "initial_inventory": { + "0": { + "stick": 1, + "iron_pickaxe": 1 + }, + "1": { + "stick": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "golden_shovel", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_cyan_wool_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_wool", + "conversation": "Let's work together to craft an cyan_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "black_wool": 1 + }, + "1": { + "green_dye": 1 + } + }, + "agent_count": 2, + "target": "cyan_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brush_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an brush", + "conversation": "Let's work together to craft an brush.", + "initial_inventory": { + "0": { + "feather": 1, + "stick": 1 + }, + "1": { + "copper_ingot": 1 + } + }, + "agent_count": 2, + "target": "brush", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_1_with_plan__depth_1_num_agents_2": { + "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": 3, + "oak_planks": 1 + }, + "1": { + "black_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bookshelf_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an bookshelf", + "conversation": "Let's work together to craft an bookshelf.", + "initial_inventory": { + "0": { + "oak_planks": 3, + "book": 1 + }, + "1": { + "oak_planks": 3, + "book": 2 + } + }, + "agent_count": 2, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_polished_blackstone_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an chiseled_polished_blackstone", + "conversation": "Let's work together to craft an chiseled_polished_blackstone.", + "initial_inventory": { + "0": { + "polished_blackstone": 1 + }, + "1": { + "polished_blackstone": 2 + } + }, + "agent_count": 2, + "target": "chiseled_polished_blackstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_smoker_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an smoker", + "conversation": "Let's work together to craft an smoker.", + "initial_inventory": { + "0": { + "dark_oak_log": 2, + "furnace": 1 + }, + "1": { + "dark_oak_log": 2 + } + }, + "agent_count": 2, + "target": "smoker", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brush_1_with_plan_missing_copper_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an brush", + "conversation": "Let's work together to craft an brush.", + "initial_inventory": { + "0": { + "feather": 1, + "oak_planks": 1 + }, + "1": { + "oak_planks": 1, + "iron_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "brush", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "copper_ingot" + ] + }, + "multiagent_crafting_cyan_bed_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_bed", + "conversation": "Let's work together to craft an cyan_bed.", + "initial_inventory": { + "0": { + "cyan_wool": 2, + "oak_planks": 1 + }, + "1": { + "cyan_wool": 1, + "oak_planks": 2 + } + }, + "agent_count": 2, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_polished_blackstone_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an chiseled_polished_blackstone", + "conversation": "Let's work together to craft an chiseled_polished_blackstone.", + "initial_inventory": { + "0": { + "polished_blackstone": 1 + }, + "1": { + "polished_blackstone": 2 + } + }, + "agent_count": 2, + "target": "chiseled_polished_blackstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_wool_0_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an brown_wool", + "conversation": "Let's work together to craft an brown_wool.", + "initial_inventory": { + "0": { + "brown_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "brown_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_spectral_arrow_1_with_plan__depth_1_num_agents_2": { + "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": 2, + "flint": 1, + "feather": 1 + }, + "1": { + "glowstone_dust": 2, + "stick": 1 + } + }, + "agent_count": 2, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_soul_campfire_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an soul_campfire", + "conversation": "Let's work together to craft an soul_campfire.", + "initial_inventory": { + "0": { + "stick": 1, + "soul_sand": 1, + "dark_oak_log": 2 + }, + "1": { + "stick": 2, + "dark_oak_log": 1 + } + }, + "agent_count": 2, + "target": "soul_campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_painting_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an painting", + "conversation": "Let's work together to craft an painting.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "white_dye": 1 + }, + "1": { + "oak_planks": 2, + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "painting", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_granite_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an granite", + "conversation": "Let's work together to craft an granite.", + "initial_inventory": { + "0": { + "diorite": 1 + }, + "1": { + "quartz": 1 + } + }, + "agent_count": 2, + "target": "granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_wool_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_wool", + "conversation": "Let's work together to craft an purple_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "shears": 1 + }, + "1": { + "red_dye": 1 + } + }, + "agent_count": 2, + "target": "purple_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_red_carpet_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_carpet", + "conversation": "Let's work together to craft an red_carpet.", + "initial_inventory": { + "0": { + "red_dye": 1 + }, + "1": { + "black_carpet": 1 + } + }, + "agent_count": 2, + "target": "red_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "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": 3, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "cyan_dye": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_warped_fungus_on_a_stick_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an warped_fungus_on_a_stick", + "conversation": "Let's work together to craft an warped_fungus_on_a_stick.", + "initial_inventory": { + "0": { + "fishing_rod": 1 + }, + "1": { + "warped_fungus": 1 + } + }, + "agent_count": 2, + "target": "warped_fungus_on_a_stick", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chest_minecart_0_with_plan_missing_iron_ingot_depth_1_num_agents_2": { + "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": 4, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 4, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_red_wool_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_wool", + "conversation": "Let's work together to craft an red_wool.", + "initial_inventory": { + "0": { + "red_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "red_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_0_with_plan_missing_glass_depth_1_num_agents_2": { + "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": { + "blue_dye": 1 + }, + "1": { + "green_dye": 1 + } + }, + "agent_count": 2, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "glass" + ] + }, + "multiagent_crafting_golden_shovel_1_with_plan_missing_gold_ingot_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an golden_shovel", + "conversation": "Let's work together to craft an golden_shovel.", + "initial_inventory": { + "0": { + "stick": 1, + "iron_pickaxe": 1 + }, + "1": { + "stick": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "golden_shovel", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_gray_dye_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_dye", + "conversation": "Let's work together to craft an gray_dye.", + "initial_inventory": { + "0": { + "ink_sac": 1 + }, + "1": { + "bone_meal": 1 + } + }, + "agent_count": 2, + "target": "gray_dye", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_1_with_plan__depth_0_num_agents_2": { + "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": 4, + "cyan_dye": 1 + }, + "1": { + "glass": 4 + } + }, + "agent_count": 2, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_bed_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an magenta_bed", + "conversation": "Let's work together to craft an magenta_bed.", + "initial_inventory": { + "0": { + "allium": 1, + "black_wool": 1, + "oak_planks": 1 + }, + "1": { + "black_wool": 2, + "oak_planks": 2 + } + }, + "agent_count": 2, + "target": "magenta_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dark_prismarine_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an dark_prismarine", + "conversation": "Let's work together to craft an dark_prismarine.", + "initial_inventory": { + "0": { + "prismarine_shard": 4, + "black_dye": 1 + }, + "1": { + "prismarine_shard": 4 + } + }, + "agent_count": 2, + "target": "dark_prismarine", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_carrot_on_a_stick_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an carrot_on_a_stick", + "conversation": "Let's work together to craft an carrot_on_a_stick.", + "initial_inventory": { + "0": { + "stick": 1, + "string": 1, + "carrot": 1 + }, + "1": { + "stick": 2, + "string": 1 + } + }, + "agent_count": 2, + "target": "carrot_on_a_stick", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chest_minecart_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an chest_minecart", + "conversation": "Let's work together to craft an chest_minecart.", + "initial_inventory": { + "0": { + "chest": 1 + }, + "1": { + "minecart": 1 + } + }, + "agent_count": 2, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_0_with_plan__depth_1_num_agents_2": { + "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": 3, + "oak_planks": 1 + }, + "1": { + "blue_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_wool_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "gray_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_granite_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_granite", + "conversation": "Let's work together to craft an polished_granite.", + "initial_inventory": { + "0": { + "diorite": 2, + "quartz": 2 + }, + "1": { + "diorite": 2, + "quartz": 2 + } + }, + "agent_count": 2, + "target": "polished_granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cartography_table_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cartography_table", + "conversation": "Let's work together to craft an cartography_table.", + "initial_inventory": { + "0": { + "paper": 1, + "oak_planks": 2 + }, + "1": { + "paper": 1, + "oak_planks": 2 + } + }, + "agent_count": 2, + "target": "cartography_table", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_warped_fungus_on_a_stick_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an warped_fungus_on_a_stick", + "conversation": "Let's work together to craft an warped_fungus_on_a_stick.", + "initial_inventory": { + "0": { + "stick": 1, + "string": 1, + "warped_fungus": 1 + }, + "1": { + "stick": 2, + "string": 1 + } + }, + "agent_count": 2, + "target": "warped_fungus_on_a_stick", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_tnt_minecart_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an tnt_minecart", + "conversation": "Let's work together to craft an tnt_minecart.", + "initial_inventory": { + "0": { + "tnt": 1 + }, + "1": { + "minecart": 1 + } + }, + "agent_count": 2, + "target": "tnt_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_1_with_plan__depth_1_num_agents_2": { + "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": 3, + "oak_planks": 1 + }, + "1": { + "blue_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_quartz_bricks_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an quartz_bricks", + "conversation": "Let's work together to craft an quartz_bricks.", + "initial_inventory": { + "0": { + "quartz_block": 2 + }, + "1": { + "quartz_block": 2 + } + }, + "agent_count": 2, + "target": "quartz_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_wool_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_wool", + "conversation": "Let's work together to craft an cyan_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "black_wool": 1 + }, + "1": { + "green_dye": 1 + } + }, + "agent_count": 2, + "target": "cyan_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_wool": 3, + "stick": 1 + }, + "1": { + "red_wool": 3 + } + }, + "agent_count": 2, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_0_with_plan__depth_1_num_agents_2": { + "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": 3, + "black_wool": 3, + "oak_planks": 1 + }, + "1": { + "cyan_dye": 3, + "black_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brush_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an brush", + "conversation": "Let's work together to craft an brush.", + "initial_inventory": { + "0": { + "feather": 1, + "stick": 1 + }, + "1": { + "copper_ingot": 1 + } + }, + "agent_count": 2, + "target": "brush", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "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, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "white_dye": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_stained_glass_0_with_plan__depth_0_num_agents_2": { + "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": 4, + "cyan_dye": 1 + }, + "1": { + "glass": 4 + } + }, + "agent_count": 2, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_bed_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_bed", + "conversation": "Let's work together to craft an cyan_bed.", + "initial_inventory": { + "0": { + "cyan_dye": 2, + "oak_log": 1 + }, + "1": { + "cyan_dye": 1, + "shears": 1 + } + }, + "agent_count": 2, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_banner_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_wool": 3, + "stick": 1 + }, + "1": { + "cyan_wool": 3 + } + }, + "agent_count": 2, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 3, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "red_dye": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_dye_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_dye", + "conversation": "Let's work together to craft an cyan_dye.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "green_dye": 1 + } + }, + "agent_count": 2, + "target": "cyan_dye", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bookshelf_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an bookshelf", + "conversation": "Let's work together to craft an bookshelf.", + "initial_inventory": { + "0": { + "oak_log": 1, + "paper": 5, + "leather": 1 + }, + "1": { + "oak_log": 1, + "paper": 4, + "leather": 2 + } + }, + "agent_count": 2, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_wool": 3, + "stick": 1 + }, + "1": { + "pink_wool": 3 + } + }, + "agent_count": 2, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_carrot_on_a_stick_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an carrot_on_a_stick", + "conversation": "Let's work together to craft an carrot_on_a_stick.", + "initial_inventory": { + "0": { + "stick": 1, + "string": 1, + "carrot": 1 + }, + "1": { + "stick": 2, + "string": 1 + } + }, + "agent_count": 2, + "target": "carrot_on_a_stick", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_gray_wool_0_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an light_gray_wool", + "conversation": "Let's work together to craft an light_gray_wool.", + "initial_inventory": { + "0": { + "light_gray_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "light_gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_magenta_bed_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an magenta_bed", + "conversation": "Let's work together to craft an magenta_bed.", + "initial_inventory": { + "0": { + "allium": 1, + "oak_planks": 2 + }, + "1": { + "oak_planks": 1, + "shears": 1 + } + }, + "agent_count": 2, + "target": "magenta_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_polished_granite_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_granite", + "conversation": "Let's work together to craft an polished_granite.", + "initial_inventory": { + "0": { + "granite": 2 + }, + "1": { + "granite": 2 + } + }, + "agent_count": 2, + "target": "polished_granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_golden_shovel_0_with_plan_missing_gold_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an golden_shovel", + "conversation": "Let's work together to craft an golden_shovel.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "iron_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "golden_shovel", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_barrel_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an barrel", + "conversation": "Let's work together to craft an barrel.", + "initial_inventory": { + "0": { + "oak_planks": 3, + "oak_slab": 1 + }, + "1": { + "oak_planks": 3, + "oak_slab": 1 + } + }, + "agent_count": 2, + "target": "barrel", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_wool_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_wool", + "conversation": "Let's work together to craft an purple_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "shears": 1 + }, + "1": { + "red_dye": 1 + } + }, + "agent_count": 2, + "target": "purple_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_red_wool_1_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_wool", + "conversation": "Let's work together to craft an red_wool.", + "initial_inventory": { + "0": { + "red_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "red_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_chest_minecart_1_with_plan__depth_1_num_agents_2": { + "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": 4, + "iron_ingot": 2 + }, + "1": { + "oak_planks": 4, + "iron_ingot": 3 + } + }, + "agent_count": 2, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_polished_blackstone_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an chiseled_polished_blackstone", + "conversation": "Let's work together to craft an chiseled_polished_blackstone.", + "initial_inventory": { + "0": { + "polished_blackstone_slab": 1 + }, + "1": { + "polished_blackstone_slab": 1 + } + }, + "agent_count": 2, + "target": "chiseled_polished_blackstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 3, + "black_wool": 3, + "oak_planks": 1 + }, + "1": { + "red_dye": 3, + "black_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_leggings_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an leather_leggings", + "conversation": "Let's work together to craft an leather_leggings.", + "initial_inventory": { + "0": { + "leather": 3 + }, + "1": { + "leather": 4 + } + }, + "agent_count": 2, + "target": "leather_leggings", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_planks": 4, + "book": 2 + }, + "1": { + "oak_planks": 5, + "book": 1 + } + }, + "agent_count": 2, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_wool": 3, + "stick": 1 + }, + "1": { + "red_wool": 3 + } + }, + "agent_count": 2, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_wool_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_wool", + "conversation": "Let's work together to craft an purple_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "black_wool": 1 + }, + "1": { + "red_dye": 1 + } + }, + "agent_count": 2, + "target": "purple_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_warped_fungus_on_a_stick_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an warped_fungus_on_a_stick", + "conversation": "Let's work together to craft an warped_fungus_on_a_stick.", + "initial_inventory": { + "0": { + "fishing_rod": 1 + }, + "1": { + "warped_fungus": 1 + } + }, + "agent_count": 2, + "target": "warped_fungus_on_a_stick", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_painting_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an painting", + "conversation": "Let's work together to craft an painting.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "white_dye": 1 + }, + "1": { + "oak_planks": 2, + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "painting", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_wool_1_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_wool", + "conversation": "Let's work together to craft an cyan_wool.", + "initial_inventory": { + "0": { + "cyan_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "cyan_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_chest_minecart_0_with_plan__depth_1_num_agents_2": { + "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": 4, + "iron_ingot": 2 + }, + "1": { + "oak_planks": 4, + "iron_ingot": 3 + } + }, + "agent_count": 2, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_blue_wool_0_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an light_blue_wool", + "conversation": "Let's work together to craft an light_blue_wool.", + "initial_inventory": { + "0": { + "light_blue_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "light_blue_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_bookshelf_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an bookshelf", + "conversation": "Let's work together to craft an bookshelf.", + "initial_inventory": { + "0": { + "oak_log": 1, + "paper": 5, + "leather": 1 + }, + "1": { + "oak_log": 1, + "paper": 4, + "leather": 2 + } + }, + "agent_count": 2, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_wool_1_with_plan_missing_black_wool_depth_0_num_agents_2": { + "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": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "pink_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_purple_wool_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_wool", + "conversation": "Let's work together to craft an purple_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "black_wool": 1 + }, + "1": { + "red_dye": 1 + } + }, + "agent_count": 2, + "target": "purple_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_dye_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_dye", + "conversation": "Let's work together to craft an cyan_dye.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "green_dye": 1 + } + }, + "agent_count": 2, + "target": "cyan_dye", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_stained_glass_1_with_plan__depth_0_num_agents_2": { + "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": 4, + "red_dye": 1 + }, + "1": { + "glass": 4 + } + }, + "agent_count": 2, + "target": "red_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_0_with_plan__depth_0_num_agents_2": { + "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": 3, + "stick": 1 + }, + "1": { + "blue_wool": 3 + } + }, + "agent_count": 2, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_slab": 2, + "bookshelf": 1 + }, + "1": { + "oak_slab": 2 + } + }, + "agent_count": 2, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cut_red_sandstone_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cut_red_sandstone", + "conversation": "Let's work together to craft an cut_red_sandstone.", + "initial_inventory": { + "0": { + "red_sandstone": 2 + }, + "1": { + "red_sandstone": 2 + } + }, + "agent_count": 2, + "target": "cut_red_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cartography_table_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cartography_table", + "conversation": "Let's work together to craft an cartography_table.", + "initial_inventory": { + "0": { + "paper": 1, + "oak_planks": 2 + }, + "1": { + "paper": 1, + "oak_planks": 2 + } + }, + "agent_count": 2, + "target": "cartography_table", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_wool_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_wool", + "conversation": "Let's work together to craft an red_wool.", + "initial_inventory": { + "0": { + "red_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "red_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_carpet_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_carpet", + "conversation": "Let's work together to craft an red_carpet.", + "initial_inventory": { + "0": { + "red_dye": 1 + }, + "1": { + "black_carpet": 1 + } + }, + "agent_count": 2, + "target": "red_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brown_wool_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an brown_wool", + "conversation": "Let's work together to craft an brown_wool.", + "initial_inventory": { + "0": { + "brown_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "brown_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_wool_1_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_wool", + "conversation": "Let's work together to craft an purple_wool.", + "initial_inventory": { + "0": { + "purple_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "purple_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_brown_wool_1_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an brown_wool", + "conversation": "Let's work together to craft an brown_wool.", + "initial_inventory": { + "0": { + "brown_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "brown_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_light_blue_wool_1_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an light_blue_wool", + "conversation": "Let's work together to craft an light_blue_wool.", + "initial_inventory": { + "0": { + "light_blue_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "light_blue_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_yellow_wool_0_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an yellow_wool", + "conversation": "Let's work together to craft an yellow_wool.", + "initial_inventory": { + "0": { + "yellow_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "yellow_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_light_blue_wool_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an light_blue_wool", + "conversation": "Let's work together to craft an light_blue_wool.", + "initial_inventory": { + "0": { + "light_blue_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "light_blue_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_wool_1_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "gray_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_dark_prismarine_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an dark_prismarine", + "conversation": "Let's work together to craft an dark_prismarine.", + "initial_inventory": { + "0": { + "prismarine_shard": 4, + "black_dye": 1 + }, + "1": { + "prismarine_shard": 4 + } + }, + "agent_count": 2, + "target": "dark_prismarine", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_0_with_plan__depth_0_num_agents_2": { + "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": 3, + "stick": 1 + }, + "1": { + "black_wool": 3 + } + }, + "agent_count": 2, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_wool_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_wool", + "conversation": "Let's work together to craft an purple_wool.", + "initial_inventory": { + "0": { + "purple_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "purple_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_1_with_plan__depth_0_num_agents_2": { + "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": 3, + "stick": 1 + }, + "1": { + "blue_wool": 3 + } + }, + "agent_count": 2, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_oxidized_cut_copper_0_with_plan__depth_0_num_agents_2": { + "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": 2 + }, + "1": { + "waxed_oxidized_copper": 2 + } + }, + "agent_count": 2, + "target": "waxed_oxidized_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_yellow_wool_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an yellow_wool", + "conversation": "Let's work together to craft an yellow_wool.", + "initial_inventory": { + "0": { + "yellow_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "yellow_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_polished_blackstone_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an chiseled_polished_blackstone", + "conversation": "Let's work together to craft an chiseled_polished_blackstone.", + "initial_inventory": { + "0": { + "polished_blackstone_slab": 1 + }, + "1": { + "polished_blackstone_slab": 1 + } + }, + "agent_count": 2, + "target": "chiseled_polished_blackstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_blue_wool_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an light_blue_wool", + "conversation": "Let's work together to craft an light_blue_wool.", + "initial_inventory": { + "0": { + "light_blue_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "light_blue_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_wool_0_with_plan_missing_black_wool_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_wool", + "conversation": "Let's work together to craft an purple_wool.", + "initial_inventory": { + "0": { + "purple_dye": 1 + }, + "1": { + "shears": 1 + } + }, + "agent_count": 2, + "target": "purple_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_spectral_arrow_0_with_plan__depth_2_num_agents_2": { + "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": 2, + "flint": 1, + "oak_planks": 1 + }, + "1": { + "glowstone_dust": 2, + "oak_planks": 1, + "feather": 1 + } + }, + "agent_count": 2, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_1_with_plan__depth_2_num_agents_2": { + "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": 2, + "flint": 1, + "oak_planks": 1 + }, + "1": { + "glowstone_dust": 2, + "oak_planks": 1, + "feather": 1 + } + }, + "agent_count": 2, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_0_with_plan_missing_black_wool_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 3, + "oak_log": 1 + }, + "1": { + "bone_meal": 3, + "shears": 1 + } + }, + "agent_count": 2, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_white_banner_1_with_plan_missing_black_wool_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 3, + "oak_log": 1 + }, + "1": { + "bone_meal": 3, + "shears": 1 + } + }, + "agent_count": 2, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_white_banner_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 3, + "black_wool": 3, + "oak_log": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 3 + } + }, + "agent_count": 2, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 3, + "black_wool": 3, + "oak_log": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 3 + } + }, + "agent_count": 2, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_0_with_plan_missing_black_wool_depth_2_num_agents_2": { + "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": 1, + "green_dye": 2, + "oak_log": 1 + }, + "1": { + "blue_dye": 2, + "green_dye": 1, + "shears": 1 + } + }, + "agent_count": 2, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_banner_1_with_plan_missing_black_wool_depth_2_num_agents_2": { + "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": 1, + "green_dye": 2, + "oak_log": 1 + }, + "1": { + "blue_dye": 2, + "green_dye": 1, + "shears": 1 + } + }, + "agent_count": 2, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_banner_0_with_plan__depth_2_num_agents_2": { + "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": 1, + "green_dye": 1, + "black_wool": 3, + "oak_log": 1 + }, + "1": { + "blue_dye": 2, + "green_dye": 2, + "black_wool": 3 + } + }, + "agent_count": 2, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_1_with_plan__depth_2_num_agents_2": { + "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": 1, + "green_dye": 1, + "black_wool": 3, + "oak_log": 1 + }, + "1": { + "blue_dye": 2, + "green_dye": 2, + "black_wool": 3 + } + }, + "agent_count": 2, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_bed_0_with_plan_missing_black_wool_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_bed", + "conversation": "Let's work together to craft an cyan_bed.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "green_dye": 1, + "oak_log": 1 + }, + "1": { + "blue_dye": 1, + "green_dye": 1, + "shears": 1 + } + }, + "agent_count": 2, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_bed_1_with_plan_missing_black_wool_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_bed", + "conversation": "Let's work together to craft an cyan_bed.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "green_dye": 1, + "oak_log": 1 + }, + "1": { + "blue_dye": 1, + "green_dye": 1, + "shears": 1 + } + }, + "agent_count": 2, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_bed_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_bed", + "conversation": "Let's work together to craft an cyan_bed.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "green_dye": 1, + "black_wool": 1, + "oak_log": 1 + }, + "1": { + "blue_dye": 1, + "green_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 2, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_bed_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_bed", + "conversation": "Let's work together to craft an cyan_bed.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "green_dye": 1, + "black_wool": 1, + "oak_log": 1 + }, + "1": { + "blue_dye": 1, + "green_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 2, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_wool_0_with_plan_missing_black_wool_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "ink_sac": 1, + "shears": 1 + }, + "1": { + "bone_meal": 1 + } + }, + "agent_count": 2, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_gray_wool_1_with_plan_missing_black_wool_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "ink_sac": 1, + "shears": 1 + }, + "1": { + "bone_meal": 1 + } + }, + "agent_count": 2, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_gray_wool_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "ink_sac": 1, + "black_wool": 1 + }, + "1": { + "bone_meal": 1 + } + }, + "agent_count": 2, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_wool_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "ink_sac": 1, + "black_wool": 1 + }, + "1": { + "bone_meal": 1 + } + }, + "agent_count": 2, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_painting_0_with_plan_missing_black_wool_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an painting", + "conversation": "Let's work together to craft an painting.", + "initial_inventory": { + "0": { + "oak_log": 1, + "shears": 1 + }, + "1": { + "bone_meal": 1 + } + }, + "agent_count": 2, + "target": "painting", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_painting_1_with_plan_missing_black_wool_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an painting", + "conversation": "Let's work together to craft an painting.", + "initial_inventory": { + "0": { + "oak_log": 1, + "shears": 1 + }, + "1": { + "bone_meal": 1 + } + }, + "agent_count": 2, + "target": "painting", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_painting_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an painting", + "conversation": "Let's work together to craft an painting.", + "initial_inventory": { + "0": { + "oak_log": 1, + "black_wool": 1 + }, + "1": { + "bone_meal": 1 + } + }, + "agent_count": 2, + "target": "painting", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_painting_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an painting", + "conversation": "Let's work together to craft an painting.", + "initial_inventory": { + "0": { + "oak_log": 1, + "black_wool": 1 + }, + "1": { + "bone_meal": 1 + } + }, + "agent_count": 2, + "target": "painting", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_log": 1, + "paper": 4, + "leather": 1 + }, + "1": { + "oak_log": 2, + "paper": 5, + "leather": 2 + } + }, + "agent_count": 2, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_log": 1, + "paper": 4, + "leather": 1 + }, + "1": { + "oak_log": 2, + "paper": 5, + "leather": 2 + } + }, + "agent_count": 2, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_warped_fungus_on_a_stick_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an warped_fungus_on_a_stick", + "conversation": "Let's work together to craft an warped_fungus_on_a_stick.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "string": 1, + "warped_fungus": 1 + }, + "1": { + "oak_planks": 1, + "string": 1 + } + }, + "agent_count": 2, + "target": "warped_fungus_on_a_stick", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_warped_fungus_on_a_stick_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an warped_fungus_on_a_stick", + "conversation": "Let's work together to craft an warped_fungus_on_a_stick.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "string": 1, + "warped_fungus": 1 + }, + "1": { + "oak_planks": 1, + "string": 1 + } + }, + "agent_count": 2, + "target": "warped_fungus_on_a_stick", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_carrot_on_a_stick_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an carrot_on_a_stick", + "conversation": "Let's work together to craft an carrot_on_a_stick.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "string": 1, + "carrot": 1 + }, + "1": { + "oak_planks": 1, + "string": 1 + } + }, + "agent_count": 2, + "target": "carrot_on_a_stick", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_carrot_on_a_stick_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an carrot_on_a_stick", + "conversation": "Let's work together to craft an carrot_on_a_stick.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "string": 1, + "carrot": 1 + }, + "1": { + "oak_planks": 1, + "string": 1 + } + }, + "agent_count": 2, + "target": "carrot_on_a_stick", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/test_tasks/tasks_2_agents_stats.txt b/tasks/crafting_tasks/test_tasks/tasks_2_agents_stats.txt new file mode 100644 index 0000000..bc2aca7 --- /dev/null +++ b/tasks/crafting_tasks/test_tasks/tasks_2_agents_stats.txt @@ -0,0 +1,14 @@ +{ + "num_tasks": 205, + "avg_depth": 2.1176470588235294, + "std_depth": 0.7578881603955948, + "num_tasks_based_depth": { + "0": 100, + "1": 76, + "2": 28 + }, + "num_missing_resources": { + "0": 145, + "1": 59 + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/test_tasks/tasks_3_agents.json b/tasks/crafting_tasks/test_tasks/tasks_3_agents.json new file mode 100644 index 0000000..12f9fab --- /dev/null +++ b/tasks/crafting_tasks/test_tasks/tasks_3_agents.json @@ -0,0 +1,5528 @@ +{ + "multiagent_crafting_cyan_bed_1_with_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": { + "0": { + "cyan_wool": 1, + "oak_planks": 1 + }, + "1": { + "cyan_wool": 1, + "oak_planks": 1 + }, + "2": { + "cyan_wool": 1, + "oak_planks": 1 + } + }, + "agent_count": 3, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_bed_1_with_plan_missing_black_wool_depth_1_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": { + "0": { + "cyan_dye": 1, + "oak_log": 1 + }, + "1": { + "cyan_dye": 1, + "shears": 1 + }, + "2": { + "cyan_dye": 1 + } + }, + "agent_count": 3, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_quartz_bricks_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an quartz_bricks", + "conversation": "Let's work together to craft an quartz_bricks.", + "initial_inventory": { + "0": { + "quartz_block": 2 + }, + "1": { + "quartz_block": 1 + }, + "2": { + "quartz_block": 1 + } + }, + "agent_count": 3, + "target": "quartz_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_1_with_plan_missing_black_wool_depth_1_num_agents_3": { + "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": 2, + "oak_planks": 2 + }, + "1": { + "cyan_dye": 2, + "shears": 1 + }, + "2": { + "cyan_dye": 2 + } + }, + "agent_count": 3, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_smoker_2_with_plan_missing_furnace_depth_0_num_agents_3": { + "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 + }, + "1": { + "dark_oak_log": 2 + }, + "2": { + "dark_oak_log": 1 + } + }, + "agent_count": 3, + "target": "smoker", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "furnace" + ] + }, + "multiagent_crafting_magenta_bed_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an magenta_bed", + "conversation": "Let's work together to craft an magenta_bed.", + "initial_inventory": { + "0": { + "allium": 1, + "black_wool": 1, + "oak_planks": 1 + }, + "1": { + "black_wool": 1, + "oak_planks": 1 + }, + "2": { + "black_wool": 1, + "oak_planks": 1 + } + }, + "agent_count": 3, + "target": "magenta_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_stained_glass_1_with_plan__depth_0_num_agents_3": { + "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": 4, + "red_dye": 1 + }, + "1": { + "glass": 2 + }, + "2": { + "glass": 2 + } + }, + "agent_count": 3, + "target": "red_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_bed_2_with_plan_missing_black_wool_depth_1_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": { + "0": { + "cyan_dye": 1, + "oak_log": 1 + }, + "1": { + "cyan_dye": 1, + "shears": 1 + }, + "2": { + "cyan_dye": 1 + } + }, + "agent_count": 3, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_red_banner_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_wool": 2, + "stick": 1 + }, + "1": { + "red_wool": 2 + }, + "2": { + "red_wool": 2 + } + }, + "agent_count": 3, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "red_dye": 2, + "black_wool": 2 + }, + "2": { + "red_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_bed_2_with_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": { + "0": { + "cyan_wool": 1, + "oak_planks": 1 + }, + "1": { + "cyan_wool": 1, + "oak_planks": 1 + }, + "2": { + "cyan_wool": 1, + "oak_planks": 1 + } + }, + "agent_count": 3, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_bed_0_with_plan__depth_1_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": { + "0": { + "cyan_dye": 1, + "black_wool": 1, + "oak_log": 1 + }, + "1": { + "cyan_dye": 1, + "black_wool": 1 + }, + "2": { + "cyan_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dark_prismarine_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an dark_prismarine", + "conversation": "Let's work together to craft an dark_prismarine.", + "initial_inventory": { + "0": { + "prismarine_shard": 2, + "black_dye": 1 + }, + "1": { + "prismarine_shard": 2 + }, + "2": { + "prismarine_shard": 4 + } + }, + "agent_count": 3, + "target": "dark_prismarine", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chest_minecart_1_with_plan__depth_1_num_agents_3": { + "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 + }, + "1": { + "oak_planks": 2, + "iron_ingot": 1 + }, + "2": { + "oak_planks": 4, + "iron_ingot": 3 + } + }, + "agent_count": 3, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_1_with_plan__depth_0_num_agents_3": { + "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, + "arrow": 1 + }, + "1": { + "glowstone_dust": 2 + }, + "2": { + "glowstone_dust": 1 + } + }, + "agent_count": 3, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_2_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 2, + "oak_planks": 2 + }, + "1": { + "red_dye": 2, + "shears": 1 + }, + "2": { + "red_dye": 2 + } + }, + "agent_count": 3, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_red_banner_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_wool": 2, + "stick": 1 + }, + "1": { + "red_wool": 2 + }, + "2": { + "red_wool": 2 + } + }, + "agent_count": 3, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chest_minecart_2_with_plan__depth_1_num_agents_3": { + "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 + }, + "1": { + "oak_planks": 2, + "iron_ingot": 1 + }, + "2": { + "oak_planks": 4, + "iron_ingot": 3 + } + }, + "agent_count": 3, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_2_with_plan__depth_0_num_agents_3": { + "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, + "arrow": 1 + }, + "1": { + "glowstone_dust": 2 + }, + "2": { + "glowstone_dust": 1 + } + }, + "agent_count": 3, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_1_with_plan__depth_1_num_agents_3": { + "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 + }, + "1": { + "glowstone_dust": 2, + "stick": 1 + }, + "2": { + "glowstone_dust": 1, + "feather": 1 + } + }, + "agent_count": 3, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_wool": 2, + "stick": 1 + }, + "1": { + "pink_wool": 2 + }, + "2": { + "pink_wool": 2 + } + }, + "agent_count": 3, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_wool_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_wool", + "conversation": "Let's work together to craft an purple_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "red_dye": 1 + }, + "2": { + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "purple_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_stained_glass_2_with_plan__depth_0_num_agents_3": { + "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": 4, + "red_dye": 1 + }, + "1": { + "glass": 2 + }, + "2": { + "glass": 2 + } + }, + "agent_count": 3, + "target": "red_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_wool_2_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_wool", + "conversation": "Let's work together to craft an purple_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "red_dye": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "purple_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_soul_campfire_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an soul_campfire", + "conversation": "Let's work together to craft an soul_campfire.", + "initial_inventory": { + "0": { + "stick": 1, + "soul_sand": 1, + "dark_oak_log": 1 + }, + "1": { + "stick": 1, + "dark_oak_log": 1 + }, + "2": { + "stick": 1, + "dark_oak_log": 1 + } + }, + "agent_count": 3, + "target": "soul_campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_0_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 2, + "oak_planks": 2 + }, + "1": { + "pink_dye": 2, + "shears": 1 + }, + "2": { + "pink_dye": 2 + } + }, + "agent_count": 3, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_banner_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_wool": 2, + "stick": 1 + }, + "1": { + "cyan_wool": 2 + }, + "2": { + "cyan_wool": 2 + } + }, + "agent_count": 3, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_wool_2_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "black_dye": 1 + }, + "1": { + "white_dye": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_polished_granite_1_with_plan__depth_0_num_agents_3": { + "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 + }, + "1": { + "granite": 2 + }, + "2": { + "granite": 1 + } + }, + "agent_count": 3, + "target": "polished_granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_2_with_plan__depth_1_num_agents_3": { + "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": 2, + "oak_planks": 2 + }, + "1": { + "black_wool": 2 + }, + "2": { + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_quartz_bricks_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an quartz_bricks", + "conversation": "Let's work together to craft an quartz_bricks.", + "initial_inventory": { + "0": { + "quartz_block": 2 + }, + "1": { + "quartz_block": 1 + }, + "2": { + "quartz_block": 1 + } + }, + "agent_count": 3, + "target": "quartz_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_1_with_plan__depth_1_num_agents_3": { + "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": 2, + "oak_planks": 2 + }, + "1": { + "black_wool": 2 + }, + "2": { + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_soul_campfire_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an soul_campfire", + "conversation": "Let's work together to craft an soul_campfire.", + "initial_inventory": { + "0": { + "stick": 1, + "soul_sand": 1, + "dark_oak_log": 1 + }, + "1": { + "stick": 1, + "dark_oak_log": 1 + }, + "2": { + "stick": 1, + "dark_oak_log": 1 + } + }, + "agent_count": 3, + "target": "soul_campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_1_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 2, + "oak_planks": 2 + }, + "1": { + "pink_dye": 2, + "shears": 1 + }, + "2": { + "pink_dye": 2 + } + }, + "agent_count": 3, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_leather_leggings_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an leather_leggings", + "conversation": "Let's work together to craft an leather_leggings.", + "initial_inventory": { + "0": { + "leather": 3 + }, + "1": { + "leather": 2 + }, + "2": { + "leather": 2 + } + }, + "agent_count": 3, + "target": "leather_leggings", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_wool_0_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "black_dye": 1 + }, + "1": { + "white_dye": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_stained_glass_0_with_plan__depth_0_num_agents_3": { + "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": 4, + "cyan_dye": 1 + }, + "1": { + "glass": 2 + }, + "2": { + "glass": 2 + } + }, + "agent_count": 3, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_soul_campfire_2_with_plan__depth_1_num_agents_3": { + "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, + "dark_oak_log": 1 + }, + "1": { + "soul_sand": 1, + "dark_oak_log": 1 + }, + "2": { + "dark_oak_log": 1 + } + }, + "agent_count": 3, + "target": "soul_campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_wool": 2, + "stick": 1 + }, + "1": { + "pink_wool": 2 + }, + "2": { + "pink_wool": 2 + } + }, + "agent_count": 3, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bookshelf_2_with_plan__depth_1_num_agents_3": { + "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, + "leather": 1 + }, + "1": { + "paper": 3, + "leather": 1 + }, + "2": { + "paper": 3, + "leather": 1 + } + }, + "agent_count": 3, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_bed_0_with_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": { + "0": { + "cyan_wool": 1, + "oak_planks": 1 + }, + "1": { + "cyan_wool": 1, + "oak_planks": 1 + }, + "2": { + "cyan_wool": 1, + "oak_planks": 1 + } + }, + "agent_count": 3, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_wool_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_wool", + "conversation": "Let's work together to craft an cyan_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "green_dye": 1 + }, + "2": { + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "cyan_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_wool": 2, + "stick": 1 + }, + "1": { + "cyan_wool": 2 + }, + "2": { + "cyan_wool": 2 + } + }, + "agent_count": 3, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bookshelf_0_with_plan__depth_1_num_agents_3": { + "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, + "leather": 1 + }, + "1": { + "paper": 3, + "leather": 1 + }, + "2": { + "paper": 3, + "leather": 1 + } + }, + "agent_count": 3, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_2_with_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": { + "0": { + "blue_wool": 2, + "stick": 1 + }, + "1": { + "blue_wool": 2 + }, + "2": { + "blue_wool": 2 + } + }, + "agent_count": 3, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_soul_campfire_0_with_plan__depth_1_num_agents_3": { + "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, + "dark_oak_log": 1 + }, + "1": { + "soul_sand": 1, + "dark_oak_log": 1 + }, + "2": { + "dark_oak_log": 1 + } + }, + "agent_count": 3, + "target": "soul_campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cut_red_sandstone_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an cut_red_sandstone", + "conversation": "Let's work together to craft an cut_red_sandstone.", + "initial_inventory": { + "0": { + "red_sandstone": 1 + }, + "1": { + "red_sandstone": 1 + }, + "2": { + "red_sandstone": 2 + } + }, + "agent_count": 3, + "target": "cut_red_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_bed_2_with_plan__depth_1_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": { + "0": { + "cyan_dye": 1, + "black_wool": 1, + "oak_log": 1 + }, + "1": { + "cyan_dye": 1, + "black_wool": 1 + }, + "2": { + "cyan_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_0_with_plan__depth_0_num_agents_3": { + "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 + }, + "1": { + "oak_slab": 1 + }, + "2": { + "oak_slab": 2 + } + }, + "agent_count": 3, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_0_with_plan__depth_1_num_agents_3": { + "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": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "cyan_dye": 2, + "black_wool": 2 + }, + "2": { + "cyan_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_granite_2_with_plan__depth_0_num_agents_3": { + "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 + }, + "1": { + "granite": 2 + }, + "2": { + "granite": 1 + } + }, + "agent_count": 3, + "target": "polished_granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "pink_dye": 2, + "black_wool": 2 + }, + "2": { + "pink_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_wool": 2, + "stick": 1 + }, + "1": { + "cyan_wool": 2 + }, + "2": { + "cyan_wool": 2 + } + }, + "agent_count": 3, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_wool_0_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_wool", + "conversation": "Let's work together to craft an purple_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "red_dye": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "purple_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_smoker_0_with_plan__depth_0_num_agents_3": { + "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 + }, + "1": { + "dark_oak_log": 2 + }, + "2": { + "dark_oak_log": 1 + } + }, + "agent_count": 3, + "target": "smoker", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "pink_dye": 2, + "black_wool": 2 + }, + "2": { + "pink_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_smoker_2_with_plan__depth_0_num_agents_3": { + "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 + }, + "1": { + "dark_oak_log": 2 + }, + "2": { + "dark_oak_log": 1 + } + }, + "agent_count": 3, + "target": "smoker", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_1_with_plan__depth_1_num_agents_3": { + "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": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "white_dye": 2, + "black_wool": 2 + }, + "2": { + "white_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_1_with_plan__depth_0_num_agents_3": { + "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": 2, + "stick": 1 + }, + "1": { + "white_wool": 2 + }, + "2": { + "white_wool": 2 + } + }, + "agent_count": 3, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_1_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 2, + "oak_planks": 2 + }, + "1": { + "red_dye": 2, + "shears": 1 + }, + "2": { + "red_dye": 2 + } + }, + "agent_count": 3, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_spectral_arrow_0_with_plan__depth_0_num_agents_3": { + "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, + "arrow": 1 + }, + "1": { + "glowstone_dust": 2 + }, + "2": { + "glowstone_dust": 1 + } + }, + "agent_count": 3, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_0_with_plan__depth_1_num_agents_3": { + "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": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "white_dye": 2, + "black_wool": 2 + }, + "2": { + "white_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cut_red_sandstone_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an cut_red_sandstone", + "conversation": "Let's work together to craft an cut_red_sandstone.", + "initial_inventory": { + "0": { + "red_sandstone": 1 + }, + "1": { + "red_sandstone": 1 + }, + "2": { + "red_sandstone": 2 + } + }, + "agent_count": 3, + "target": "cut_red_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_granite_0_with_plan__depth_1_num_agents_3": { + "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 + }, + "1": { + "diorite": 1, + "quartz": 2 + }, + "2": { + "diorite": 2, + "quartz": 1 + } + }, + "agent_count": 3, + "target": "polished_granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_1_with_plan__depth_0_num_agents_3": { + "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": 4, + "cyan_dye": 1 + }, + "1": { + "glass": 2 + }, + "2": { + "glass": 2 + } + }, + "agent_count": 3, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_soul_campfire_1_with_plan__depth_1_num_agents_3": { + "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, + "dark_oak_log": 1 + }, + "1": { + "soul_sand": 1, + "dark_oak_log": 1 + }, + "2": { + "dark_oak_log": 1 + } + }, + "agent_count": 3, + "target": "soul_campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_quartz_bricks_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an quartz_bricks", + "conversation": "Let's work together to craft an quartz_bricks.", + "initial_inventory": { + "0": { + "quartz_block": 2 + }, + "1": { + "quartz_block": 1 + }, + "2": { + "quartz_block": 1 + } + }, + "agent_count": 3, + "target": "quartz_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_planks": 3, + "book": 1 + }, + "1": { + "oak_planks": 3, + "book": 1 + }, + "2": { + "oak_planks": 3, + "book": 1 + } + }, + "agent_count": 3, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_2_with_plan__depth_0_num_agents_3": { + "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": 2, + "stick": 1 + }, + "1": { + "white_wool": 2 + }, + "2": { + "white_wool": 2 + } + }, + "agent_count": 3, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_0_with_plan_missing_black_wool_depth_1_num_agents_3": { + "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": 2, + "oak_planks": 2 + }, + "1": { + "cyan_dye": 2, + "shears": 1 + }, + "2": { + "cyan_dye": 2 + } + }, + "agent_count": 3, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_smoker_1_with_plan__depth_0_num_agents_3": { + "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 + }, + "1": { + "dark_oak_log": 2 + }, + "2": { + "dark_oak_log": 1 + } + }, + "agent_count": 3, + "target": "smoker", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_bed_0_with_plan_missing_black_wool_depth_1_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": { + "0": { + "cyan_dye": 1, + "oak_log": 1 + }, + "1": { + "cyan_dye": 1, + "shears": 1 + }, + "2": { + "cyan_dye": 1 + } + }, + "agent_count": 3, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_pink_banner_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_wool": 2, + "stick": 1 + }, + "1": { + "pink_wool": 2 + }, + "2": { + "pink_wool": 2 + } + }, + "agent_count": 3, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_1_with_plan__depth_1_num_agents_3": { + "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 + }, + "1": { + "glass": 2, + "green_dye": 1 + }, + "2": { + "glass": 4 + } + }, + "agent_count": 3, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_1_with_plan__depth_0_num_agents_3": { + "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": 2, + "stick": 1 + }, + "1": { + "black_wool": 2 + }, + "2": { + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_2_with_plan__depth_1_num_agents_3": { + "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 + }, + "1": { + "glass": 2, + "green_dye": 1 + }, + "2": { + "glass": 4 + } + }, + "agent_count": 3, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_1_with_plan__depth_0_num_agents_3": { + "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 + }, + "1": { + "oak_slab": 1 + }, + "2": { + "oak_slab": 2 + } + }, + "agent_count": 3, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_wool_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_wool", + "conversation": "Let's work together to craft an purple_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "red_dye": 1 + }, + "2": { + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "purple_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_0_with_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": { + "0": { + "blue_wool": 2, + "stick": 1 + }, + "1": { + "blue_wool": 2 + }, + "2": { + "blue_wool": 2 + } + }, + "agent_count": 3, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_wool_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_wool", + "conversation": "Let's work together to craft an cyan_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "green_dye": 1 + }, + "2": { + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "cyan_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_0_with_plan__depth_0_num_agents_3": { + "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": 2, + "stick": 1 + }, + "1": { + "white_wool": 2 + }, + "2": { + "white_wool": 2 + } + }, + "agent_count": 3, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_0_with_plan__depth_1_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": { + "0": { + "blue_wool": 2, + "oak_planks": 2 + }, + "1": { + "blue_wool": 2 + }, + "2": { + "blue_wool": 2 + } + }, + "agent_count": 3, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_0_with_plan__depth_0_num_agents_3": { + "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": 2, + "stick": 1 + }, + "1": { + "black_wool": 2 + }, + "2": { + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_granite_2_with_plan__depth_1_num_agents_3": { + "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 + }, + "1": { + "diorite": 1, + "quartz": 2 + }, + "2": { + "diorite": 2, + "quartz": 1 + } + }, + "agent_count": 3, + "target": "polished_granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bookshelf_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an bookshelf", + "conversation": "Let's work together to craft an bookshelf.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "book": 1 + }, + "1": { + "oak_planks": 2, + "book": 1 + }, + "2": { + "oak_planks": 2, + "book": 1 + } + }, + "agent_count": 3, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_wool_1_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_wool", + "conversation": "Let's work together to craft an purple_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "red_dye": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "purple_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cut_red_sandstone_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an cut_red_sandstone", + "conversation": "Let's work together to craft an cut_red_sandstone.", + "initial_inventory": { + "0": { + "red_sandstone": 1 + }, + "1": { + "red_sandstone": 1 + }, + "2": { + "red_sandstone": 2 + } + }, + "agent_count": 3, + "target": "cut_red_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_0_with_plan__depth_1_num_agents_3": { + "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": 2, + "oak_planks": 2 + }, + "1": { + "black_wool": 2 + }, + "2": { + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bookshelf_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an bookshelf", + "conversation": "Let's work together to craft an bookshelf.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "book": 1 + }, + "1": { + "oak_planks": 2, + "book": 1 + }, + "2": { + "oak_planks": 2, + "book": 1 + } + }, + "agent_count": 3, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "pink_dye": 2, + "black_wool": 2 + }, + "2": { + "pink_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_stained_glass_0_with_plan__depth_0_num_agents_3": { + "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": 4, + "red_dye": 1 + }, + "1": { + "glass": 2 + }, + "2": { + "glass": 2 + } + }, + "agent_count": 3, + "target": "red_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_bed_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an magenta_bed", + "conversation": "Let's work together to craft an magenta_bed.", + "initial_inventory": { + "0": { + "allium": 1, + "black_wool": 1, + "oak_planks": 1 + }, + "1": { + "black_wool": 1, + "oak_planks": 1 + }, + "2": { + "black_wool": 1, + "oak_planks": 1 + } + }, + "agent_count": 3, + "target": "magenta_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_leggings_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an leather_leggings", + "conversation": "Let's work together to craft an leather_leggings.", + "initial_inventory": { + "0": { + "leather": 3 + }, + "1": { + "leather": 2 + }, + "2": { + "leather": 2 + } + }, + "agent_count": 3, + "target": "leather_leggings", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_granite_1_with_plan__depth_1_num_agents_3": { + "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 + }, + "1": { + "diorite": 1, + "quartz": 2 + }, + "2": { + "diorite": 2, + "quartz": 1 + } + }, + "agent_count": 3, + "target": "polished_granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_soul_campfire_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an soul_campfire", + "conversation": "Let's work together to craft an soul_campfire.", + "initial_inventory": { + "0": { + "stick": 1, + "soul_sand": 1, + "dark_oak_log": 1 + }, + "1": { + "stick": 1, + "dark_oak_log": 1 + }, + "2": { + "stick": 1, + "dark_oak_log": 1 + } + }, + "agent_count": 3, + "target": "soul_campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bookshelf_1_with_plan__depth_1_num_agents_3": { + "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, + "leather": 1 + }, + "1": { + "paper": 3, + "leather": 1 + }, + "2": { + "paper": 3, + "leather": 1 + } + }, + "agent_count": 3, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_2_with_plan__depth_0_num_agents_3": { + "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": 2, + "stick": 1 + }, + "1": { + "black_wool": 2 + }, + "2": { + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_2_with_plan_missing_black_wool_depth_1_num_agents_3": { + "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": 2, + "oak_planks": 2 + }, + "1": { + "cyan_dye": 2, + "shears": 1 + }, + "2": { + "cyan_dye": 2 + } + }, + "agent_count": 3, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_dark_prismarine_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an dark_prismarine", + "conversation": "Let's work together to craft an dark_prismarine.", + "initial_inventory": { + "0": { + "prismarine_shard": 2, + "black_dye": 1 + }, + "1": { + "prismarine_shard": 2 + }, + "2": { + "prismarine_shard": 4 + } + }, + "agent_count": 3, + "target": "dark_prismarine", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_wool_0_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_wool", + "conversation": "Let's work together to craft an cyan_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "green_dye": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "cyan_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_smoker_0_with_plan_missing_furnace_depth_0_num_agents_3": { + "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 + }, + "1": { + "dark_oak_log": 2 + }, + "2": { + "dark_oak_log": 1 + } + }, + "agent_count": 3, + "target": "smoker", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "furnace" + ] + }, + "multiagent_crafting_spectral_arrow_2_with_plan__depth_1_num_agents_3": { + "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 + }, + "1": { + "glowstone_dust": 2, + "stick": 1 + }, + "2": { + "glowstone_dust": 1, + "feather": 1 + } + }, + "agent_count": 3, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_leggings_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an leather_leggings", + "conversation": "Let's work together to craft an leather_leggings.", + "initial_inventory": { + "0": { + "leather": 3 + }, + "1": { + "leather": 2 + }, + "2": { + "leather": 2 + } + }, + "agent_count": 3, + "target": "leather_leggings", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_0_with_plan__depth_1_num_agents_3": { + "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 + }, + "1": { + "glass": 2, + "green_dye": 1 + }, + "2": { + "glass": 4 + } + }, + "agent_count": 3, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_1_with_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": { + "0": { + "blue_wool": 2, + "stick": 1 + }, + "1": { + "blue_wool": 2 + }, + "2": { + "blue_wool": 2 + } + }, + "agent_count": 3, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chest_minecart_0_with_plan__depth_1_num_agents_3": { + "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 + }, + "1": { + "oak_planks": 2, + "iron_ingot": 1 + }, + "2": { + "oak_planks": 4, + "iron_ingot": 3 + } + }, + "agent_count": 3, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_oxidized_cut_copper_2_with_plan__depth_0_num_agents_3": { + "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 + }, + "1": { + "waxed_oxidized_copper": 1 + }, + "2": { + "waxed_oxidized_copper": 2 + } + }, + "agent_count": 3, + "target": "waxed_oxidized_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_wool_1_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "black_dye": 1 + }, + "1": { + "white_dye": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_bookshelf_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an bookshelf", + "conversation": "Let's work together to craft an bookshelf.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "book": 1 + }, + "1": { + "oak_planks": 2, + "book": 1 + }, + "2": { + "oak_planks": 2, + "book": 1 + } + }, + "agent_count": 3, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_wool_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "black_dye": 1 + }, + "1": { + "white_dye": 1 + }, + "2": { + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_2_with_plan__depth_0_num_agents_3": { + "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": 4, + "cyan_dye": 1 + }, + "1": { + "glass": 2 + }, + "2": { + "glass": 2 + } + }, + "agent_count": 3, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_1_with_plan__depth_1_num_agents_3": { + "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": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "cyan_dye": 2, + "black_wool": 2 + }, + "2": { + "cyan_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_oxidized_cut_copper_1_with_plan__depth_0_num_agents_3": { + "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 + }, + "1": { + "waxed_oxidized_copper": 1 + }, + "2": { + "waxed_oxidized_copper": 2 + } + }, + "agent_count": 3, + "target": "waxed_oxidized_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_polished_blackstone_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an chiseled_polished_blackstone", + "conversation": "Let's work together to craft an chiseled_polished_blackstone.", + "initial_inventory": { + "0": { + "polished_blackstone": 1 + }, + "1": { + "polished_blackstone": 1 + }, + "2": { + "polished_blackstone": 1 + } + }, + "agent_count": 3, + "target": "chiseled_polished_blackstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_2_with_plan__depth_0_num_agents_3": { + "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 + }, + "1": { + "oak_slab": 1 + }, + "2": { + "oak_slab": 2 + } + }, + "agent_count": 3, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_2_with_plan__depth_1_num_agents_3": { + "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": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "white_dye": 2, + "black_wool": 2 + }, + "2": { + "white_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dark_prismarine_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an dark_prismarine", + "conversation": "Let's work together to craft an dark_prismarine.", + "initial_inventory": { + "0": { + "prismarine_shard": 2, + "black_dye": 1 + }, + "1": { + "prismarine_shard": 2 + }, + "2": { + "prismarine_shard": 4 + } + }, + "agent_count": 3, + "target": "dark_prismarine", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_bed_1_with_plan__depth_1_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": { + "0": { + "cyan_dye": 1, + "black_wool": 1, + "oak_log": 1 + }, + "1": { + "cyan_dye": 1, + "black_wool": 1 + }, + "2": { + "cyan_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_oxidized_cut_copper_0_with_plan__depth_0_num_agents_3": { + "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 + }, + "1": { + "waxed_oxidized_copper": 1 + }, + "2": { + "waxed_oxidized_copper": 2 + } + }, + "agent_count": 3, + "target": "waxed_oxidized_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_polished_blackstone_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an chiseled_polished_blackstone", + "conversation": "Let's work together to craft an chiseled_polished_blackstone.", + "initial_inventory": { + "0": { + "polished_blackstone": 1 + }, + "1": { + "polished_blackstone": 1 + }, + "2": { + "polished_blackstone": 1 + } + }, + "agent_count": 3, + "target": "chiseled_polished_blackstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_granite_0_with_plan__depth_0_num_agents_3": { + "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 + }, + "1": { + "granite": 2 + }, + "2": { + "granite": 1 + } + }, + "agent_count": 3, + "target": "polished_granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_wool_1_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_wool", + "conversation": "Let's work together to craft an cyan_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "green_dye": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "cyan_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_red_banner_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_wool": 2, + "stick": 1 + }, + "1": { + "red_wool": 2 + }, + "2": { + "red_wool": 2 + } + }, + "agent_count": 3, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_0_with_plan__depth_1_num_agents_3": { + "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 + }, + "1": { + "glowstone_dust": 2, + "stick": 1 + }, + "2": { + "glowstone_dust": 1, + "feather": 1 + } + }, + "agent_count": 3, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_smoker_1_with_plan_missing_furnace_depth_0_num_agents_3": { + "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 + }, + "1": { + "dark_oak_log": 2 + }, + "2": { + "dark_oak_log": 1 + } + }, + "agent_count": 3, + "target": "smoker", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "furnace" + ] + }, + "multiagent_crafting_red_banner_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "red_dye": 2, + "black_wool": 2 + }, + "2": { + "red_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_planks": 3, + "book": 1 + }, + "1": { + "oak_planks": 3, + "book": 1 + }, + "2": { + "oak_planks": 3, + "book": 1 + } + }, + "agent_count": 3, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_1_with_plan_missing_black_wool_depth_1_num_agents_3": { + "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": 2, + "oak_planks": 2 + }, + "1": { + "white_dye": 2, + "shears": 1 + }, + "2": { + "white_dye": 2 + } + }, + "agent_count": 3, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lectern_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_planks": 3, + "book": 1 + }, + "1": { + "oak_planks": 3, + "book": 1 + }, + "2": { + "oak_planks": 3, + "book": 1 + } + }, + "agent_count": 3, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_2_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 2, + "oak_planks": 2 + }, + "1": { + "pink_dye": 2, + "shears": 1 + }, + "2": { + "pink_dye": 2 + } + }, + "agent_count": 3, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_wool_2_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_wool", + "conversation": "Let's work together to craft an cyan_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "green_dye": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "cyan_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_chiseled_polished_blackstone_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an chiseled_polished_blackstone", + "conversation": "Let's work together to craft an chiseled_polished_blackstone.", + "initial_inventory": { + "0": { + "polished_blackstone": 1 + }, + "1": { + "polished_blackstone": 1 + }, + "2": { + "polished_blackstone": 1 + } + }, + "agent_count": 3, + "target": "chiseled_polished_blackstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_0_with_plan_missing_black_wool_depth_1_num_agents_3": { + "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": 2, + "oak_planks": 2 + }, + "1": { + "white_dye": 2, + "shears": 1 + }, + "2": { + "white_dye": 2 + } + }, + "agent_count": 3, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_red_banner_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "red_dye": 2, + "black_wool": 2 + }, + "2": { + "red_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_wool_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_wool", + "conversation": "Let's work together to craft an cyan_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "green_dye": 1 + }, + "2": { + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "cyan_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_wool_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "black_dye": 1 + }, + "1": { + "white_dye": 1 + }, + "2": { + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_wool_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_wool", + "conversation": "Let's work together to craft an purple_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "red_dye": 1 + }, + "2": { + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "purple_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_2_with_plan_missing_black_wool_depth_1_num_agents_3": { + "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": 2, + "oak_planks": 2 + }, + "1": { + "white_dye": 2, + "shears": 1 + }, + "2": { + "white_dye": 2 + } + }, + "agent_count": 3, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_banner_2_with_plan__depth_1_num_agents_3": { + "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": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "cyan_dye": 2, + "black_wool": 2 + }, + "2": { + "cyan_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_wool_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "black_dye": 1 + }, + "1": { + "white_dye": 1 + }, + "2": { + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_0_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 2, + "oak_planks": 2 + }, + "1": { + "red_dye": 2, + "shears": 1 + }, + "2": { + "red_dye": 2 + } + }, + "agent_count": 3, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_blue_banner_1_with_plan__depth_1_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": { + "0": { + "blue_wool": 2, + "oak_planks": 2 + }, + "1": { + "blue_wool": 2 + }, + "2": { + "blue_wool": 2 + } + }, + "agent_count": 3, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_bed_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an magenta_bed", + "conversation": "Let's work together to craft an magenta_bed.", + "initial_inventory": { + "0": { + "allium": 1, + "black_wool": 1, + "oak_planks": 1 + }, + "1": { + "black_wool": 1, + "oak_planks": 1 + }, + "2": { + "black_wool": 1, + "oak_planks": 1 + } + }, + "agent_count": 3, + "target": "magenta_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_2_with_plan__depth_1_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": { + "0": { + "blue_wool": 2, + "oak_planks": 2 + }, + "1": { + "blue_wool": 2 + }, + "2": { + "blue_wool": 2 + } + }, + "agent_count": 3, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_0_with_plan__depth_2_num_agents_3": { + "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": 2, + "flint": 1 + }, + "1": { + "glowstone_dust": 1, + "oak_planks": 2 + }, + "2": { + "glowstone_dust": 1, + "feather": 1 + } + }, + "agent_count": 3, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_1_with_plan__depth_2_num_agents_3": { + "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": 2, + "flint": 1 + }, + "1": { + "glowstone_dust": 1, + "oak_planks": 2 + }, + "2": { + "glowstone_dust": 1, + "feather": 1 + } + }, + "agent_count": 3, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_2_with_plan__depth_2_num_agents_3": { + "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": 2, + "flint": 1 + }, + "1": { + "glowstone_dust": 1, + "oak_planks": 2 + }, + "2": { + "glowstone_dust": 1, + "feather": 1 + } + }, + "agent_count": 3, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_0_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 2, + "oak_log": 1 + }, + "1": { + "bone_meal": 2, + "shears": 1 + }, + "2": { + "bone_meal": 2 + } + }, + "agent_count": 3, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_white_banner_1_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 2, + "oak_log": 1 + }, + "1": { + "bone_meal": 2, + "shears": 1 + }, + "2": { + "bone_meal": 2 + } + }, + "agent_count": 3, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_white_banner_2_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 2, + "oak_log": 1 + }, + "1": { + "bone_meal": 2, + "shears": 1 + }, + "2": { + "bone_meal": 2 + } + }, + "agent_count": 3, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_white_banner_0_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 2, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "bone_meal": 2, + "black_wool": 2 + }, + "2": { + "bone_meal": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_1_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 2, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "bone_meal": 2, + "black_wool": 2 + }, + "2": { + "bone_meal": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_2_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 2, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "bone_meal": 2, + "black_wool": 2 + }, + "2": { + "bone_meal": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_0_with_plan_missing_black_wool_depth_2_num_agents_3": { + "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": 1, + "green_dye": 1, + "oak_log": 1 + }, + "1": { + "blue_dye": 1, + "green_dye": 1, + "shears": 1 + }, + "2": { + "blue_dye": 1, + "green_dye": 1 + } + }, + "agent_count": 3, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_banner_1_with_plan_missing_black_wool_depth_2_num_agents_3": { + "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": 1, + "green_dye": 1, + "oak_log": 1 + }, + "1": { + "blue_dye": 1, + "green_dye": 1, + "shears": 1 + }, + "2": { + "blue_dye": 1, + "green_dye": 1 + } + }, + "agent_count": 3, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_banner_2_with_plan_missing_black_wool_depth_2_num_agents_3": { + "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": 1, + "green_dye": 1, + "oak_log": 1 + }, + "1": { + "blue_dye": 1, + "green_dye": 1, + "shears": 1 + }, + "2": { + "blue_dye": 1, + "green_dye": 1 + } + }, + "agent_count": 3, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_banner_0_with_plan__depth_2_num_agents_3": { + "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": 1, + "green_dye": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "blue_dye": 1, + "green_dye": 1, + "black_wool": 2 + }, + "2": { + "blue_dye": 1, + "green_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_1_with_plan__depth_2_num_agents_3": { + "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": 1, + "green_dye": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "blue_dye": 1, + "green_dye": 1, + "black_wool": 2 + }, + "2": { + "blue_dye": 1, + "green_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_2_with_plan__depth_2_num_agents_3": { + "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": 1, + "green_dye": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "blue_dye": 1, + "green_dye": 1, + "black_wool": 2 + }, + "2": { + "blue_dye": 1, + "green_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_bed_0_with_plan__depth_2_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": { + "0": { + "blue_dye": 2, + "black_wool": 1 + }, + "1": { + "green_dye": 2, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + } + }, + "agent_count": 3, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_bed_1_with_plan__depth_2_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": { + "0": { + "blue_dye": 2, + "black_wool": 1 + }, + "1": { + "green_dye": 2, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + } + }, + "agent_count": 3, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_bed_2_with_plan__depth_2_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": { + "0": { + "blue_dye": 2, + "black_wool": 1 + }, + "1": { + "green_dye": 2, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + } + }, + "agent_count": 3, + "target": "cyan_bed", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_wool_0_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "ink_sac": 1 + }, + "1": { + "bone_meal": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_gray_wool_1_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "ink_sac": 1 + }, + "1": { + "bone_meal": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_gray_wool_2_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "ink_sac": 1 + }, + "1": { + "bone_meal": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_gray_wool_0_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "ink_sac": 1 + }, + "1": { + "bone_meal": 1 + }, + "2": { + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_wool_1_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "ink_sac": 1 + }, + "1": { + "bone_meal": 1 + }, + "2": { + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_gray_wool_2_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an gray_wool", + "conversation": "Let's work together to craft an gray_wool.", + "initial_inventory": { + "0": { + "ink_sac": 1 + }, + "1": { + "bone_meal": 1 + }, + "2": { + "black_wool": 1 + } + }, + "agent_count": 3, + "target": "gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_0_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_log": 1, + "paper": 3, + "leather": 1 + }, + "1": { + "oak_log": 1, + "paper": 3, + "leather": 1 + }, + "2": { + "oak_log": 1, + "paper": 3, + "leather": 1 + } + }, + "agent_count": 3, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_1_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_log": 1, + "paper": 3, + "leather": 1 + }, + "1": { + "oak_log": 1, + "paper": 3, + "leather": 1 + }, + "2": { + "oak_log": 1, + "paper": 3, + "leather": 1 + } + }, + "agent_count": 3, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_2_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_log": 1, + "paper": 3, + "leather": 1 + }, + "1": { + "oak_log": 1, + "paper": 3, + "leather": 1 + }, + "2": { + "oak_log": 1, + "paper": 3, + "leather": 1 + } + }, + "agent_count": 3, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/test_tasks/tasks_3_agents_stats.txt b/tasks/crafting_tasks/test_tasks/tasks_3_agents_stats.txt new file mode 100644 index 0000000..811760c --- /dev/null +++ b/tasks/crafting_tasks/test_tasks/tasks_3_agents_stats.txt @@ -0,0 +1,14 @@ +{ + "num_tasks": 172, + "avg_depth": 2.280701754385965, + "std_depth": 0.6947013990604671, + "num_tasks_based_depth": { + "0": 63, + "1": 81, + "2": 27 + }, + "num_missing_resources": { + "0": 135, + "1": 36 + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/test_tasks/tasks_4_agents.json b/tasks/crafting_tasks/test_tasks/tasks_4_agents.json new file mode 100644 index 0000000..50fa2af --- /dev/null +++ b/tasks/crafting_tasks/test_tasks/tasks_4_agents.json @@ -0,0 +1,5658 @@ +{ + "multiagent_crafting_red_stained_glass_3_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 + }, + "1": { + "glass": 2 + }, + "2": { + "glass": 2 + }, + "3": { + "glass": 2 + } + }, + "agent_count": 4, + "target": "red_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_3_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 1, + "oak_planks": 2 + }, + "1": { + "pink_dye": 1, + "shears": 1 + }, + "2": { + "pink_dye": 3 + }, + "3": { + "pink_dye": 1 + } + }, + "agent_count": 4, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_pink_banner_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_wool": 1, + "stick": 1 + }, + "1": { + "pink_wool": 1 + }, + "2": { + "pink_wool": 3 + }, + "3": { + "pink_wool": 1 + } + }, + "agent_count": 4, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_1_with_plan__depth_1_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": 3, + "oak_planks": 2 + }, + "1": { + "black_wool": 1 + }, + "2": { + "black_wool": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_quartz_bricks_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an quartz_bricks", + "conversation": "Let's work together to craft an quartz_bricks.", + "initial_inventory": { + "0": { + "quartz_block": 1 + }, + "1": { + "quartz_block": 1 + }, + "2": { + "quartz_block": 1 + }, + "3": { + "quartz_block": 1 + } + }, + "agent_count": 4, + "target": "quartz_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_0_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 1, + "oak_planks": 2 + }, + "1": { + "pink_dye": 1, + "shears": 1 + }, + "2": { + "pink_dye": 3 + }, + "3": { + "pink_dye": 1 + } + }, + "agent_count": 4, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_banner_3_with_plan__depth_0_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_wool": 3, + "stick": 1 + }, + "1": { + "cyan_wool": 1 + }, + "2": { + "cyan_wool": 1 + }, + "3": { + "cyan_wool": 1 + } + }, + "agent_count": 4, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_3_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 + }, + "1": { + "cyan_dye": 1, + "black_wool": 1 + }, + "2": { + "cyan_dye": 3, + "black_wool": 3 + }, + "3": { + "cyan_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_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 + }, + "1": { + "granite": 1 + }, + "2": { + "granite": 1 + }, + "3": { + "granite": 1 + } + }, + "agent_count": 4, + "target": "polished_granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_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 + }, + "1": { + "white_dye": 1, + "black_wool": 1 + }, + "2": { + "white_dye": 1, + "black_wool": 1 + }, + "3": { + "white_dye": 1, + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_quartz_bricks_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an quartz_bricks", + "conversation": "Let's work together to craft an quartz_bricks.", + "initial_inventory": { + "0": { + "quartz_block": 1 + }, + "1": { + "quartz_block": 1 + }, + "2": { + "quartz_block": 1 + }, + "3": { + "quartz_block": 1 + } + }, + "agent_count": 4, + "target": "quartz_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_3_with_plan_missing_black_wool_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": 1, + "oak_planks": 2 + }, + "1": { + "white_dye": 1, + "shears": 1 + }, + "2": { + "white_dye": 3 + }, + "3": { + "white_dye": 1 + } + }, + "agent_count": 4, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_leather_leggings_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an leather_leggings", + "conversation": "Let's work together to craft an leather_leggings.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 4 + } + }, + "agent_count": 4, + "target": "leather_leggings", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_3_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 1, + "oak_planks": 2 + }, + "1": { + "red_dye": 1, + "shears": 1 + }, + "2": { + "red_dye": 1 + }, + "3": { + "red_dye": 3 + } + }, + "agent_count": 4, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cut_red_sandstone_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an cut_red_sandstone", + "conversation": "Let's work together to craft an cut_red_sandstone.", + "initial_inventory": { + "0": { + "red_sandstone": 1 + }, + "1": { + "red_sandstone": 1 + }, + "2": { + "red_sandstone": 1 + }, + "3": { + "red_sandstone": 1 + } + }, + "agent_count": 4, + "target": "cut_red_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_1_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 1, + "oak_planks": 2 + }, + "1": { + "red_dye": 1, + "shears": 1 + }, + "2": { + "red_dye": 1 + }, + "3": { + "red_dye": 3 + } + }, + "agent_count": 4, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_pink_banner_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_wool": 1, + "stick": 1 + }, + "1": { + "pink_wool": 1 + }, + "2": { + "pink_wool": 3 + }, + "3": { + "pink_wool": 1 + } + }, + "agent_count": 4, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_0_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 + }, + "1": { + "glowstone_dust": 1, + "stick": 1 + }, + "2": { + "glowstone_dust": 1, + "feather": 1 + }, + "3": { + "glowstone_dust": 1 + } + }, + "agent_count": 4, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_leggings_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an leather_leggings", + "conversation": "Let's work together to craft an leather_leggings.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 4 + } + }, + "agent_count": 4, + "target": "leather_leggings", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_2_with_plan__depth_1_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": 3, + "oak_planks": 2 + }, + "1": { + "black_wool": 1 + }, + "2": { + "black_wool": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_2_with_plan__depth_0_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, + "arrow": 1 + }, + "1": { + "glowstone_dust": 1 + }, + "2": { + "glowstone_dust": 1 + }, + "3": { + "glowstone_dust": 1 + } + }, + "agent_count": 4, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chest_minecart_0_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 + }, + "1": { + "oak_planks": 2, + "iron_ingot": 2 + }, + "2": { + "oak_planks": 2, + "iron_ingot": 1 + }, + "3": { + "oak_planks": 2, + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_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 + }, + "1": { + "white_wool": 3 + }, + "2": { + "white_wool": 1 + }, + "3": { + "white_wool": 1 + } + }, + "agent_count": 4, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_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 + }, + "1": { + "glass": 2, + "green_dye": 1 + }, + "2": { + "glass": 2 + }, + "3": { + "glass": 2 + } + }, + "agent_count": 4, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_3_with_plan__depth_0_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, + "arrow": 1 + }, + "1": { + "glowstone_dust": 1 + }, + "2": { + "glowstone_dust": 1 + }, + "3": { + "glowstone_dust": 1 + } + }, + "agent_count": 4, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_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 + }, + "1": { + "diorite": 1, + "quartz": 1 + }, + "2": { + "diorite": 1, + "quartz": 1 + }, + "3": { + "diorite": 1, + "quartz": 1 + } + }, + "agent_count": 4, + "target": "polished_granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_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 + }, + "1": { + "white_wool": 3 + }, + "2": { + "white_wool": 1 + }, + "3": { + "white_wool": 1 + } + }, + "agent_count": 4, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 3, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "red_dye": 1, + "black_wool": 1 + }, + "2": { + "red_dye": 1, + "black_wool": 1 + }, + "3": { + "red_dye": 1, + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_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 + }, + "1": { + "white_wool": 3 + }, + "2": { + "white_wool": 1 + }, + "3": { + "white_wool": 1 + } + }, + "agent_count": 4, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_3_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 + }, + "1": { + "glass": 2, + "green_dye": 1 + }, + "2": { + "glass": 2 + }, + "3": { + "glass": 2 + } + }, + "agent_count": 4, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_granite_2_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 + }, + "1": { + "granite": 1 + }, + "2": { + "granite": 1 + }, + "3": { + "granite": 1 + } + }, + "agent_count": 4, + "target": "polished_granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_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 + }, + "1": { + "blue_wool": 3 + }, + "2": { + "blue_wool": 1 + }, + "3": { + "blue_wool": 1 + } + }, + "agent_count": 4, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cut_red_sandstone_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an cut_red_sandstone", + "conversation": "Let's work together to craft an cut_red_sandstone.", + "initial_inventory": { + "0": { + "red_sandstone": 1 + }, + "1": { + "red_sandstone": 1 + }, + "2": { + "red_sandstone": 1 + }, + "3": { + "red_sandstone": 1 + } + }, + "agent_count": 4, + "target": "cut_red_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_2_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 1, + "oak_planks": 2 + }, + "1": { + "pink_dye": 1, + "shears": 1 + }, + "2": { + "pink_dye": 3 + }, + "3": { + "pink_dye": 1 + } + }, + "agent_count": 4, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_banner_0_with_plan__depth_0_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_wool": 3, + "stick": 1 + }, + "1": { + "cyan_wool": 1 + }, + "2": { + "cyan_wool": 1 + }, + "3": { + "cyan_wool": 1 + } + }, + "agent_count": 4, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bookshelf_3_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 + }, + "1": { + "paper": 2, + "leather": 3 + }, + "2": { + "paper": 2 + }, + "3": { + "paper": 2 + } + }, + "agent_count": 4, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_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 + }, + "1": { + "waxed_oxidized_copper": 1 + }, + "2": { + "waxed_oxidized_copper": 1 + }, + "3": { + "waxed_oxidized_copper": 1 + } + }, + "agent_count": 4, + "target": "waxed_oxidized_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_2_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 + }, + "1": { + "glass": 2, + "green_dye": 1 + }, + "2": { + "glass": 2 + }, + "3": { + "glass": 2 + } + }, + "agent_count": 4, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_oxidized_cut_copper_2_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 + }, + "1": { + "waxed_oxidized_copper": 1 + }, + "2": { + "waxed_oxidized_copper": 1 + }, + "3": { + "waxed_oxidized_copper": 1 + } + }, + "agent_count": 4, + "target": "waxed_oxidized_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "pink_dye": 1, + "black_wool": 1 + }, + "2": { + "pink_dye": 1, + "black_wool": 3 + }, + "3": { + "pink_dye": 3, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_quartz_bricks_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an quartz_bricks", + "conversation": "Let's work together to craft an quartz_bricks.", + "initial_inventory": { + "0": { + "quartz_block": 1 + }, + "1": { + "quartz_block": 1 + }, + "2": { + "quartz_block": 1 + }, + "3": { + "quartz_block": 1 + } + }, + "agent_count": 4, + "target": "quartz_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_granite_2_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 + }, + "1": { + "diorite": 1, + "quartz": 1 + }, + "2": { + "diorite": 1, + "quartz": 1 + }, + "3": { + "diorite": 1, + "quartz": 1 + } + }, + "agent_count": 4, + "target": "polished_granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_2_with_plan__depth_0_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_wool": 3, + "stick": 1 + }, + "1": { + "cyan_wool": 1 + }, + "2": { + "cyan_wool": 1 + }, + "3": { + "cyan_wool": 1 + } + }, + "agent_count": 4, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_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 + }, + "1": { + "oak_planks": 2, + "iron_ingot": 2 + }, + "2": { + "oak_planks": 2, + "iron_ingot": 1 + }, + "3": { + "oak_planks": 2, + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cut_red_sandstone_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an cut_red_sandstone", + "conversation": "Let's work together to craft an cut_red_sandstone.", + "initial_inventory": { + "0": { + "red_sandstone": 1 + }, + "1": { + "red_sandstone": 1 + }, + "2": { + "red_sandstone": 1 + }, + "3": { + "red_sandstone": 1 + } + }, + "agent_count": 4, + "target": "cut_red_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_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 + }, + "1": { + "cyan_dye": 1, + "black_wool": 1 + }, + "2": { + "cyan_dye": 3, + "black_wool": 3 + }, + "3": { + "cyan_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cut_red_sandstone_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an cut_red_sandstone", + "conversation": "Let's work together to craft an cut_red_sandstone.", + "initial_inventory": { + "0": { + "red_sandstone": 1 + }, + "1": { + "red_sandstone": 1 + }, + "2": { + "red_sandstone": 1 + }, + "3": { + "red_sandstone": 1 + } + }, + "agent_count": 4, + "target": "cut_red_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_2_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 + }, + "1": { + "cyan_dye": 1, + "black_wool": 1 + }, + "2": { + "cyan_dye": 3, + "black_wool": 3 + }, + "3": { + "cyan_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_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 + }, + "1": { + "blue_wool": 1 + }, + "2": { + "blue_wool": 1 + }, + "3": { + "blue_wool": 3 + } + }, + "agent_count": 4, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_1_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 + }, + "1": { + "cyan_dye": 1, + "black_wool": 1 + }, + "2": { + "cyan_dye": 3, + "black_wool": 3 + }, + "3": { + "cyan_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_0_with_plan__depth_0_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, + "arrow": 1 + }, + "1": { + "glowstone_dust": 1 + }, + "2": { + "glowstone_dust": 1 + }, + "3": { + "glowstone_dust": 1 + } + }, + "agent_count": 4, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_1_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 + }, + "1": { + "glass": 2, + "green_dye": 1 + }, + "2": { + "glass": 2 + }, + "3": { + "glass": 2 + } + }, + "agent_count": 4, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_quartz_bricks_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an quartz_bricks", + "conversation": "Let's work together to craft an quartz_bricks.", + "initial_inventory": { + "0": { + "quartz_block": 1 + }, + "1": { + "quartz_block": 1 + }, + "2": { + "quartz_block": 1 + }, + "3": { + "quartz_block": 1 + } + }, + "agent_count": 4, + "target": "quartz_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_2_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 + }, + "1": { + "blue_wool": 3 + }, + "2": { + "blue_wool": 1 + }, + "3": { + "blue_wool": 1 + } + }, + "agent_count": 4, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dark_prismarine_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an dark_prismarine", + "conversation": "Let's work together to craft an dark_prismarine.", + "initial_inventory": { + "0": { + "prismarine_shard": 2, + "black_dye": 1 + }, + "1": { + "prismarine_shard": 2 + }, + "2": { + "prismarine_shard": 2 + }, + "3": { + "prismarine_shard": 2 + } + }, + "agent_count": 4, + "target": "dark_prismarine", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_1_with_plan_missing_black_wool_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": 1, + "oak_planks": 2 + }, + "1": { + "white_dye": 1, + "shears": 1 + }, + "2": { + "white_dye": 3 + }, + "3": { + "white_dye": 1 + } + }, + "agent_count": 4, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_leather_leggings_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an leather_leggings", + "conversation": "Let's work together to craft an leather_leggings.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 4 + } + }, + "agent_count": 4, + "target": "leather_leggings", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_1_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 + }, + "1": { + "white_dye": 1, + "black_wool": 1 + }, + "2": { + "white_dye": 1, + "black_wool": 1 + }, + "3": { + "white_dye": 1, + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_granite_1_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 + }, + "1": { + "granite": 1 + }, + "2": { + "granite": 1 + }, + "3": { + "granite": 1 + } + }, + "agent_count": 4, + "target": "polished_granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_granite_3_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 + }, + "1": { + "diorite": 1, + "quartz": 1 + }, + "2": { + "diorite": 1, + "quartz": 1 + }, + "3": { + "diorite": 1, + "quartz": 1 + } + }, + "agent_count": 4, + "target": "polished_granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_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 + }, + "1": { + "glass": 2 + }, + "2": { + "glass": 2 + }, + "3": { + "glass": 2 + } + }, + "agent_count": 4, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_1_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 + }, + "1": { + "blue_wool": 3 + }, + "2": { + "blue_wool": 1 + }, + "3": { + "blue_wool": 1 + } + }, + "agent_count": 4, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_1_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 + }, + "1": { + "blue_wool": 1 + }, + "2": { + "blue_wool": 1 + }, + "3": { + "blue_wool": 3 + } + }, + "agent_count": 4, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "pink_dye": 1, + "black_wool": 1 + }, + "2": { + "pink_dye": 1, + "black_wool": 3 + }, + "3": { + "pink_dye": 3, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_2_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 + }, + "1": { + "black_wool": 1 + }, + "2": { + "black_wool": 1 + }, + "3": { + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bookshelf_1_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 + }, + "1": { + "paper": 2, + "leather": 3 + }, + "2": { + "paper": 2 + }, + "3": { + "paper": 2 + } + }, + "agent_count": 4, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_stained_glass_2_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 + }, + "1": { + "glass": 2 + }, + "2": { + "glass": 2 + }, + "3": { + "glass": 2 + } + }, + "agent_count": 4, + "target": "red_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 3, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "red_dye": 1, + "black_wool": 1 + }, + "2": { + "red_dye": 1, + "black_wool": 1 + }, + "3": { + "red_dye": 1, + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_2_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 + }, + "1": { + "oak_slab": 1 + }, + "2": { + "oak_slab": 1 + }, + "3": { + "oak_slab": 1 + } + }, + "agent_count": 4, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chest_minecart_1_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 + }, + "1": { + "oak_planks": 2, + "iron_ingot": 2 + }, + "2": { + "oak_planks": 2, + "iron_ingot": 1 + }, + "3": { + "oak_planks": 2, + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dark_prismarine_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an dark_prismarine", + "conversation": "Let's work together to craft an dark_prismarine.", + "initial_inventory": { + "0": { + "prismarine_shard": 2, + "black_dye": 1 + }, + "1": { + "prismarine_shard": 2 + }, + "2": { + "prismarine_shard": 2 + }, + "3": { + "prismarine_shard": 2 + } + }, + "agent_count": 4, + "target": "dark_prismarine", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_2_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 1, + "oak_planks": 2 + }, + "1": { + "red_dye": 1, + "shears": 1 + }, + "2": { + "red_dye": 1 + }, + "3": { + "red_dye": 3 + } + }, + "agent_count": 4, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_waxed_oxidized_cut_copper_3_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 + }, + "1": { + "waxed_oxidized_copper": 1 + }, + "2": { + "waxed_oxidized_copper": 1 + }, + "3": { + "waxed_oxidized_copper": 1 + } + }, + "agent_count": 4, + "target": "waxed_oxidized_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_3_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 + }, + "1": { + "glowstone_dust": 1, + "stick": 1 + }, + "2": { + "glowstone_dust": 1, + "feather": 1 + }, + "3": { + "glowstone_dust": 1 + } + }, + "agent_count": 4, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dark_prismarine_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an dark_prismarine", + "conversation": "Let's work together to craft an dark_prismarine.", + "initial_inventory": { + "0": { + "prismarine_shard": 2, + "black_dye": 1 + }, + "1": { + "prismarine_shard": 2 + }, + "2": { + "prismarine_shard": 2 + }, + "3": { + "prismarine_shard": 2 + } + }, + "agent_count": 4, + "target": "dark_prismarine", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_0_with_plan_missing_black_wool_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": 1, + "oak_planks": 2 + }, + "1": { + "white_dye": 1, + "shears": 1 + }, + "2": { + "white_dye": 3 + }, + "3": { + "white_dye": 1 + } + }, + "agent_count": 4, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_red_banner_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_wool": 3, + "stick": 1 + }, + "1": { + "red_wool": 1 + }, + "2": { + "red_wool": 1 + }, + "3": { + "red_wool": 1 + } + }, + "agent_count": 4, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_1_with_plan_missing_black_wool_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": 3, + "oak_planks": 2 + }, + "1": { + "cyan_dye": 1, + "shears": 1 + }, + "2": { + "cyan_dye": 1 + }, + "3": { + "cyan_dye": 1 + } + }, + "agent_count": 4, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_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 + }, + "1": { + "dark_oak_log": 1 + }, + "2": { + "dark_oak_log": 1 + }, + "3": { + "dark_oak_log": 1 + } + }, + "agent_count": 4, + "target": "smoker", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_0_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 1, + "oak_planks": 2 + }, + "1": { + "red_dye": 1, + "shears": 1 + }, + "2": { + "red_dye": 1 + }, + "3": { + "red_dye": 3 + } + }, + "agent_count": 4, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_smoker_2_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 + }, + "1": { + "dark_oak_log": 1 + }, + "2": { + "dark_oak_log": 1 + }, + "3": { + "dark_oak_log": 1 + } + }, + "agent_count": 4, + "target": "smoker", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_0_with_plan__depth_1_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": 3, + "oak_planks": 2 + }, + "1": { + "black_wool": 1 + }, + "2": { + "black_wool": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_1_with_plan__depth_0_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, + "arrow": 1 + }, + "1": { + "glowstone_dust": 1 + }, + "2": { + "glowstone_dust": 1 + }, + "3": { + "glowstone_dust": 1 + } + }, + "agent_count": 4, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_2_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 + }, + "1": { + "glowstone_dust": 1, + "stick": 1 + }, + "2": { + "glowstone_dust": 1, + "feather": 1 + }, + "3": { + "glowstone_dust": 1 + } + }, + "agent_count": 4, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_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 + }, + "1": { + "blue_wool": 1 + }, + "2": { + "blue_wool": 1 + }, + "3": { + "blue_wool": 3 + } + }, + "agent_count": 4, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bookshelf_0_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 + }, + "1": { + "paper": 2, + "leather": 3 + }, + "2": { + "paper": 2 + }, + "3": { + "paper": 2 + } + }, + "agent_count": 4, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_0_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 + }, + "1": { + "glass": 2 + }, + "2": { + "glass": 2 + }, + "3": { + "glass": 2 + } + }, + "agent_count": 4, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "pink_dye": 1, + "black_wool": 1 + }, + "2": { + "pink_dye": 1, + "black_wool": 3 + }, + "3": { + "pink_dye": 3, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_wool": 1, + "stick": 1 + }, + "1": { + "pink_wool": 1 + }, + "2": { + "pink_wool": 3 + }, + "3": { + "pink_wool": 1 + } + }, + "agent_count": 4, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_2_with_plan_missing_black_wool_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": 1, + "oak_planks": 2 + }, + "1": { + "white_dye": 1, + "shears": 1 + }, + "2": { + "white_dye": 3 + }, + "3": { + "white_dye": 1 + } + }, + "agent_count": 4, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_pink_banner_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_wool": 1, + "stick": 1 + }, + "1": { + "pink_wool": 1 + }, + "2": { + "pink_wool": 3 + }, + "3": { + "pink_wool": 1 + } + }, + "agent_count": 4, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_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 + }, + "1": { + "paper": 2, + "leather": 3 + }, + "2": { + "paper": 2 + }, + "3": { + "paper": 2 + } + }, + "agent_count": 4, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_leggings_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an leather_leggings", + "conversation": "Let's work together to craft an leather_leggings.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 4 + } + }, + "agent_count": 4, + "target": "leather_leggings", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_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 + }, + "1": { + "glowstone_dust": 1, + "stick": 1 + }, + "2": { + "glowstone_dust": 1, + "feather": 1 + }, + "3": { + "glowstone_dust": 1 + } + }, + "agent_count": 4, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_3_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 + }, + "1": { + "black_wool": 1 + }, + "2": { + "black_wool": 1 + }, + "3": { + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_0_with_plan_missing_black_wool_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": 3, + "oak_planks": 2 + }, + "1": { + "cyan_dye": 1, + "shears": 1 + }, + "2": { + "cyan_dye": 1 + }, + "3": { + "cyan_dye": 1 + } + }, + "agent_count": 4, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_smoker_1_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 + }, + "1": { + "dark_oak_log": 1 + }, + "2": { + "dark_oak_log": 1 + }, + "3": { + "dark_oak_log": 1 + } + }, + "agent_count": 4, + "target": "smoker", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_3_with_plan_missing_black_wool_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": 3, + "oak_planks": 2 + }, + "1": { + "cyan_dye": 1, + "shears": 1 + }, + "2": { + "cyan_dye": 1 + }, + "3": { + "cyan_dye": 1 + } + }, + "agent_count": 4, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lectern_1_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 + }, + "1": { + "oak_slab": 1 + }, + "2": { + "oak_slab": 1 + }, + "3": { + "oak_slab": 1 + } + }, + "agent_count": 4, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 3, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "red_dye": 1, + "black_wool": 1 + }, + "2": { + "red_dye": 1, + "black_wool": 1 + }, + "3": { + "red_dye": 1, + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_wool": 3, + "stick": 1 + }, + "1": { + "red_wool": 1 + }, + "2": { + "red_wool": 1 + }, + "3": { + "red_wool": 1 + } + }, + "agent_count": 4, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_granite_1_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 + }, + "1": { + "diorite": 1, + "quartz": 1 + }, + "2": { + "diorite": 1, + "quartz": 1 + }, + "3": { + "diorite": 1, + "quartz": 1 + } + }, + "agent_count": 4, + "target": "polished_granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_stained_glass_1_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 + }, + "1": { + "glass": 2 + }, + "2": { + "glass": 2 + }, + "3": { + "glass": 2 + } + }, + "agent_count": 4, + "target": "red_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "pink_dye": 1, + "black_wool": 1 + }, + "2": { + "pink_dye": 1, + "black_wool": 3 + }, + "3": { + "pink_dye": 3, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_granite_3_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 + }, + "1": { + "granite": 1 + }, + "2": { + "granite": 1 + }, + "3": { + "granite": 1 + } + }, + "agent_count": 4, + "target": "polished_granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_0_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 + }, + "1": { + "blue_wool": 3 + }, + "2": { + "blue_wool": 1 + }, + "3": { + "blue_wool": 1 + } + }, + "agent_count": 4, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_3_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 + }, + "1": { + "white_wool": 3 + }, + "2": { + "white_wool": 1 + }, + "3": { + "white_wool": 1 + } + }, + "agent_count": 4, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_2_with_plan_missing_black_wool_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": 3, + "oak_planks": 2 + }, + "1": { + "cyan_dye": 1, + "shears": 1 + }, + "2": { + "cyan_dye": 1 + }, + "3": { + "cyan_dye": 1 + } + }, + "agent_count": 4, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_red_banner_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_wool": 3, + "stick": 1 + }, + "1": { + "red_wool": 1 + }, + "2": { + "red_wool": 1 + }, + "3": { + "red_wool": 1 + } + }, + "agent_count": 4, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 3, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "red_dye": 1, + "black_wool": 1 + }, + "2": { + "red_dye": 1, + "black_wool": 1 + }, + "3": { + "red_dye": 1, + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_smoker_0_with_plan_missing_furnace_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 + }, + "1": { + "dark_oak_log": 1 + }, + "2": { + "dark_oak_log": 1 + }, + "3": { + "dark_oak_log": 1 + } + }, + "agent_count": 4, + "target": "smoker", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "furnace" + ] + }, + "multiagent_crafting_pink_banner_1_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 1, + "oak_planks": 2 + }, + "1": { + "pink_dye": 1, + "shears": 1 + }, + "2": { + "pink_dye": 3 + }, + "3": { + "pink_dye": 1 + } + }, + "agent_count": 4, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_lectern_3_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 + }, + "1": { + "oak_slab": 1 + }, + "2": { + "oak_slab": 1 + }, + "3": { + "oak_slab": 1 + } + }, + "agent_count": 4, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_3_with_plan__depth_1_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": 3, + "oak_planks": 2 + }, + "1": { + "black_wool": 1 + }, + "2": { + "black_wool": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_0_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 + }, + "1": { + "black_wool": 1 + }, + "2": { + "black_wool": 1 + }, + "3": { + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_3_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 + }, + "1": { + "white_dye": 1, + "black_wool": 1 + }, + "2": { + "white_dye": 1, + "black_wool": 1 + }, + "3": { + "white_dye": 1, + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_smoker_3_with_plan_missing_furnace_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 + }, + "1": { + "dark_oak_log": 1 + }, + "2": { + "dark_oak_log": 1 + }, + "3": { + "dark_oak_log": 1 + } + }, + "agent_count": 4, + "target": "smoker", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "furnace" + ] + }, + "multiagent_crafting_white_banner_2_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 + }, + "1": { + "white_dye": 1, + "black_wool": 1 + }, + "2": { + "white_dye": 1, + "black_wool": 1 + }, + "3": { + "white_dye": 1, + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_1_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 + }, + "1": { + "glass": 2 + }, + "2": { + "glass": 2 + }, + "3": { + "glass": 2 + } + }, + "agent_count": 4, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_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 + }, + "1": { + "oak_planks": 2, + "iron_ingot": 2 + }, + "2": { + "oak_planks": 2, + "iron_ingot": 1 + }, + "3": { + "oak_planks": 2, + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_1_with_plan__depth_0_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_wool": 3, + "stick": 1 + }, + "1": { + "cyan_wool": 1 + }, + "2": { + "cyan_wool": 1 + }, + "3": { + "cyan_wool": 1 + } + }, + "agent_count": 4, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_2_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 + }, + "1": { + "glass": 2 + }, + "2": { + "glass": 2 + }, + "3": { + "glass": 2 + } + }, + "agent_count": 4, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_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 + }, + "1": { + "oak_slab": 1 + }, + "2": { + "oak_slab": 1 + }, + "3": { + "oak_slab": 1 + } + }, + "agent_count": 4, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_smoker_2_with_plan_missing_furnace_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 + }, + "1": { + "dark_oak_log": 1 + }, + "2": { + "dark_oak_log": 1 + }, + "3": { + "dark_oak_log": 1 + } + }, + "agent_count": 4, + "target": "smoker", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "furnace" + ] + }, + "multiagent_crafting_blue_banner_2_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 + }, + "1": { + "blue_wool": 1 + }, + "2": { + "blue_wool": 1 + }, + "3": { + "blue_wool": 3 + } + }, + "agent_count": 4, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_oxidized_cut_copper_0_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 + }, + "1": { + "waxed_oxidized_copper": 1 + }, + "2": { + "waxed_oxidized_copper": 1 + }, + "3": { + "waxed_oxidized_copper": 1 + } + }, + "agent_count": 4, + "target": "waxed_oxidized_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dark_prismarine_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an dark_prismarine", + "conversation": "Let's work together to craft an dark_prismarine.", + "initial_inventory": { + "0": { + "prismarine_shard": 2, + "black_dye": 1 + }, + "1": { + "prismarine_shard": 2 + }, + "2": { + "prismarine_shard": 2 + }, + "3": { + "prismarine_shard": 2 + } + }, + "agent_count": 4, + "target": "dark_prismarine", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_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 + }, + "1": { + "glass": 2 + }, + "2": { + "glass": 2 + }, + "3": { + "glass": 2 + } + }, + "agent_count": 4, + "target": "red_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_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 + }, + "1": { + "black_wool": 1 + }, + "2": { + "black_wool": 1 + }, + "3": { + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_wool": 3, + "stick": 1 + }, + "1": { + "red_wool": 1 + }, + "2": { + "red_wool": 1 + }, + "3": { + "red_wool": 1 + } + }, + "agent_count": 4, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_smoker_1_with_plan_missing_furnace_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 + }, + "1": { + "dark_oak_log": 1 + }, + "2": { + "dark_oak_log": 1 + }, + "3": { + "dark_oak_log": 1 + } + }, + "agent_count": 4, + "target": "smoker", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "furnace" + ] + }, + "multiagent_crafting_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 + }, + "1": { + "dark_oak_log": 1 + }, + "2": { + "dark_oak_log": 1 + }, + "3": { + "dark_oak_log": 1 + } + }, + "agent_count": 4, + "target": "smoker", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_0_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 + }, + "1": { + "glowstone_dust": 1, + "oak_planks": 2 + }, + "2": { + "glowstone_dust": 1, + "feather": 1 + }, + "3": { + "glowstone_dust": 1 + } + }, + "agent_count": 4, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_1_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 + }, + "1": { + "glowstone_dust": 1, + "oak_planks": 2 + }, + "2": { + "glowstone_dust": 1, + "feather": 1 + }, + "3": { + "glowstone_dust": 1 + } + }, + "agent_count": 4, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_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 + }, + "1": { + "glowstone_dust": 1, + "oak_planks": 2 + }, + "2": { + "glowstone_dust": 1, + "feather": 1 + }, + "3": { + "glowstone_dust": 1 + } + }, + "agent_count": 4, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_spectral_arrow_3_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 + }, + "1": { + "glowstone_dust": 1, + "oak_planks": 2 + }, + "2": { + "glowstone_dust": 1, + "feather": 1 + }, + "3": { + "glowstone_dust": 1 + } + }, + "agent_count": 4, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_0_with_plan_missing_black_wool_depth_2_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": { + "bone_meal": 1, + "oak_log": 1 + }, + "1": { + "bone_meal": 1, + "shears": 1 + }, + "2": { + "bone_meal": 3 + }, + "3": { + "bone_meal": 1 + } + }, + "agent_count": 4, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_white_banner_1_with_plan_missing_black_wool_depth_2_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": { + "bone_meal": 1, + "oak_log": 1 + }, + "1": { + "bone_meal": 1, + "shears": 1 + }, + "2": { + "bone_meal": 3 + }, + "3": { + "bone_meal": 1 + } + }, + "agent_count": 4, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_white_banner_2_with_plan_missing_black_wool_depth_2_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": { + "bone_meal": 1, + "oak_log": 1 + }, + "1": { + "bone_meal": 1, + "shears": 1 + }, + "2": { + "bone_meal": 3 + }, + "3": { + "bone_meal": 1 + } + }, + "agent_count": 4, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_white_banner_3_with_plan_missing_black_wool_depth_2_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": { + "bone_meal": 1, + "oak_log": 1 + }, + "1": { + "bone_meal": 1, + "shears": 1 + }, + "2": { + "bone_meal": 3 + }, + "3": { + "bone_meal": 1 + } + }, + "agent_count": 4, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_white_banner_0_with_plan__depth_2_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": { + "bone_meal": 1, + "black_wool": 1, + "oak_log": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 1 + }, + "2": { + "bone_meal": 1, + "black_wool": 1 + }, + "3": { + "bone_meal": 1, + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_1_with_plan__depth_2_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": { + "bone_meal": 1, + "black_wool": 1, + "oak_log": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 1 + }, + "2": { + "bone_meal": 1, + "black_wool": 1 + }, + "3": { + "bone_meal": 1, + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_2_with_plan__depth_2_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": { + "bone_meal": 1, + "black_wool": 1, + "oak_log": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 1 + }, + "2": { + "bone_meal": 1, + "black_wool": 1 + }, + "3": { + "bone_meal": 1, + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_3_with_plan__depth_2_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": { + "bone_meal": 1, + "black_wool": 1, + "oak_log": 1 + }, + "1": { + "bone_meal": 3, + "black_wool": 1 + }, + "2": { + "bone_meal": 1, + "black_wool": 1 + }, + "3": { + "bone_meal": 1, + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_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 + }, + "1": { + "green_dye": 3, + "black_wool": 3 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_1_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 + }, + "1": { + "green_dye": 3, + "black_wool": 3 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_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 + }, + "1": { + "green_dye": 3, + "black_wool": 3 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_3_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 + }, + "1": { + "green_dye": 3, + "black_wool": 3 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_0_with_plan__depth_2_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_log": 3, + "paper": 2 + }, + "1": { + "paper": 3, + "leather": 3 + }, + "2": { + "paper": 2 + }, + "3": { + "paper": 2 + } + }, + "agent_count": 4, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_1_with_plan__depth_2_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_log": 3, + "paper": 2 + }, + "1": { + "paper": 3, + "leather": 3 + }, + "2": { + "paper": 2 + }, + "3": { + "paper": 2 + } + }, + "agent_count": 4, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_2_with_plan__depth_2_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_log": 3, + "paper": 2 + }, + "1": { + "paper": 3, + "leather": 3 + }, + "2": { + "paper": 2 + }, + "3": { + "paper": 2 + } + }, + "agent_count": 4, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_3_with_plan__depth_2_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_log": 3, + "paper": 2 + }, + "1": { + "paper": 3, + "leather": 3 + }, + "2": { + "paper": 2 + }, + "3": { + "paper": 2 + } + }, + "agent_count": 4, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/test_tasks/tasks_4_agents_stats.txt b/tasks/crafting_tasks/test_tasks/tasks_4_agents_stats.txt new file mode 100644 index 0000000..01e38ce --- /dev/null +++ b/tasks/crafting_tasks/test_tasks/tasks_4_agents_stats.txt @@ -0,0 +1,14 @@ +{ + "num_tasks": 153, + "avg_depth": 2.1578947368421053, + "std_depth": 0.7443229275647865, + "num_tasks_based_depth": { + "0": 72, + "1": 60, + "2": 20 + }, + "num_missing_resources": { + "0": 128, + "1": 24 + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/test_tasks/tasks_5_agents.json b/tasks/crafting_tasks/test_tasks/tasks_5_agents.json new file mode 100644 index 0000000..d2cf606 --- /dev/null +++ b/tasks/crafting_tasks/test_tasks/tasks_5_agents.json @@ -0,0 +1,5777 @@ +{ + "multiagent_crafting_cyan_banner_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_wool": 2, + "stick": 1 + }, + "1": { + "cyan_wool": 1 + }, + "2": { + "cyan_wool": 1 + }, + "3": { + "cyan_wool": 1 + }, + "4": { + "cyan_wool": 1 + } + }, + "agent_count": 5, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_0_with_plan_missing_black_wool_depth_1_num_agents_5": { + "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": 2, + "oak_planks": 2 + }, + "1": { + "cyan_dye": 1, + "shears": 1 + }, + "2": { + "cyan_dye": 1 + }, + "3": { + "cyan_dye": 1 + }, + "4": { + "cyan_dye": 1 + } + }, + "agent_count": 5, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_white_banner_0_with_plan__depth_0_num_agents_5": { + "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 + }, + "1": { + "white_wool": 2 + }, + "2": { + "white_wool": 1 + }, + "3": { + "white_wool": 1 + }, + "4": { + "white_wool": 1 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_4_with_plan_missing_black_wool_depth_1_num_agents_5": { + "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": 2, + "oak_planks": 2 + }, + "1": { + "cyan_dye": 1, + "shears": 1 + }, + "2": { + "cyan_dye": 1 + }, + "3": { + "cyan_dye": 1 + }, + "4": { + "cyan_dye": 1 + } + }, + "agent_count": 5, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_black_banner_2_with_plan__depth_0_num_agents_5": { + "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 + }, + "1": { + "black_wool": 1 + }, + "2": { + "black_wool": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_1_with_plan__depth_1_num_agents_5": { + "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": 1, + "blue_dye": 1 + }, + "1": { + "glass": 1, + "green_dye": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 4 + }, + "4": { + "glass": 1 + } + }, + "agent_count": 5, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_wool": 1, + "stick": 1 + }, + "1": { + "red_wool": 1 + }, + "2": { + "red_wool": 1 + }, + "3": { + "red_wool": 1 + }, + "4": { + "red_wool": 2 + } + }, + "agent_count": 5, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_0_with_plan__depth_1_num_agents_5": { + "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": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "white_dye": 1, + "black_wool": 1 + }, + "2": { + "white_dye": 2, + "black_wool": 1 + }, + "3": { + "white_dye": 1, + "black_wool": 2 + }, + "4": { + "white_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_4_with_plan__depth_0_num_agents_5": { + "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 + }, + "1": { + "black_wool": 1 + }, + "2": { + "black_wool": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_3_with_plan__depth_1_num_agents_5": { + "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": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "white_dye": 1, + "black_wool": 1 + }, + "2": { + "white_dye": 2, + "black_wool": 1 + }, + "3": { + "white_dye": 1, + "black_wool": 2 + }, + "4": { + "white_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_3_with_plan__depth_0_num_agents_5": { + "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 + }, + "1": { + "white_wool": 2 + }, + "2": { + "white_wool": 1 + }, + "3": { + "white_wool": 1 + }, + "4": { + "white_wool": 1 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_3_with_plan_missing_black_wool_depth_1_num_agents_5": { + "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": 2, + "oak_planks": 2 + }, + "1": { + "cyan_dye": 1, + "shears": 1 + }, + "2": { + "cyan_dye": 1 + }, + "3": { + "cyan_dye": 1 + }, + "4": { + "cyan_dye": 1 + } + }, + "agent_count": 5, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_blue_banner_4_with_plan__depth_0_num_agents_5": { + "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 + }, + "1": { + "blue_wool": 1 + }, + "2": { + "blue_wool": 2 + }, + "3": { + "blue_wool": 1 + }, + "4": { + "blue_wool": 1 + } + }, + "agent_count": 5, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_4_with_plan__depth_1_num_agents_5": { + "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": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "white_dye": 1, + "black_wool": 1 + }, + "2": { + "white_dye": 2, + "black_wool": 1 + }, + "3": { + "white_dye": 1, + "black_wool": 2 + }, + "4": { + "white_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_wool": 1, + "stick": 1 + }, + "1": { + "pink_wool": 2 + }, + "2": { + "pink_wool": 1 + }, + "3": { + "pink_wool": 1 + }, + "4": { + "pink_wool": 1 + } + }, + "agent_count": 5, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "pink_dye": 1, + "black_wool": 1 + }, + "2": { + "pink_dye": 1, + "black_wool": 1 + }, + "3": { + "pink_dye": 1, + "black_wool": 1 + }, + "4": { + "pink_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_0_with_plan__depth_0_num_agents_5": { + "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 + }, + "1": { + "black_wool": 1 + }, + "2": { + "black_wool": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_0_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 1, + "oak_planks": 2 + }, + "1": { + "pink_dye": 1, + "shears": 1 + }, + "2": { + "pink_dye": 1 + }, + "3": { + "pink_dye": 1 + }, + "4": { + "pink_dye": 2 + } + }, + "agent_count": 5, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_leather_leggings_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an leather_leggings", + "conversation": "Let's work together to craft an leather_leggings.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 3 + }, + "3": { + "leather": 1 + }, + "4": { + "leather": 1 + } + }, + "agent_count": 5, + "target": "leather_leggings", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chest_minecart_0_with_plan__depth_1_num_agents_5": { + "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": 4, + "iron_ingot": 1 + }, + "1": { + "oak_planks": 1, + "iron_ingot": 1 + }, + "2": { + "oak_planks": 1, + "iron_ingot": 1 + }, + "3": { + "oak_planks": 1, + "iron_ingot": 1 + }, + "4": { + "oak_planks": 1, + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_wool": 2, + "stick": 1 + }, + "1": { + "cyan_wool": 1 + }, + "2": { + "cyan_wool": 1 + }, + "3": { + "cyan_wool": 1 + }, + "4": { + "cyan_wool": 1 + } + }, + "agent_count": 5, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_2_with_plan__depth_1_num_agents_5": { + "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": 1, + "blue_dye": 1 + }, + "1": { + "glass": 1, + "green_dye": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 4 + }, + "4": { + "glass": 1 + } + }, + "agent_count": 5, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_wool": 2, + "stick": 1 + }, + "1": { + "cyan_wool": 1 + }, + "2": { + "cyan_wool": 1 + }, + "3": { + "cyan_wool": 1 + }, + "4": { + "cyan_wool": 1 + } + }, + "agent_count": 5, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_1_with_plan__depth_1_num_agents_5": { + "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, + "oak_planks": 2 + }, + "1": { + "black_wool": 1 + }, + "2": { + "black_wool": 2 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_1_with_plan__depth_0_num_agents_5": { + "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": 1, + "cyan_dye": 1 + }, + "1": { + "glass": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 4 + }, + "4": { + "glass": 1 + } + }, + "agent_count": 5, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_0_with_plan__depth_1_num_agents_5": { + "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, + "oak_planks": 2 + }, + "1": { + "black_wool": 1 + }, + "2": { + "black_wool": 2 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_stained_glass_0_with_plan__depth_0_num_agents_5": { + "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": 1, + "red_dye": 1 + }, + "1": { + "glass": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 1 + }, + "4": { + "glass": 4 + } + }, + "agent_count": 5, + "target": "red_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_2_with_plan_missing_black_wool_depth_1_num_agents_5": { + "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": 1, + "oak_planks": 2 + }, + "1": { + "white_dye": 1, + "shears": 1 + }, + "2": { + "white_dye": 2 + }, + "3": { + "white_dye": 1 + }, + "4": { + "white_dye": 1 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_dark_prismarine_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an dark_prismarine", + "conversation": "Let's work together to craft an dark_prismarine.", + "initial_inventory": { + "0": { + "prismarine_shard": 1, + "black_dye": 1 + }, + "1": { + "prismarine_shard": 1 + }, + "2": { + "prismarine_shard": 1 + }, + "3": { + "prismarine_shard": 1 + }, + "4": { + "prismarine_shard": 4 + } + }, + "agent_count": 5, + "target": "dark_prismarine", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_1_with_plan_missing_black_wool_depth_1_num_agents_5": { + "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": 2, + "oak_planks": 2 + }, + "1": { + "cyan_dye": 1, + "shears": 1 + }, + "2": { + "cyan_dye": 1 + }, + "3": { + "cyan_dye": 1 + }, + "4": { + "cyan_dye": 1 + } + }, + "agent_count": 5, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_stained_glass_2_with_plan__depth_0_num_agents_5": { + "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": 1, + "cyan_dye": 1 + }, + "1": { + "glass": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 4 + }, + "4": { + "glass": 1 + } + }, + "agent_count": 5, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_4_with_plan__depth_1_num_agents_5": { + "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 + }, + "1": { + "cyan_dye": 1, + "black_wool": 1 + }, + "2": { + "cyan_dye": 2, + "black_wool": 2 + }, + "3": { + "cyan_dye": 1, + "black_wool": 1 + }, + "4": { + "cyan_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_leggings_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an leather_leggings", + "conversation": "Let's work together to craft an leather_leggings.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 3 + }, + "3": { + "leather": 1 + }, + "4": { + "leather": 1 + } + }, + "agent_count": 5, + "target": "leather_leggings", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "red_dye": 1, + "black_wool": 2 + }, + "2": { + "red_dye": 1, + "black_wool": 1 + }, + "3": { + "red_dye": 2, + "black_wool": 1 + }, + "4": { + "red_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_stained_glass_2_with_plan__depth_0_num_agents_5": { + "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": 1, + "red_dye": 1 + }, + "1": { + "glass": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 1 + }, + "4": { + "glass": 4 + } + }, + "agent_count": 5, + "target": "red_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "pink_dye": 1, + "black_wool": 1 + }, + "2": { + "pink_dye": 1, + "black_wool": 1 + }, + "3": { + "pink_dye": 1, + "black_wool": 1 + }, + "4": { + "pink_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_wool": 1, + "stick": 1 + }, + "1": { + "red_wool": 1 + }, + "2": { + "red_wool": 1 + }, + "3": { + "red_wool": 1 + }, + "4": { + "red_wool": 2 + } + }, + "agent_count": 5, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_0_with_plan_missing_black_wool_depth_1_num_agents_5": { + "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": 1, + "oak_planks": 2 + }, + "1": { + "white_dye": 1, + "shears": 1 + }, + "2": { + "white_dye": 2 + }, + "3": { + "white_dye": 1 + }, + "4": { + "white_dye": 1 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_dark_prismarine_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an dark_prismarine", + "conversation": "Let's work together to craft an dark_prismarine.", + "initial_inventory": { + "0": { + "prismarine_shard": 1, + "black_dye": 1 + }, + "1": { + "prismarine_shard": 1 + }, + "2": { + "prismarine_shard": 1 + }, + "3": { + "prismarine_shard": 1 + }, + "4": { + "prismarine_shard": 4 + } + }, + "agent_count": 5, + "target": "dark_prismarine", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_1_with_plan__depth_1_num_agents_5": { + "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 + }, + "1": { + "blue_wool": 1 + }, + "2": { + "blue_wool": 2 + }, + "3": { + "blue_wool": 1 + }, + "4": { + "blue_wool": 1 + } + }, + "agent_count": 5, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_3_with_plan__depth_0_num_agents_5": { + "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 + }, + "1": { + "black_wool": 1 + }, + "2": { + "black_wool": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_4_with_plan__depth_1_num_agents_5": { + "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, + "oak_planks": 2 + }, + "1": { + "black_wool": 1 + }, + "2": { + "black_wool": 2 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_1_with_plan__depth_0_num_agents_5": { + "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 + }, + "1": { + "black_wool": 1 + }, + "2": { + "black_wool": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_3_with_plan__depth_1_num_agents_5": { + "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 + }, + "1": { + "blue_wool": 1 + }, + "2": { + "blue_wool": 2 + }, + "3": { + "blue_wool": 1 + }, + "4": { + "blue_wool": 1 + } + }, + "agent_count": 5, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_stained_glass_3_with_plan__depth_0_num_agents_5": { + "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": 1, + "red_dye": 1 + }, + "1": { + "glass": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 1 + }, + "4": { + "glass": 4 + } + }, + "agent_count": 5, + "target": "red_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bookshelf_0_with_plan__depth_1_num_agents_5": { + "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": 1 + }, + "1": { + "paper": 1, + "leather": 3 + }, + "2": { + "paper": 1 + }, + "3": { + "paper": 1 + }, + "4": { + "paper": 5 + } + }, + "agent_count": 5, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_stained_glass_1_with_plan__depth_0_num_agents_5": { + "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": 1, + "red_dye": 1 + }, + "1": { + "glass": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 1 + }, + "4": { + "glass": 4 + } + }, + "agent_count": 5, + "target": "red_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bookshelf_3_with_plan__depth_1_num_agents_5": { + "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": 1 + }, + "1": { + "paper": 1, + "leather": 3 + }, + "2": { + "paper": 1 + }, + "3": { + "paper": 1 + }, + "4": { + "paper": 5 + } + }, + "agent_count": 5, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_wool": 1, + "stick": 1 + }, + "1": { + "pink_wool": 2 + }, + "2": { + "pink_wool": 1 + }, + "3": { + "pink_wool": 1 + }, + "4": { + "pink_wool": 1 + } + }, + "agent_count": 5, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_3_with_plan_missing_black_wool_depth_1_num_agents_5": { + "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": 1, + "oak_planks": 2 + }, + "1": { + "white_dye": 1, + "shears": 1 + }, + "2": { + "white_dye": 2 + }, + "3": { + "white_dye": 1 + }, + "4": { + "white_dye": 1 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_banner_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_wool": 2, + "stick": 1 + }, + "1": { + "cyan_wool": 1 + }, + "2": { + "cyan_wool": 1 + }, + "3": { + "cyan_wool": 1 + }, + "4": { + "cyan_wool": 1 + } + }, + "agent_count": 5, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_2_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 1, + "oak_planks": 2 + }, + "1": { + "pink_dye": 1, + "shears": 1 + }, + "2": { + "pink_dye": 1 + }, + "3": { + "pink_dye": 1 + }, + "4": { + "pink_dye": 2 + } + }, + "agent_count": 5, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_pink_banner_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_wool": 1, + "stick": 1 + }, + "1": { + "pink_wool": 2 + }, + "2": { + "pink_wool": 1 + }, + "3": { + "pink_wool": 1 + }, + "4": { + "pink_wool": 1 + } + }, + "agent_count": 5, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_0_with_plan__depth_1_num_agents_5": { + "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 + }, + "1": { + "cyan_dye": 1, + "black_wool": 1 + }, + "2": { + "cyan_dye": 2, + "black_wool": 2 + }, + "3": { + "cyan_dye": 1, + "black_wool": 1 + }, + "4": { + "cyan_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_leggings_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an leather_leggings", + "conversation": "Let's work together to craft an leather_leggings.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 3 + }, + "3": { + "leather": 1 + }, + "4": { + "leather": 1 + } + }, + "agent_count": 5, + "target": "leather_leggings", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_4_with_plan__depth_1_num_agents_5": { + "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 + }, + "1": { + "blue_wool": 1 + }, + "2": { + "blue_wool": 2 + }, + "3": { + "blue_wool": 1 + }, + "4": { + "blue_wool": 1 + } + }, + "agent_count": 5, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_1_with_plan__depth_0_num_agents_5": { + "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 + }, + "1": { + "blue_wool": 1 + }, + "2": { + "blue_wool": 2 + }, + "3": { + "blue_wool": 1 + }, + "4": { + "blue_wool": 1 + } + }, + "agent_count": 5, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_1_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 1, + "oak_planks": 2 + }, + "1": { + "pink_dye": 1, + "shears": 1 + }, + "2": { + "pink_dye": 1 + }, + "3": { + "pink_dye": 1 + }, + "4": { + "pink_dye": 2 + } + }, + "agent_count": 5, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_pink_banner_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_wool": 1, + "stick": 1 + }, + "1": { + "pink_wool": 2 + }, + "2": { + "pink_wool": 1 + }, + "3": { + "pink_wool": 1 + }, + "4": { + "pink_wool": 1 + } + }, + "agent_count": 5, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bookshelf_1_with_plan__depth_1_num_agents_5": { + "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": 1 + }, + "1": { + "paper": 1, + "leather": 3 + }, + "2": { + "paper": 1 + }, + "3": { + "paper": 1 + }, + "4": { + "paper": 5 + } + }, + "agent_count": 5, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_wool": 1, + "stick": 1 + }, + "1": { + "red_wool": 1 + }, + "2": { + "red_wool": 1 + }, + "3": { + "red_wool": 1 + }, + "4": { + "red_wool": 2 + } + }, + "agent_count": 5, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bookshelf_2_with_plan__depth_1_num_agents_5": { + "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": 1 + }, + "1": { + "paper": 1, + "leather": 3 + }, + "2": { + "paper": 1 + }, + "3": { + "paper": 1 + }, + "4": { + "paper": 5 + } + }, + "agent_count": 5, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_4_with_plan__depth_0_num_agents_5": { + "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 + }, + "1": { + "white_wool": 2 + }, + "2": { + "white_wool": 1 + }, + "3": { + "white_wool": 1 + }, + "4": { + "white_wool": 1 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_4_with_plan_missing_black_wool_depth_1_num_agents_5": { + "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": 1, + "oak_planks": 2 + }, + "1": { + "white_dye": 1, + "shears": 1 + }, + "2": { + "white_dye": 2 + }, + "3": { + "white_dye": 1 + }, + "4": { + "white_dye": 1 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_white_banner_2_with_plan__depth_0_num_agents_5": { + "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 + }, + "1": { + "white_wool": 2 + }, + "2": { + "white_wool": 1 + }, + "3": { + "white_wool": 1 + }, + "4": { + "white_wool": 1 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bookshelf_4_with_plan__depth_1_num_agents_5": { + "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": 1 + }, + "1": { + "paper": 1, + "leather": 3 + }, + "2": { + "paper": 1 + }, + "3": { + "paper": 1 + }, + "4": { + "paper": 5 + } + }, + "agent_count": 5, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dark_prismarine_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an dark_prismarine", + "conversation": "Let's work together to craft an dark_prismarine.", + "initial_inventory": { + "0": { + "prismarine_shard": 1, + "black_dye": 1 + }, + "1": { + "prismarine_shard": 1 + }, + "2": { + "prismarine_shard": 1 + }, + "3": { + "prismarine_shard": 1 + }, + "4": { + "prismarine_shard": 4 + } + }, + "agent_count": 5, + "target": "dark_prismarine", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_1_with_plan__depth_1_num_agents_5": { + "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": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "white_dye": 1, + "black_wool": 1 + }, + "2": { + "white_dye": 2, + "black_wool": 1 + }, + "3": { + "white_dye": 1, + "black_wool": 2 + }, + "4": { + "white_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_stained_glass_4_with_plan__depth_0_num_agents_5": { + "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": 1, + "red_dye": 1 + }, + "1": { + "glass": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 1 + }, + "4": { + "glass": 4 + } + }, + "agent_count": 5, + "target": "red_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "pink_dye": 1, + "black_wool": 1 + }, + "2": { + "pink_dye": 1, + "black_wool": 1 + }, + "3": { + "pink_dye": 1, + "black_wool": 1 + }, + "4": { + "pink_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_wool": 2, + "stick": 1 + }, + "1": { + "cyan_wool": 1 + }, + "2": { + "cyan_wool": 1 + }, + "3": { + "cyan_wool": 1 + }, + "4": { + "cyan_wool": 1 + } + }, + "agent_count": 5, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_1_with_plan_missing_black_wool_depth_1_num_agents_5": { + "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": 1, + "oak_planks": 2 + }, + "1": { + "white_dye": 1, + "shears": 1 + }, + "2": { + "white_dye": 2 + }, + "3": { + "white_dye": 1 + }, + "4": { + "white_dye": 1 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_white_banner_1_with_plan__depth_0_num_agents_5": { + "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 + }, + "1": { + "white_wool": 2 + }, + "2": { + "white_wool": 1 + }, + "3": { + "white_wool": 1 + }, + "4": { + "white_wool": 1 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_3_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 1, + "oak_planks": 2 + }, + "1": { + "pink_dye": 1, + "shears": 1 + }, + "2": { + "pink_dye": 1 + }, + "3": { + "pink_dye": 1 + }, + "4": { + "pink_dye": 2 + } + }, + "agent_count": 5, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_dark_prismarine_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an dark_prismarine", + "conversation": "Let's work together to craft an dark_prismarine.", + "initial_inventory": { + "0": { + "prismarine_shard": 1, + "black_dye": 1 + }, + "1": { + "prismarine_shard": 1 + }, + "2": { + "prismarine_shard": 1 + }, + "3": { + "prismarine_shard": 1 + }, + "4": { + "prismarine_shard": 4 + } + }, + "agent_count": 5, + "target": "dark_prismarine", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_4_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 1, + "oak_planks": 2 + }, + "1": { + "pink_dye": 1, + "shears": 1 + }, + "2": { + "pink_dye": 1 + }, + "3": { + "pink_dye": 1 + }, + "4": { + "pink_dye": 2 + } + }, + "agent_count": 5, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_dark_prismarine_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an dark_prismarine", + "conversation": "Let's work together to craft an dark_prismarine.", + "initial_inventory": { + "0": { + "prismarine_shard": 1, + "black_dye": 1 + }, + "1": { + "prismarine_shard": 1 + }, + "2": { + "prismarine_shard": 1 + }, + "3": { + "prismarine_shard": 1 + }, + "4": { + "prismarine_shard": 4 + } + }, + "agent_count": 5, + "target": "dark_prismarine", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "red_dye": 1, + "black_wool": 2 + }, + "2": { + "red_dye": 1, + "black_wool": 1 + }, + "3": { + "red_dye": 2, + "black_wool": 1 + }, + "4": { + "red_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_leggings_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an leather_leggings", + "conversation": "Let's work together to craft an leather_leggings.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 3 + }, + "3": { + "leather": 1 + }, + "4": { + "leather": 1 + } + }, + "agent_count": 5, + "target": "leather_leggings", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_3_with_plan__depth_1_num_agents_5": { + "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": 1, + "blue_dye": 1 + }, + "1": { + "glass": 1, + "green_dye": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 4 + }, + "4": { + "glass": 1 + } + }, + "agent_count": 5, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_wool": 1, + "stick": 1 + }, + "1": { + "pink_wool": 2 + }, + "2": { + "pink_wool": 1 + }, + "3": { + "pink_wool": 1 + }, + "4": { + "pink_wool": 1 + } + }, + "agent_count": 5, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_3_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 1, + "oak_planks": 2 + }, + "1": { + "red_dye": 2, + "shears": 1 + }, + "2": { + "red_dye": 1 + }, + "3": { + "red_dye": 1 + }, + "4": { + "red_dye": 1 + } + }, + "agent_count": 5, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_blue_banner_3_with_plan__depth_0_num_agents_5": { + "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 + }, + "1": { + "blue_wool": 1 + }, + "2": { + "blue_wool": 2 + }, + "3": { + "blue_wool": 1 + }, + "4": { + "blue_wool": 1 + } + }, + "agent_count": 5, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_0_with_plan__depth_1_num_agents_5": { + "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": 1, + "blue_dye": 1 + }, + "1": { + "glass": 1, + "green_dye": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 4 + }, + "4": { + "glass": 1 + } + }, + "agent_count": 5, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_0_with_plan__depth_0_num_agents_5": { + "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": 1, + "cyan_dye": 1 + }, + "1": { + "glass": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 4 + }, + "4": { + "glass": 1 + } + }, + "agent_count": 5, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chest_minecart_4_with_plan__depth_1_num_agents_5": { + "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": 4, + "iron_ingot": 1 + }, + "1": { + "oak_planks": 1, + "iron_ingot": 1 + }, + "2": { + "oak_planks": 1, + "iron_ingot": 1 + }, + "3": { + "oak_planks": 1, + "iron_ingot": 1 + }, + "4": { + "oak_planks": 1, + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_3_with_plan__depth_0_num_agents_5": { + "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": 1, + "cyan_dye": 1 + }, + "1": { + "glass": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 4 + }, + "4": { + "glass": 1 + } + }, + "agent_count": 5, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_4_with_plan__depth_1_num_agents_5": { + "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": 1, + "blue_dye": 1 + }, + "1": { + "glass": 1, + "green_dye": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 4 + }, + "4": { + "glass": 1 + } + }, + "agent_count": 5, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_wool": 1, + "stick": 1 + }, + "1": { + "red_wool": 1 + }, + "2": { + "red_wool": 1 + }, + "3": { + "red_wool": 1 + }, + "4": { + "red_wool": 2 + } + }, + "agent_count": 5, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "red_dye": 1, + "black_wool": 2 + }, + "2": { + "red_dye": 1, + "black_wool": 1 + }, + "3": { + "red_dye": 2, + "black_wool": 1 + }, + "4": { + "red_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_stained_glass_4_with_plan__depth_0_num_agents_5": { + "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": 1, + "cyan_dye": 1 + }, + "1": { + "glass": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 4 + }, + "4": { + "glass": 1 + } + }, + "agent_count": 5, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_0_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 1, + "oak_planks": 2 + }, + "1": { + "red_dye": 2, + "shears": 1 + }, + "2": { + "red_dye": 1 + }, + "3": { + "red_dye": 1 + }, + "4": { + "red_dye": 1 + } + }, + "agent_count": 5, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_leather_leggings_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an leather_leggings", + "conversation": "Let's work together to craft an leather_leggings.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 3 + }, + "3": { + "leather": 1 + }, + "4": { + "leather": 1 + } + }, + "agent_count": 5, + "target": "leather_leggings", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "pink_dye": 1, + "black_wool": 1 + }, + "2": { + "pink_dye": 1, + "black_wool": 1 + }, + "3": { + "pink_dye": 1, + "black_wool": 1 + }, + "4": { + "pink_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_wool": 1, + "stick": 1 + }, + "1": { + "red_wool": 1 + }, + "2": { + "red_wool": 1 + }, + "3": { + "red_wool": 1 + }, + "4": { + "red_wool": 2 + } + }, + "agent_count": 5, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_1_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 1, + "oak_planks": 2 + }, + "1": { + "red_dye": 2, + "shears": 1 + }, + "2": { + "red_dye": 1 + }, + "3": { + "red_dye": 1 + }, + "4": { + "red_dye": 1 + } + }, + "agent_count": 5, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_blue_banner_0_with_plan__depth_0_num_agents_5": { + "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 + }, + "1": { + "blue_wool": 1 + }, + "2": { + "blue_wool": 2 + }, + "3": { + "blue_wool": 1 + }, + "4": { + "blue_wool": 1 + } + }, + "agent_count": 5, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_2_with_plan__depth_1_num_agents_5": { + "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, + "oak_planks": 2 + }, + "1": { + "black_wool": 1 + }, + "2": { + "black_wool": 2 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_2_with_plan__depth_0_num_agents_5": { + "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 + }, + "1": { + "blue_wool": 1 + }, + "2": { + "blue_wool": 2 + }, + "3": { + "blue_wool": 1 + }, + "4": { + "blue_wool": 1 + } + }, + "agent_count": 5, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "red_dye": 1, + "black_wool": 2 + }, + "2": { + "red_dye": 1, + "black_wool": 1 + }, + "3": { + "red_dye": 2, + "black_wool": 1 + }, + "4": { + "red_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_pink_banner_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an pink_banner", + "conversation": "Let's work together to craft an pink_banner.", + "initial_inventory": { + "0": { + "pink_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "pink_dye": 1, + "black_wool": 1 + }, + "2": { + "pink_dye": 1, + "black_wool": 1 + }, + "3": { + "pink_dye": 1, + "black_wool": 1 + }, + "4": { + "pink_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "pink_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_1_with_plan__depth_1_num_agents_5": { + "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 + }, + "1": { + "cyan_dye": 1, + "black_wool": 1 + }, + "2": { + "cyan_dye": 2, + "black_wool": 2 + }, + "3": { + "cyan_dye": 1, + "black_wool": 1 + }, + "4": { + "cyan_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_2_with_plan_missing_black_wool_depth_1_num_agents_5": { + "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": 2, + "oak_planks": 2 + }, + "1": { + "cyan_dye": 1, + "shears": 1 + }, + "2": { + "cyan_dye": 1 + }, + "3": { + "cyan_dye": 1 + }, + "4": { + "cyan_dye": 1 + } + }, + "agent_count": 5, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_chest_minecart_2_with_plan__depth_1_num_agents_5": { + "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": 4, + "iron_ingot": 1 + }, + "1": { + "oak_planks": 1, + "iron_ingot": 1 + }, + "2": { + "oak_planks": 1, + "iron_ingot": 1 + }, + "3": { + "oak_planks": 1, + "iron_ingot": 1 + }, + "4": { + "oak_planks": 1, + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_2_with_plan__depth_1_num_agents_5": { + "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 + }, + "1": { + "blue_wool": 1 + }, + "2": { + "blue_wool": 2 + }, + "3": { + "blue_wool": 1 + }, + "4": { + "blue_wool": 1 + } + }, + "agent_count": 5, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_banner_0_with_plan__depth_1_num_agents_5": { + "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 + }, + "1": { + "blue_wool": 1 + }, + "2": { + "blue_wool": 2 + }, + "3": { + "blue_wool": 1 + }, + "4": { + "blue_wool": 1 + } + }, + "agent_count": 5, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_4_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 1, + "oak_planks": 2 + }, + "1": { + "red_dye": 2, + "shears": 1 + }, + "2": { + "red_dye": 1 + }, + "3": { + "red_dye": 1 + }, + "4": { + "red_dye": 1 + } + }, + "agent_count": 5, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_banner_3_with_plan__depth_1_num_agents_5": { + "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 + }, + "1": { + "cyan_dye": 1, + "black_wool": 1 + }, + "2": { + "cyan_dye": 2, + "black_wool": 2 + }, + "3": { + "cyan_dye": 1, + "black_wool": 1 + }, + "4": { + "cyan_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chest_minecart_1_with_plan__depth_1_num_agents_5": { + "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": 4, + "iron_ingot": 1 + }, + "1": { + "oak_planks": 1, + "iron_ingot": 1 + }, + "2": { + "oak_planks": 1, + "iron_ingot": 1 + }, + "3": { + "oak_planks": 1, + "iron_ingot": 1 + }, + "4": { + "oak_planks": 1, + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_2_with_plan__depth_1_num_agents_5": { + "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 + }, + "1": { + "cyan_dye": 1, + "black_wool": 1 + }, + "2": { + "cyan_dye": 2, + "black_wool": 2 + }, + "3": { + "cyan_dye": 1, + "black_wool": 1 + }, + "4": { + "cyan_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_2_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 1, + "oak_planks": 2 + }, + "1": { + "red_dye": 2, + "shears": 1 + }, + "2": { + "red_dye": 1 + }, + "3": { + "red_dye": 1 + }, + "4": { + "red_dye": 1 + } + }, + "agent_count": 5, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_chest_minecart_3_with_plan__depth_1_num_agents_5": { + "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": 4, + "iron_ingot": 1 + }, + "1": { + "oak_planks": 1, + "iron_ingot": 1 + }, + "2": { + "oak_planks": 1, + "iron_ingot": 1 + }, + "3": { + "oak_planks": 1, + "iron_ingot": 1 + }, + "4": { + "oak_planks": 1, + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_black_banner_3_with_plan__depth_1_num_agents_5": { + "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, + "oak_planks": 2 + }, + "1": { + "black_wool": 1 + }, + "2": { + "black_wool": 2 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_banner_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_banner", + "conversation": "Let's work together to craft an red_banner.", + "initial_inventory": { + "0": { + "red_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "red_dye": 1, + "black_wool": 2 + }, + "2": { + "red_dye": 1, + "black_wool": 1 + }, + "3": { + "red_dye": 2, + "black_wool": 1 + }, + "4": { + "red_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "red_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_2_with_plan__depth_1_num_agents_5": { + "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": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "white_dye": 1, + "black_wool": 1 + }, + "2": { + "white_dye": 2, + "black_wool": 1 + }, + "3": { + "white_dye": 1, + "black_wool": 2 + }, + "4": { + "white_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_0_with_plan_missing_black_wool_depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 1, + "oak_log": 1 + }, + "1": { + "bone_meal": 1, + "shears": 1 + }, + "2": { + "bone_meal": 1 + }, + "3": { + "bone_meal": 1 + }, + "4": { + "bone_meal": 2 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_white_banner_1_with_plan_missing_black_wool_depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 1, + "oak_log": 1 + }, + "1": { + "bone_meal": 1, + "shears": 1 + }, + "2": { + "bone_meal": 1 + }, + "3": { + "bone_meal": 1 + }, + "4": { + "bone_meal": 2 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_white_banner_2_with_plan_missing_black_wool_depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 1, + "oak_log": 1 + }, + "1": { + "bone_meal": 1, + "shears": 1 + }, + "2": { + "bone_meal": 1 + }, + "3": { + "bone_meal": 1 + }, + "4": { + "bone_meal": 2 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_white_banner_3_with_plan_missing_black_wool_depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 1, + "oak_log": 1 + }, + "1": { + "bone_meal": 1, + "shears": 1 + }, + "2": { + "bone_meal": 1 + }, + "3": { + "bone_meal": 1 + }, + "4": { + "bone_meal": 2 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_white_banner_4_with_plan_missing_black_wool_depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 1, + "oak_log": 1 + }, + "1": { + "bone_meal": 1, + "shears": 1 + }, + "2": { + "bone_meal": 1 + }, + "3": { + "bone_meal": 1 + }, + "4": { + "bone_meal": 2 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_white_banner_0_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "bone_meal": 1, + "black_wool": 1 + }, + "2": { + "bone_meal": 1, + "black_wool": 1 + }, + "3": { + "bone_meal": 1, + "black_wool": 1 + }, + "4": { + "bone_meal": 2, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_1_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "bone_meal": 1, + "black_wool": 1 + }, + "2": { + "bone_meal": 1, + "black_wool": 1 + }, + "3": { + "bone_meal": 1, + "black_wool": 1 + }, + "4": { + "bone_meal": 2, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_2_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "bone_meal": 1, + "black_wool": 1 + }, + "2": { + "bone_meal": 1, + "black_wool": 1 + }, + "3": { + "bone_meal": 1, + "black_wool": 1 + }, + "4": { + "bone_meal": 2, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_3_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "bone_meal": 1, + "black_wool": 1 + }, + "2": { + "bone_meal": 1, + "black_wool": 1 + }, + "3": { + "bone_meal": 1, + "black_wool": 1 + }, + "4": { + "bone_meal": 2, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_white_banner_4_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "bone_meal": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "bone_meal": 1, + "black_wool": 1 + }, + "2": { + "bone_meal": 1, + "black_wool": 1 + }, + "3": { + "bone_meal": 1, + "black_wool": 1 + }, + "4": { + "bone_meal": 2, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_0_with_plan__depth_2_num_agents_5": { + "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 + }, + "1": { + "green_dye": 3, + "black_wool": 2 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_1_with_plan__depth_2_num_agents_5": { + "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 + }, + "1": { + "green_dye": 3, + "black_wool": 2 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_2_with_plan__depth_2_num_agents_5": { + "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 + }, + "1": { + "green_dye": 3, + "black_wool": 2 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_3_with_plan__depth_2_num_agents_5": { + "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 + }, + "1": { + "green_dye": 3, + "black_wool": 2 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_banner_4_with_plan__depth_2_num_agents_5": { + "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 + }, + "1": { + "green_dye": 3, + "black_wool": 2 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_0_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_log": 3, + "paper": 1 + }, + "1": { + "paper": 1, + "leather": 3 + }, + "2": { + "paper": 1 + }, + "3": { + "paper": 5 + }, + "4": { + "paper": 1 + } + }, + "agent_count": 5, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_1_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_log": 3, + "paper": 1 + }, + "1": { + "paper": 1, + "leather": 3 + }, + "2": { + "paper": 1 + }, + "3": { + "paper": 5 + }, + "4": { + "paper": 1 + } + }, + "agent_count": 5, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_2_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_log": 3, + "paper": 1 + }, + "1": { + "paper": 1, + "leather": 3 + }, + "2": { + "paper": 1 + }, + "3": { + "paper": 5 + }, + "4": { + "paper": 1 + } + }, + "agent_count": 5, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_3_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_log": 3, + "paper": 1 + }, + "1": { + "paper": 1, + "leather": 3 + }, + "2": { + "paper": 1 + }, + "3": { + "paper": 5 + }, + "4": { + "paper": 1 + } + }, + "agent_count": 5, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lectern_4_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_log": 3, + "paper": 1 + }, + "1": { + "paper": 1, + "leather": 3 + }, + "2": { + "paper": 1 + }, + "3": { + "paper": 5 + }, + "4": { + "paper": 1 + } + }, + "agent_count": 5, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/test_tasks/tasks_5_agents_stats.txt b/tasks/crafting_tasks/test_tasks/tasks_5_agents_stats.txt new file mode 100644 index 0000000..0b8cc23 --- /dev/null +++ b/tasks/crafting_tasks/test_tasks/tasks_5_agents_stats.txt @@ -0,0 +1,14 @@ +{ + "num_tasks": 136, + "avg_depth": 2.259259259259259, + "std_depth": 0.6436350813697311, + "num_tasks_based_depth": { + "0": 50, + "1": 65, + "2": 20 + }, + "num_missing_resources": { + "0": 110, + "1": 25 + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/train_tasks/tasks_2_agents.json b/tasks/crafting_tasks/train_tasks/tasks_2_agents.json new file mode 100644 index 0000000..67c3c9d --- /dev/null +++ b/tasks/crafting_tasks/train_tasks/tasks_2_agents.json @@ -0,0 +1,7800 @@ +{ + "multiagent_crafting_blast_furnace_0_with_plan_missing_furnace_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "smooth_stone": 1 + }, + "1": { + "iron_ingot": 3, + "smooth_stone": 2 + } + }, + "agent_count": 2, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "furnace" + ] + }, + "multiagent_crafting_trapped_chest_1_with_plan_missing_iron_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an trapped_chest", + "conversation": "Let's work together to craft an trapped_chest.", + "initial_inventory": { + "0": { + "oak_planks": 4, + "stick": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 5, + "stone_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "trapped_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_anvil_1_with_plan_missing_iron_ingot_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an anvil", + "conversation": "Let's work together to craft an anvil.", + "initial_inventory": { + "0": { + "iron_block": 2, + "stone_pickaxe": 1 + }, + "1": { + "iron_block": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "anvil", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_purple_banner_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "purple_dye": 3, + "black_wool": 3, + "oak_planks": 1 + }, + "1": { + "purple_dye": 3, + "black_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_repeater_1_with_plan_missing_redstone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone_torch": 1, + "stone": 2, + "diamond_pickaxe": 1 + }, + "1": { + "redstone_torch": 1, + "stone": 1 + } + }, + "agent_count": 2, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_waxed_cut_copper_0_with_plan_missing_copper_block_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an waxed_cut_copper", + "conversation": "Let's work together to craft an waxed_cut_copper.", + "initial_inventory": { + "0": { + "honeycomb": 2 + }, + "1": { + "honeycomb": 2 + } + }, + "agent_count": 2, + "target": "waxed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "copper_block" + ] + }, + "multiagent_crafting_chiseled_bookshelf_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an chiseled_bookshelf", + "conversation": "Let's work together to craft an chiseled_bookshelf.", + "initial_inventory": { + "0": { + "oak_planks": 3, + "oak_slab": 1 + }, + "1": { + "oak_planks": 3, + "oak_slab": 2 + } + }, + "agent_count": 2, + "target": "chiseled_bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_carpet_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_carpet", + "conversation": "Let's work together to craft an cyan_carpet.", + "initial_inventory": { + "0": { + "cyan_dye": 1, + "shears": 1 + }, + "1": { + "cyan_dye": 1 + } + }, + "agent_count": 2, + "target": "cyan_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_anvil_0_with_plan_missing_iron_ingot_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an anvil", + "conversation": "Let's work together to craft an anvil.", + "initial_inventory": { + "0": { + "iron_block": 2, + "stone_pickaxe": 1 + }, + "1": { + "iron_block": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "anvil", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_bamboo_mosaic_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an bamboo_mosaic", + "conversation": "Let's work together to craft an bamboo_mosaic.", + "initial_inventory": { + "0": { + "bamboo_planks": 2 + }, + "1": { + "bamboo_planks": 1 + } + }, + "agent_count": 2, + "target": "bamboo_mosaic", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_repeater_0_with_plan_missing_redstone_stone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone_torch": 1, + "diamond_pickaxe": 1 + }, + "1": { + "redstone_torch": 1, + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "redstone", + "stone" + ] + }, + "multiagent_crafting_chiseled_sandstone_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an chiseled_sandstone", + "conversation": "Let's work together to craft an chiseled_sandstone.", + "initial_inventory": { + "0": { + "sandstone": 1 + }, + "1": { + "sandstone": 2 + } + }, + "agent_count": 2, + "target": "chiseled_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "deepslate_tiles": 3 + }, + "1": { + "deepslate_tiles": 3 + } + }, + "agent_count": 2, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_red_sandstone_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an chiseled_red_sandstone", + "conversation": "Let's work together to craft an chiseled_red_sandstone.", + "initial_inventory": { + "0": { + "red_sandstone": 1 + }, + "1": { + "red_sandstone": 2 + } + }, + "agent_count": 2, + "target": "chiseled_red_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_deepslate_wall_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_deepslate_wall", + "conversation": "Let's work together to craft an polished_deepslate_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 3 + }, + "1": { + "polished_deepslate": 3 + } + }, + "agent_count": 2, + "target": "polished_deepslate_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_stained_glass_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_stained_glass", + "conversation": "Let's work together to craft an purple_stained_glass.", + "initial_inventory": { + "0": { + "glass": 4, + "blue_dye": 1 + }, + "1": { + "glass": 4, + "red_dye": 1 + } + }, + "agent_count": 2, + "target": "purple_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bamboo_mosaic_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an bamboo_mosaic", + "conversation": "Let's work together to craft an bamboo_mosaic.", + "initial_inventory": { + "0": { + "bamboo_slab": 1 + }, + "1": { + "bamboo_slab": 1 + } + }, + "agent_count": 2, + "target": "bamboo_mosaic", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_blackstone_brick_wall_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_blackstone_brick_wall", + "conversation": "Let's work together to craft an polished_blackstone_brick_wall.", + "initial_inventory": { + "0": { + "polished_blackstone": 4 + }, + "1": { + "polished_blackstone": 4 + } + }, + "agent_count": 2, + "target": "polished_blackstone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_red_sandstone_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an chiseled_red_sandstone", + "conversation": "Let's work together to craft an chiseled_red_sandstone.", + "initial_inventory": { + "0": { + "red_sandstone_slab": 1 + }, + "1": { + "red_sandstone_slab": 1 + } + }, + "agent_count": 2, + "target": "chiseled_red_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_shulker_box_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an shulker_box", + "conversation": "Let's work together to craft an shulker_box.", + "initial_inventory": { + "0": { + "shulker_shell": 1, + "oak_planks": 4 + }, + "1": { + "shulker_shell": 1, + "oak_planks": 4 + } + }, + "agent_count": 2, + "target": "shulker_box", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_repeater_1_with_plan_missing_redstone_torch_redstone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "stone": 2, + "diamond_pickaxe": 1 + }, + "1": { + "stone": 1 + } + }, + "agent_count": 2, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "redstone_torch", + "redstone" + ] + }, + "multiagent_crafting_purple_stained_glass_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_stained_glass", + "conversation": "Let's work together to craft an purple_stained_glass.", + "initial_inventory": { + "0": { + "glass": 4, + "blue_dye": 1 + }, + "1": { + "glass": 4, + "red_dye": 1 + } + }, + "agent_count": 2, + "target": "purple_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_prismarine_wall_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an prismarine_wall", + "conversation": "Let's work together to craft an prismarine_wall.", + "initial_inventory": { + "0": { + "prismarine": 3 + }, + "1": { + "prismarine": 3 + } + }, + "agent_count": 2, + "target": "prismarine_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_nether_bricks_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an chiseled_nether_bricks", + "conversation": "Let's work together to craft an chiseled_nether_bricks.", + "initial_inventory": { + "0": { + "nether_bricks": 1 + }, + "1": { + "nether_bricks": 2 + } + }, + "agent_count": 2, + "target": "chiseled_nether_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_nether_brick_wall_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_nether_brick_wall", + "conversation": "Let's work together to craft an red_nether_brick_wall.", + "initial_inventory": { + "0": { + "red_nether_bricks": 3 + }, + "1": { + "red_nether_bricks": 3 + } + }, + "agent_count": 2, + "target": "red_nether_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_andesite_wall_0_with_plan_missing_cobblestone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an andesite_wall", + "conversation": "Let's work together to craft an andesite_wall.", + "initial_inventory": { + "0": { + "diorite": 1, + "wooden_pickaxe": 1 + }, + "1": { + "diorite": 2 + } + }, + "agent_count": 2, + "target": "andesite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_dispenser_0_with_plan_missing_cobblestone_redstone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "bow": 1, + "diamond_pickaxe": 1 + }, + "1": { + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "cobblestone", + "redstone" + ] + }, + "multiagent_crafting_bamboo_mosaic_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an bamboo_mosaic", + "conversation": "Let's work together to craft an bamboo_mosaic.", + "initial_inventory": { + "0": { + "bamboo_planks": 2 + }, + "1": { + "bamboo_planks": 1 + } + }, + "agent_count": 2, + "target": "bamboo_mosaic", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_bricks_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an deepslate_bricks", + "conversation": "Let's work together to craft an deepslate_bricks.", + "initial_inventory": { + "0": { + "polished_deepslate": 2 + }, + "1": { + "polished_deepslate": 2 + } + }, + "agent_count": 2, + "target": "deepslate_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_andesite_wall_1_with_plan_missing_cobblestone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an andesite_wall", + "conversation": "Let's work together to craft an andesite_wall.", + "initial_inventory": { + "0": { + "diorite": 1, + "wooden_pickaxe": 1 + }, + "1": { + "diorite": 2 + } + }, + "agent_count": 2, + "target": "andesite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_detector_rail_0_with_plan_missing_redstone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "stone_pressure_plate": 1 + }, + "1": { + "iron_ingot": 3, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_deepslate_tile_wall_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "deepslate_bricks": 4 + }, + "1": { + "deepslate_bricks": 4 + } + }, + "agent_count": 2, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "deepslate_tiles": 3 + }, + "1": { + "deepslate_tiles": 3 + } + }, + "agent_count": 2, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_enchanting_table_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an enchanting_table", + "conversation": "Let's work together to craft an enchanting_table.", + "initial_inventory": { + "0": { + "paper": 2, + "leather": 1, + "diamond": 1, + "obsidian": 2 + }, + "1": { + "paper": 1, + "diamond": 1, + "obsidian": 2 + } + }, + "agent_count": 2, + "target": "enchanting_table", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_comparator_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "redstone_torch": 2, + "quartz": 1, + "stone": 1 + }, + "1": { + "redstone_torch": 1, + "stone": 2 + } + }, + "agent_count": 2, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_repeater_0_with_plan_missing_redstone_stone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "stick": 1, + "diamond_pickaxe": 1 + }, + "1": { + "stick": 1, + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "redstone", + "stone" + ] + }, + "multiagent_crafting_chiseled_sandstone_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an chiseled_sandstone", + "conversation": "Let's work together to craft an chiseled_sandstone.", + "initial_inventory": { + "0": { + "sandstone_slab": 1 + }, + "1": { + "sandstone_slab": 1 + } + }, + "agent_count": 2, + "target": "chiseled_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_soul_torch_0_with_plan_missing_coal_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an soul_torch", + "conversation": "Let's work together to craft an soul_torch.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "soul_sand": 1 + }, + "1": { + "oak_planks": 1, + "iron_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "soul_torch", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "coal" + ] + }, + "multiagent_crafting_shulker_box_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an shulker_box", + "conversation": "Let's work together to craft an shulker_box.", + "initial_inventory": { + "0": { + "shulker_shell": 1, + "chest": 1 + }, + "1": { + "shulker_shell": 1 + } + }, + "agent_count": 2, + "target": "shulker_box", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_soul_torch_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an soul_torch", + "conversation": "Let's work together to craft an soul_torch.", + "initial_inventory": { + "0": { + "coal": 1, + "oak_planks": 1 + }, + "1": { + "oak_planks": 1, + "soul_sand": 1 + } + }, + "agent_count": 2, + "target": "soul_torch", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_andesite_wall_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an andesite_wall", + "conversation": "Let's work together to craft an andesite_wall.", + "initial_inventory": { + "0": { + "andesite": 3 + }, + "1": { + "andesite": 3 + } + }, + "agent_count": 2, + "target": "andesite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "deepslate_bricks": 4 + }, + "1": { + "deepslate_bricks": 4 + } + }, + "agent_count": 2, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_granite_wall_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an granite_wall", + "conversation": "Let's work together to craft an granite_wall.", + "initial_inventory": { + "0": { + "granite": 3 + }, + "1": { + "granite": 3 + } + }, + "agent_count": 2, + "target": "granite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_cut_copper_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an waxed_cut_copper", + "conversation": "Let's work together to craft an waxed_cut_copper.", + "initial_inventory": { + "0": { + "copper_block": 2, + "honeycomb": 2 + }, + "1": { + "copper_block": 2, + "honeycomb": 2 + } + }, + "agent_count": 2, + "target": "waxed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sandstone_wall_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an sandstone_wall", + "conversation": "Let's work together to craft an sandstone_wall.", + "initial_inventory": { + "0": { + "sandstone": 3 + }, + "1": { + "sandstone": 3 + } + }, + "agent_count": 2, + "target": "sandstone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_repeater_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone": 1, + "stick": 1, + "stone": 2 + }, + "1": { + "redstone": 2, + "stick": 1, + "stone": 1 + } + }, + "agent_count": 2, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_comparator_0_with_plan_missing_redstone_torch_stone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "quartz": 1 + }, + "1": { + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "redstone_torch", + "stone" + ] + }, + "multiagent_crafting_activator_rail_0_with_plan_missing_iron_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "redstone": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "stick": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_chiseled_bookshelf_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an chiseled_bookshelf", + "conversation": "Let's work together to craft an chiseled_bookshelf.", + "initial_inventory": { + "0": { + "oak_planks": 3, + "oak_slab": 1 + }, + "1": { + "oak_planks": 3, + "oak_slab": 2 + } + }, + "agent_count": 2, + "target": "chiseled_bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sticky_piston_0_with_plan_missing_iron_ingot_redstone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "oak_planks": 1, + "cobblestone": 2, + "furnace": 1 + }, + "1": { + "oak_planks": 2, + "cobblestone": 2, + "stone_pickaxe": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot", + "redstone" + ] + }, + "multiagent_crafting_detector_rail_0_with_plan_missing_iron_ingot_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "stone_pressure_plate": 1, + "stone_pickaxe": 1 + }, + "1": { + "redstone": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_comparator_1_with_plan_missing_stone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "redstone": 2, + "stick": 1, + "quartz": 1 + }, + "1": { + "redstone": 1, + "stick": 2, + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "stone" + ] + }, + "multiagent_crafting_comparator_0_with_plan_missing_redstone_torch_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "quartz": 1, + "stone": 2 + }, + "1": { + "stone": 1 + } + }, + "agent_count": 2, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "redstone_torch" + ] + }, + "multiagent_crafting_iron_hoe_0_with_plan_missing_iron_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an iron_hoe", + "conversation": "Let's work together to craft an iron_hoe.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "iron_hoe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_deepslate_brick_wall_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an deepslate_brick_wall", + "conversation": "Let's work together to craft an deepslate_brick_wall.", + "initial_inventory": { + "0": { + "deepslate_bricks": 3 + }, + "1": { + "deepslate_bricks": 3 + } + }, + "agent_count": 2, + "target": "deepslate_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_diamond_hoe_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an diamond_hoe", + "conversation": "Let's work together to craft an diamond_hoe.", + "initial_inventory": { + "0": { + "diamond": 1, + "oak_planks": 1 + }, + "1": { + "diamond": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "diamond_hoe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_prismarine_wall_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an prismarine_wall", + "conversation": "Let's work together to craft an prismarine_wall.", + "initial_inventory": { + "0": { + "prismarine": 3 + }, + "1": { + "prismarine": 3 + } + }, + "agent_count": 2, + "target": "prismarine_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_glow_item_frame_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an glow_item_frame", + "conversation": "Let's work together to craft an glow_item_frame.", + "initial_inventory": { + "0": { + "stick": 4, + "leather": 1 + }, + "1": { + "stick": 4, + "glow_ink_sac": 1 + } + }, + "agent_count": 2, + "target": "glow_item_frame", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_blackstone_wall_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_blackstone_wall", + "conversation": "Let's work together to craft an polished_blackstone_wall.", + "initial_inventory": { + "0": { + "polished_blackstone": 3 + }, + "1": { + "polished_blackstone": 3 + } + }, + "agent_count": 2, + "target": "polished_blackstone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_orange_banner_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an orange_banner", + "conversation": "Let's work together to craft an orange_banner.", + "initial_inventory": { + "0": { + "orange_dye": 3, + "black_wool": 3, + "oak_planks": 1 + }, + "1": { + "orange_dye": 3, + "black_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "orange_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_enchanting_table_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an enchanting_table", + "conversation": "Let's work together to craft an enchanting_table.", + "initial_inventory": { + "0": { + "book": 1, + "diamond": 1, + "obsidian": 2 + }, + "1": { + "diamond": 1, + "obsidian": 2 + } + }, + "agent_count": 2, + "target": "enchanting_table", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_golden_sword_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an golden_sword", + "conversation": "Let's work together to craft an golden_sword.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 1 + }, + "1": { + "gold_ingot": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "golden_sword", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_detector_rail_1_with_plan_missing_stone_pressure_plate_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "redstone": 1 + }, + "1": { + "iron_ingot": 3 + } + }, + "agent_count": 2, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "stone_pressure_plate" + ] + }, + "multiagent_crafting_green_banner_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an green_banner", + "conversation": "Let's work together to craft an green_banner.", + "initial_inventory": { + "0": { + "green_dye": 3, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "green_dye": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "green_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_shulker_box_1_with_plan_missing_chest_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an shulker_box", + "conversation": "Let's work together to craft an shulker_box.", + "initial_inventory": { + "0": { + "shulker_shell": 1 + }, + "1": { + "shulker_shell": 1 + } + }, + "agent_count": 2, + "target": "shulker_box", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "chest" + ] + }, + "multiagent_crafting_lantern_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an lantern", + "conversation": "Let's work together to craft an lantern.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "stick": 1 + }, + "1": { + "coal": 1 + } + }, + "agent_count": 2, + "target": "lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_repeater_0_with_plan_missing_redstone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone_torch": 1, + "stone": 2, + "diamond_pickaxe": 1 + }, + "1": { + "redstone_torch": 1, + "stone": 1 + } + }, + "agent_count": 2, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_cyan_carpet_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_carpet", + "conversation": "Let's work together to craft an cyan_carpet.", + "initial_inventory": { + "0": { + "cyan_dye": 1, + "black_wool": 1 + }, + "1": { + "cyan_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "cyan_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bone_block_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an bone_block", + "conversation": "Let's work together to craft an bone_block.", + "initial_inventory": { + "0": { + "bone_meal": 4 + }, + "1": { + "bone_meal": 5 + } + }, + "agent_count": 2, + "target": "bone_block", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_1_with_plan_missing_iron_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "redstone": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "stick": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_trapped_chest_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an trapped_chest", + "conversation": "Let's work together to craft an trapped_chest.", + "initial_inventory": { + "0": { + "chest": 1 + }, + "1": { + "tripwire_hook": 1 + } + }, + "agent_count": 2, + "target": "trapped_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_terracotta_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_terracotta", + "conversation": "Let's work together to craft an purple_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 4, + "blue_dye": 1 + }, + "1": { + "terracotta": 4, + "red_dye": 1 + } + }, + "agent_count": 2, + "target": "purple_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_terracotta_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_terracotta", + "conversation": "Let's work together to craft an cyan_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 4, + "cyan_dye": 1 + }, + "1": { + "terracotta": 4 + } + }, + "agent_count": 2, + "target": "cyan_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_stone_pickaxe_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an stone_pickaxe", + "conversation": "Let's work together to craft an stone_pickaxe.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "oak_planks": 1 + }, + "1": { + "cobblestone": 2, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "stone_pickaxe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_anvil_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an anvil", + "conversation": "Let's work together to craft an anvil.", + "initial_inventory": { + "0": { + "iron_block": 2, + "iron_ingot": 2 + }, + "1": { + "iron_block": 1, + "iron_ingot": 2 + } + }, + "agent_count": 2, + "target": "anvil", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_armor_stand_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an armor_stand", + "conversation": "Let's work together to craft an armor_stand.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "smooth_stone": 1 + }, + "1": { + "oak_planks": 2, + "smooth_stone": 2 + } + }, + "agent_count": 2, + "target": "armor_stand", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tiles_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an deepslate_tiles", + "conversation": "Let's work together to craft an deepslate_tiles.", + "initial_inventory": { + "0": { + "deepslate_bricks": 2 + }, + "1": { + "deepslate_bricks": 2 + } + }, + "agent_count": 2, + "target": "deepslate_tiles", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_rail_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an rail", + "conversation": "Let's work together to craft an rail.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "oak_planks": 1 + }, + "1": { + "iron_ingot": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_repeater_0_with_plan_missing_redstone_torch_stone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone": 1 + }, + "1": { + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "redstone_torch", + "stone" + ] + }, + "multiagent_crafting_activator_rail_0_with_plan_missing_redstone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "oak_planks": 1, + "stick": 1 + }, + "1": { + "iron_ingot": 3, + "oak_planks": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_magma_block_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an magma_block", + "conversation": "Let's work together to craft an magma_block.", + "initial_inventory": { + "0": { + "magma_cream": 2 + }, + "1": { + "magma_cream": 2 + } + }, + "agent_count": 2, + "target": "magma_block", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_0_with_plan_missing_gold_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_brick_slab": 8, + "netherite_scrap": 2, + "iron_pickaxe": 1 + }, + "1": { + "stone_brick_slab": 8, + "netherite_scrap": 2, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_cyan_carpet_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_carpet", + "conversation": "Let's work together to craft an cyan_carpet.", + "initial_inventory": { + "0": { + "cyan_wool": 1 + }, + "1": { + "cyan_wool": 1 + } + }, + "agent_count": 2, + "target": "cyan_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_iron_pickaxe_1_with_plan_missing_iron_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an iron_pickaxe", + "conversation": "Let's work together to craft an iron_pickaxe.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "iron_pickaxe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_polished_diorite_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_diorite", + "conversation": "Let's work together to craft an polished_diorite.", + "initial_inventory": { + "0": { + "diorite": 2 + }, + "1": { + "diorite": 2 + } + }, + "agent_count": 2, + "target": "polished_diorite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_item_frame_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an item_frame", + "conversation": "Let's work together to craft an item_frame.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "rabbit_hide": 2 + }, + "1": { + "oak_planks": 2, + "rabbit_hide": 2 + } + }, + "agent_count": 2, + "target": "item_frame", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_repeater_0_with_plan_missing_redstone_torch_redstone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "stone": 2, + "diamond_pickaxe": 1 + }, + "1": { + "stone": 1 + } + }, + "agent_count": 2, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "redstone_torch", + "redstone" + ] + }, + "multiagent_crafting_golden_sword_1_with_plan_missing_gold_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an golden_sword", + "conversation": "Let's work together to craft an golden_sword.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "iron_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "golden_sword", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_magenta_carpet_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an magenta_carpet", + "conversation": "Let's work together to craft an magenta_carpet.", + "initial_inventory": { + "0": { + "magenta_dye": 1 + }, + "1": { + "black_carpet": 1 + } + }, + "agent_count": 2, + "target": "magenta_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_banner_1_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an magenta_banner", + "conversation": "Let's work together to craft an magenta_banner.", + "initial_inventory": { + "0": { + "magenta_dye": 3, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "magenta_dye": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "magenta_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_polished_blackstone_brick_wall_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_blackstone_brick_wall", + "conversation": "Let's work together to craft an polished_blackstone_brick_wall.", + "initial_inventory": { + "0": { + "polished_blackstone_bricks": 3 + }, + "1": { + "polished_blackstone_bricks": 3 + } + }, + "agent_count": 2, + "target": "polished_blackstone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_comparator_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "redstone": 1, + "stick": 2, + "quartz": 1, + "stone": 2 + }, + "1": { + "redstone": 2, + "stick": 1, + "stone": 1 + } + }, + "agent_count": 2, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_terracotta_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an magenta_terracotta", + "conversation": "Let's work together to craft an magenta_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 4, + "magenta_dye": 1 + }, + "1": { + "terracotta": 4 + } + }, + "agent_count": 2, + "target": "magenta_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tiles_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an deepslate_tiles", + "conversation": "Let's work together to craft an deepslate_tiles.", + "initial_inventory": { + "0": { + "polished_deepslate": 2 + }, + "1": { + "polished_deepslate": 2 + } + }, + "agent_count": 2, + "target": "deepslate_tiles", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_terracotta_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_terracotta", + "conversation": "Let's work together to craft an red_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 4, + "red_dye": 1 + }, + "1": { + "terracotta": 4 + } + }, + "agent_count": 2, + "target": "red_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_comparator_0_with_plan_missing_stone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "redstone": 2, + "stick": 1, + "quartz": 1 + }, + "1": { + "redstone": 1, + "stick": 2, + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "stone" + ] + }, + "multiagent_crafting_piston_1_with_plan_missing_cobblestone_iron_ingot_redstone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "wooden_pickaxe": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 1, + "stone_pickaxe": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "cobblestone", + "iron_ingot", + "redstone" + ] + }, + "multiagent_crafting_chiseled_red_sandstone_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an chiseled_red_sandstone", + "conversation": "Let's work together to craft an chiseled_red_sandstone.", + "initial_inventory": { + "0": { + "red_sandstone": 1 + }, + "1": { + "red_sandstone": 2 + } + }, + "agent_count": 2, + "target": "chiseled_red_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_terracotta_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an red_terracotta", + "conversation": "Let's work together to craft an red_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 4, + "red_dye": 1 + }, + "1": { + "terracotta": 4 + } + }, + "agent_count": 2, + "target": "red_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sticky_piston_1_with_plan_missing_redstone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "oak_planks": 1, + "cobblestone": 2, + "diamond_pickaxe": 1 + }, + "1": { + "oak_planks": 2, + "cobblestone": 2, + "iron_ingot": 1 + } + }, + "agent_count": 2, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_waxed_cut_copper_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an waxed_cut_copper", + "conversation": "Let's work together to craft an waxed_cut_copper.", + "initial_inventory": { + "0": { + "waxed_copper_block": 2 + }, + "1": { + "waxed_copper_block": 2 + } + }, + "agent_count": 2, + "target": "waxed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_crossbow_0_with_plan_missing_iron_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an crossbow", + "conversation": "Let's work together to craft an crossbow.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "string": 1, + "stick": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 1, + "string": 1, + "stone_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "crossbow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_piston_1_with_plan_missing_cobblestone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "iron_ingot": 1, + "wooden_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "redstone": 1 + } + }, + "agent_count": 2, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_golden_hoe_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an golden_hoe", + "conversation": "Let's work together to craft an golden_hoe.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 1 + }, + "1": { + "gold_ingot": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "golden_hoe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_piston_0_with_plan_missing_redstone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "cobblestone": 2, + "iron_ingot": 1 + }, + "1": { + "oak_planks": 2, + "cobblestone": 2, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_dispenser_0_with_plan_missing_cobblestone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "stick": 1, + "string": 2, + "redstone": 1 + }, + "1": { + "stick": 2, + "string": 1, + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_waxed_copper_block_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an waxed_copper_block", + "conversation": "Let's work together to craft an waxed_copper_block.", + "initial_inventory": { + "0": { + "copper_block": 1 + }, + "1": { + "honeycomb": 1 + } + }, + "agent_count": 2, + "target": "waxed_copper_block", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_golden_axe_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an golden_axe", + "conversation": "Let's work together to craft an golden_axe.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 1 + }, + "1": { + "gold_ingot": 2, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "golden_axe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cut_copper_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cut_copper", + "conversation": "Let's work together to craft an cut_copper.", + "initial_inventory": { + "0": { + "copper_block": 2 + }, + "1": { + "copper_block": 2 + } + }, + "agent_count": 2, + "target": "cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_stone_hoe_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an stone_hoe", + "conversation": "Let's work together to craft an stone_hoe.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "oak_planks": 1 + }, + "1": { + "cobblestone": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "stone_hoe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brick_wall_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an brick_wall", + "conversation": "Let's work together to craft an brick_wall.", + "initial_inventory": { + "0": { + "bricks": 3 + }, + "1": { + "bricks": 3 + } + }, + "agent_count": 2, + "target": "brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_campfire_1_with_plan_missing_coal_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an campfire", + "conversation": "Let's work together to craft an campfire.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "dark_oak_log": 2, + "iron_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "dark_oak_log": 1 + } + }, + "agent_count": 2, + "target": "campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "coal" + ] + }, + "multiagent_crafting_redstone_lamp_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an redstone_lamp", + "conversation": "Let's work together to craft an redstone_lamp.", + "initial_inventory": { + "0": { + "redstone": 2, + "glowstone": 1 + }, + "1": { + "redstone": 2 + } + }, + "agent_count": 2, + "target": "redstone_lamp", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_rail_0_with_plan_missing_iron_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an rail", + "conversation": "Let's work together to craft an rail.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_repeater_1_with_plan_missing_redstone_torch_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone": 1, + "stone": 1 + }, + "1": { + "stone": 2 + } + }, + "agent_count": 2, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "redstone_torch" + ] + }, + "multiagent_crafting_waxed_cut_copper_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an waxed_cut_copper", + "conversation": "Let's work together to craft an waxed_cut_copper.", + "initial_inventory": { + "0": { + "copper_block": 2, + "honeycomb": 2 + }, + "1": { + "copper_block": 2, + "honeycomb": 2 + } + }, + "agent_count": 2, + "target": "waxed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_redstone_lamp_1_with_plan_missing_redstone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an redstone_lamp", + "conversation": "Let's work together to craft an redstone_lamp.", + "initial_inventory": { + "0": { + "glowstone": 1 + }, + "1": { + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "redstone_lamp", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_golden_pickaxe_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an golden_pickaxe", + "conversation": "Let's work together to craft an golden_pickaxe.", + "initial_inventory": { + "0": { + "gold_ingot": 2, + "oak_planks": 1 + }, + "1": { + "gold_ingot": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "golden_pickaxe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_blackstone_brick_wall_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_blackstone_brick_wall", + "conversation": "Let's work together to craft an polished_blackstone_brick_wall.", + "initial_inventory": { + "0": { + "polished_blackstone_bricks": 3 + }, + "1": { + "polished_blackstone_bricks": 3 + } + }, + "agent_count": 2, + "target": "polished_blackstone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_1_with_plan_missing_cobblestone_redstone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "stick": 2, + "string": 1, + "wooden_pickaxe": 1 + }, + "1": { + "stick": 1, + "string": 2, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "cobblestone", + "redstone" + ] + }, + "multiagent_crafting_purple_stained_glass_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_stained_glass", + "conversation": "Let's work together to craft an purple_stained_glass.", + "initial_inventory": { + "0": { + "glass": 4, + "purple_dye": 1 + }, + "1": { + "glass": 4 + } + }, + "agent_count": 2, + "target": "purple_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_golden_axe_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an golden_axe", + "conversation": "Let's work together to craft an golden_axe.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 1 + }, + "1": { + "gold_ingot": 2, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "golden_axe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_target_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an target", + "conversation": "Let's work together to craft an target.", + "initial_inventory": { + "0": { + "redstone": 2, + "hay_block": 1 + }, + "1": { + "redstone": 2 + } + }, + "agent_count": 2, + "target": "target", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_1_with_plan_missing_stone_brick_slab_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 2, + "gold_ingot": 2 + }, + "1": { + "netherite_scrap": 2, + "gold_ingot": 2 + } + }, + "agent_count": 2, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "stone_brick_slab" + ] + }, + "multiagent_crafting_anvil_0_with_plan_missing_iron_block_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an anvil", + "conversation": "Let's work together to craft an anvil.", + "initial_inventory": { + "0": { + "iron_ingot": 2 + }, + "1": { + "iron_ingot": 2 + } + }, + "agent_count": 2, + "target": "anvil", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_block" + ] + }, + "multiagent_crafting_iron_sword_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an iron_sword", + "conversation": "Let's work together to craft an iron_sword.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "iron_sword", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purpur_pillar_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an purpur_pillar", + "conversation": "Let's work together to craft an purpur_pillar.", + "initial_inventory": { + "0": { + "purpur_slab": 1 + }, + "1": { + "purpur_slab": 1 + } + }, + "agent_count": 2, + "target": "purpur_pillar", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_cut_copper_1_with_plan_missing_copper_block_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an waxed_cut_copper", + "conversation": "Let's work together to craft an waxed_cut_copper.", + "initial_inventory": { + "0": { + "honeycomb": 2 + }, + "1": { + "honeycomb": 2 + } + }, + "agent_count": 2, + "target": "waxed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "copper_block" + ] + }, + "multiagent_crafting_comparator_1_with_plan_missing_redstone_torch_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "quartz": 1, + "stone": 2 + }, + "1": { + "stone": 1 + } + }, + "agent_count": 2, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "redstone_torch" + ] + }, + "multiagent_crafting_yellow_banner_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an yellow_banner", + "conversation": "Let's work together to craft an yellow_banner.", + "initial_inventory": { + "0": { + "yellow_dye": 3, + "black_wool": 3, + "oak_planks": 1 + }, + "1": { + "yellow_dye": 3, + "black_wool": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "yellow_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_netherite_block_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an netherite_block", + "conversation": "Let's work together to craft an netherite_block.", + "initial_inventory": { + "0": { + "netherite_ingot": 5 + }, + "1": { + "netherite_ingot": 4 + } + }, + "agent_count": 2, + "target": "netherite_block", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_gray_banner_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an light_gray_banner", + "conversation": "Let's work together to craft an light_gray_banner.", + "initial_inventory": { + "0": { + "light_gray_dye": 3, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "light_gray_dye": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "light_gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_terracotta_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_terracotta", + "conversation": "Let's work together to craft an cyan_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 4, + "cyan_dye": 1 + }, + "1": { + "terracotta": 4 + } + }, + "agent_count": 2, + "target": "cyan_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_iron_hoe_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an iron_hoe", + "conversation": "Let's work together to craft an iron_hoe.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "iron_hoe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_shulker_box_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an shulker_box", + "conversation": "Let's work together to craft an shulker_box.", + "initial_inventory": { + "0": { + "shulker_shell": 1, + "chest": 1 + }, + "1": { + "shulker_shell": 1 + } + }, + "agent_count": 2, + "target": "shulker_box", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_comparator_1_with_plan_missing_redstone_stone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "stick": 1, + "quartz": 1, + "wooden_pickaxe": 1 + }, + "1": { + "stick": 2, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "redstone", + "stone" + ] + }, + "multiagent_crafting_end_stone_brick_wall_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an end_stone_brick_wall", + "conversation": "Let's work together to craft an end_stone_brick_wall.", + "initial_inventory": { + "0": { + "end_stone_bricks": 3 + }, + "1": { + "end_stone_bricks": 3 + } + }, + "agent_count": 2, + "target": "end_stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "purple_dye": 3, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "purple_dye": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_stone_brick_wall_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an stone_brick_wall", + "conversation": "Let's work together to craft an stone_brick_wall.", + "initial_inventory": { + "0": { + "stone_bricks": 3 + }, + "1": { + "stone_bricks": 3 + } + }, + "agent_count": 2, + "target": "stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_iron_pickaxe_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an iron_pickaxe", + "conversation": "Let's work together to craft an iron_pickaxe.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "oak_planks": 1 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "iron_pickaxe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_piston_1_with_plan_missing_cobblestone_redstone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "iron_ingot": 1, + "diamond_pickaxe": 1 + }, + "1": { + "oak_planks": 2, + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "cobblestone", + "redstone" + ] + }, + "multiagent_crafting_orange_banner_0_with_plan_missing_black_wool_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an orange_banner", + "conversation": "Let's work together to craft an orange_banner.", + "initial_inventory": { + "0": { + "orange_dye": 3, + "oak_planks": 1, + "shears": 1 + }, + "1": { + "orange_dye": 3, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "orange_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_soul_torch_1_with_plan_missing_coal_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an soul_torch", + "conversation": "Let's work together to craft an soul_torch.", + "initial_inventory": { + "0": { + "stick": 1, + "iron_pickaxe": 1 + }, + "1": { + "soul_sand": 1 + } + }, + "agent_count": 2, + "target": "soul_torch", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "coal" + ] + }, + "multiagent_crafting_stone_axe_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an stone_axe", + "conversation": "Let's work together to craft an stone_axe.", + "initial_inventory": { + "0": { + "cobblestone": 2, + "oak_planks": 1 + }, + "1": { + "cobblestone": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "stone_axe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tiles_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an deepslate_tiles", + "conversation": "Let's work together to craft an deepslate_tiles.", + "initial_inventory": { + "0": { + "deepslate_bricks": 2 + }, + "1": { + "deepslate_bricks": 2 + } + }, + "agent_count": 2, + "target": "deepslate_tiles", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_grindstone_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an grindstone", + "conversation": "Let's work together to craft an grindstone.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "stone": 1, + "oak_log": 1 + }, + "1": { + "oak_planks": 1, + "stone": 2 + } + }, + "agent_count": 2, + "target": "grindstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_stained_glass_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an magenta_stained_glass", + "conversation": "Let's work together to craft an magenta_stained_glass.", + "initial_inventory": { + "0": { + "glass": 4, + "magenta_dye": 1 + }, + "1": { + "glass": 4 + } + }, + "agent_count": 2, + "target": "magenta_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_terracotta_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_terracotta", + "conversation": "Let's work together to craft an cyan_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 4, + "blue_dye": 1 + }, + "1": { + "terracotta": 4, + "green_dye": 1 + } + }, + "agent_count": 2, + "target": "cyan_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_carpet_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an magenta_carpet", + "conversation": "Let's work together to craft an magenta_carpet.", + "initial_inventory": { + "0": { + "magenta_dye": 1 + }, + "1": { + "black_carpet": 1 + } + }, + "agent_count": 2, + "target": "magenta_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_brick_slab": 8, + "netherite_scrap": 2, + "gold_ingot": 2 + }, + "1": { + "stone_brick_slab": 8, + "netherite_scrap": 2, + "gold_ingot": 2 + } + }, + "agent_count": 2, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_piston_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "cobblestone": 2, + "iron_ingot": 1 + }, + "1": { + "oak_planks": 1, + "cobblestone": 2, + "redstone": 1 + } + }, + "agent_count": 2, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_campfire_0_with_plan_missing_coal_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an campfire", + "conversation": "Let's work together to craft an campfire.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "dark_oak_log": 2, + "iron_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "dark_oak_log": 1 + } + }, + "agent_count": 2, + "target": "campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "coal" + ] + }, + "multiagent_crafting_soul_torch_0_with_plan_missing_coal_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an soul_torch", + "conversation": "Let's work together to craft an soul_torch.", + "initial_inventory": { + "0": { + "stick": 1, + "iron_pickaxe": 1 + }, + "1": { + "soul_sand": 1 + } + }, + "agent_count": 2, + "target": "soul_torch", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "coal" + ] + }, + "multiagent_crafting_polished_blackstone_brick_wall_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_blackstone_brick_wall", + "conversation": "Let's work together to craft an polished_blackstone_brick_wall.", + "initial_inventory": { + "0": { + "polished_blackstone": 4 + }, + "1": { + "polished_blackstone": 4 + } + }, + "agent_count": 2, + "target": "polished_blackstone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_detector_rail_1_with_plan_missing_iron_ingot_stone_pressure_plate_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "redstone": 1, + "furnace": 1 + }, + "1": { + "stone_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot", + "stone_pressure_plate" + ] + }, + "multiagent_crafting_sticky_piston_0_with_plan_missing_cobblestone_iron_ingot_redstone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "oak_planks": 2, + "stone_pickaxe": 1, + "diamond_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "wooden_pickaxe": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "cobblestone", + "iron_ingot", + "redstone" + ] + }, + "multiagent_crafting_anvil_1_with_plan_missing_iron_block_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an anvil", + "conversation": "Let's work together to craft an anvil.", + "initial_inventory": { + "0": { + "iron_ingot": 2 + }, + "1": { + "iron_ingot": 2 + } + }, + "agent_count": 2, + "target": "anvil", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_block" + ] + }, + "multiagent_crafting_deepslate_brick_wall_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an deepslate_brick_wall", + "conversation": "Let's work together to craft an deepslate_brick_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 4 + }, + "1": { + "polished_deepslate": 4 + } + }, + "agent_count": 2, + "target": "deepslate_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_comparator_1_with_plan_missing_stone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "redstone_torch": 1, + "quartz": 1 + }, + "1": { + "redstone_torch": 2, + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "stone" + ] + }, + "multiagent_crafting_purple_stained_glass_0_with_plan_missing_glass_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_stained_glass", + "conversation": "Let's work together to craft an purple_stained_glass.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "red_dye": 1 + } + }, + "agent_count": 2, + "target": "purple_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "glass" + ] + }, + "multiagent_crafting_chain_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an chain", + "conversation": "Let's work together to craft an chain.", + "initial_inventory": { + "0": { + "iron_nugget": 1, + "iron_ingot": 1 + }, + "1": { + "iron_nugget": 1 + } + }, + "agent_count": 2, + "target": "chain", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_andesite_wall_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an andesite_wall", + "conversation": "Let's work together to craft an andesite_wall.", + "initial_inventory": { + "0": { + "diorite": 2, + "cobblestone": 2 + }, + "1": { + "diorite": 1, + "cobblestone": 1 + } + }, + "agent_count": 2, + "target": "andesite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_target_1_with_plan_missing_redstone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an target", + "conversation": "Let's work together to craft an target.", + "initial_inventory": { + "0": { + "hay_block": 1 + }, + "1": { + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "target", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_sticky_piston_1_with_plan_missing_cobblestone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "oak_planks": 2, + "redstone": 1 + }, + "1": { + "oak_planks": 1, + "iron_ingot": 1, + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_dispenser_0_with_plan_missing_redstone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 4, + "bow": 1 + }, + "1": { + "cobblestone": 3, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_activator_rail_1_with_plan_missing_iron_ingot_redstone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "stick": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 1, + "stone_pickaxe": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot", + "redstone" + ] + }, + "multiagent_crafting_piston_0_with_plan_missing_cobblestone_redstone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "iron_ingot": 1, + "diamond_pickaxe": 1 + }, + "1": { + "oak_planks": 2, + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "cobblestone", + "redstone" + ] + }, + "multiagent_crafting_diamond_sword_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an diamond_sword", + "conversation": "Let's work together to craft an diamond_sword.", + "initial_inventory": { + "0": { + "diamond": 1, + "oak_planks": 1 + }, + "1": { + "diamond": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "diamond_sword", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_diorite_wall_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an diorite_wall", + "conversation": "Let's work together to craft an diorite_wall.", + "initial_inventory": { + "0": { + "diorite": 3 + }, + "1": { + "diorite": 3 + } + }, + "agent_count": 2, + "target": "diorite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lantern_1_with_plan_missing_iron_ingot_coal_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an lantern", + "conversation": "Let's work together to craft an lantern.", + "initial_inventory": { + "0": { + "stick": 1, + "furnace": 1 + }, + "1": { + "stone_pickaxe": 1, + "iron_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot", + "coal" + ] + }, + "multiagent_crafting_polished_diorite_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_diorite", + "conversation": "Let's work together to craft an polished_diorite.", + "initial_inventory": { + "0": { + "diorite": 2 + }, + "1": { + "diorite": 2 + } + }, + "agent_count": 2, + "target": "polished_diorite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_andesite_wall_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an andesite_wall", + "conversation": "Let's work together to craft an andesite_wall.", + "initial_inventory": { + "0": { + "diorite": 2, + "cobblestone": 2 + }, + "1": { + "diorite": 1, + "cobblestone": 1 + } + }, + "agent_count": 2, + "target": "andesite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_piston_1_with_plan_missing_cobblestone_iron_ingot_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "redstone": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 2, + "wooden_pickaxe": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "cobblestone", + "iron_ingot" + ] + }, + "multiagent_crafting_bamboo_raft_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an bamboo_raft", + "conversation": "Let's work together to craft an bamboo_raft.", + "initial_inventory": { + "0": { + "bamboo_block": 2 + }, + "1": { + "bamboo_block": 1 + } + }, + "agent_count": 2, + "target": "bamboo_raft", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_detector_rail_1_with_plan_missing_stone_pressure_plate_redstone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "diamond_pickaxe": 1 + }, + "1": { + "iron_ingot": 3 + } + }, + "agent_count": 2, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "stone_pressure_plate", + "redstone" + ] + }, + "multiagent_crafting_golden_pickaxe_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an golden_pickaxe", + "conversation": "Let's work together to craft an golden_pickaxe.", + "initial_inventory": { + "0": { + "gold_ingot": 2, + "oak_planks": 1 + }, + "1": { + "gold_ingot": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "golden_pickaxe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_nether_brick_wall_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an nether_brick_wall", + "conversation": "Let's work together to craft an nether_brick_wall.", + "initial_inventory": { + "0": { + "nether_bricks": 3 + }, + "1": { + "nether_bricks": 3 + } + }, + "agent_count": 2, + "target": "nether_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mossy_stone_brick_wall_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an mossy_stone_brick_wall", + "conversation": "Let's work together to craft an mossy_stone_brick_wall.", + "initial_inventory": { + "0": { + "stone_bricks": 3, + "moss_block": 3 + }, + "1": { + "stone_bricks": 3, + "moss_block": 3 + } + }, + "agent_count": 2, + "target": "mossy_stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_detector_rail_1_with_plan_missing_iron_ingot_redstone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "stone_pressure_plate": 1, + "furnace": 1 + }, + "1": { + "stone_pickaxe": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot", + "redstone" + ] + }, + "multiagent_crafting_stone_axe_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an stone_axe", + "conversation": "Let's work together to craft an stone_axe.", + "initial_inventory": { + "0": { + "cobblestone": 2, + "oak_planks": 1 + }, + "1": { + "cobblestone": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "stone_axe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_granite_wall_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an granite_wall", + "conversation": "Let's work together to craft an granite_wall.", + "initial_inventory": { + "0": { + "granite": 3 + }, + "1": { + "granite": 3 + } + }, + "agent_count": 2, + "target": "granite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sticky_piston_1_with_plan_missing_iron_ingot_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "oak_planks": 1, + "cobblestone": 2, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 2, + "cobblestone": 2, + "redstone": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_repeater_1_with_plan_missing_redstone_stone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone_torch": 1, + "diamond_pickaxe": 1 + }, + "1": { + "redstone_torch": 1, + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "redstone", + "stone" + ] + }, + "multiagent_crafting_diamond_pickaxe_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an diamond_pickaxe", + "conversation": "Let's work together to craft an diamond_pickaxe.", + "initial_inventory": { + "0": { + "diamond": 2, + "oak_planks": 1 + }, + "1": { + "diamond": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "diamond_pickaxe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_terracotta_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_terracotta", + "conversation": "Let's work together to craft an purple_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 4, + "purple_dye": 1 + }, + "1": { + "terracotta": 4 + } + }, + "agent_count": 2, + "target": "purple_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_soul_lantern_1_with_plan_missing_coal_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "soul_sand": 1 + }, + "1": { + "stick": 1, + "iron_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "coal" + ] + }, + "multiagent_crafting_blue_ice_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an blue_ice", + "conversation": "Let's work together to craft an blue_ice.", + "initial_inventory": { + "0": { + "packed_ice": 5 + }, + "1": { + "packed_ice": 4 + } + }, + "agent_count": 2, + "target": "blue_ice", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_diamond_hoe_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an diamond_hoe", + "conversation": "Let's work together to craft an diamond_hoe.", + "initial_inventory": { + "0": { + "diamond": 1, + "oak_planks": 1 + }, + "1": { + "diamond": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "diamond_hoe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mud_brick_wall_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an mud_brick_wall", + "conversation": "Let's work together to craft an mud_brick_wall.", + "initial_inventory": { + "0": { + "mud_bricks": 3 + }, + "1": { + "mud_bricks": 3 + } + }, + "agent_count": 2, + "target": "mud_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mossy_stone_brick_wall_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an mossy_stone_brick_wall", + "conversation": "Let's work together to craft an mossy_stone_brick_wall.", + "initial_inventory": { + "0": { + "stone_bricks": 3, + "moss_block": 3 + }, + "1": { + "stone_bricks": 3, + "moss_block": 3 + } + }, + "agent_count": 2, + "target": "mossy_stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_detector_rail_0_with_plan_missing_stone_pressure_plate_redstone_depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "diamond_pickaxe": 1 + }, + "1": { + "iron_ingot": 3 + } + }, + "agent_count": 2, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "stone_pressure_plate", + "redstone" + ] + }, + "multiagent_crafting_dispenser_1_with_plan_missing_cobblestone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "stick": 1, + "string": 2, + "redstone": 1 + }, + "1": { + "stick": 2, + "string": 1, + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_diorite_wall_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an diorite_wall", + "conversation": "Let's work together to craft an diorite_wall.", + "initial_inventory": { + "0": { + "diorite": 3 + }, + "1": { + "diorite": 3 + } + }, + "agent_count": 2, + "target": "diorite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_enchanting_table_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an enchanting_table", + "conversation": "Let's work together to craft an enchanting_table.", + "initial_inventory": { + "0": { + "paper": 2, + "leather": 1, + "diamond": 1, + "obsidian": 2 + }, + "1": { + "paper": 1, + "diamond": 1, + "obsidian": 2 + } + }, + "agent_count": 2, + "target": "enchanting_table", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brick_wall_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an brick_wall", + "conversation": "Let's work together to craft an brick_wall.", + "initial_inventory": { + "0": { + "bricks": 3 + }, + "1": { + "bricks": 3 + } + }, + "agent_count": 2, + "target": "brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_golden_hoe_0_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an golden_hoe", + "conversation": "Let's work together to craft an golden_hoe.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 1 + }, + "1": { + "gold_ingot": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "golden_hoe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_sandstone_1_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an chiseled_sandstone", + "conversation": "Let's work together to craft an chiseled_sandstone.", + "initial_inventory": { + "0": { + "sandstone_slab": 1 + }, + "1": { + "sandstone_slab": 1 + } + }, + "agent_count": 2, + "target": "chiseled_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_campfire_1_with_plan__depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an campfire", + "conversation": "Let's work together to craft an campfire.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "coal": 1, + "dark_oak_log": 2 + }, + "1": { + "oak_planks": 1, + "dark_oak_log": 1 + } + }, + "agent_count": 2, + "target": "campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_deepslate_wall_0_with_plan__depth_0_num_agents_2": { + "goal": "Collaborate with other agents to craft an polished_deepslate_wall", + "conversation": "Let's work together to craft an polished_deepslate_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 3 + }, + "1": { + "polished_deepslate": 3 + } + }, + "agent_count": 2, + "target": "polished_deepslate_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sticky_piston_1_with_plan_missing_cobblestone_redstone_depth_1_num_agents_2": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "oak_planks": 1, + "wooden_pickaxe": 1 + }, + "1": { + "oak_planks": 2, + "iron_ingot": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "cobblestone", + "redstone" + ] + }, + "multiagent_crafting_bamboo_mosaic_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an bamboo_mosaic", + "conversation": "Let's work together to craft an bamboo_mosaic.", + "initial_inventory": { + "0": { + "bamboo_block": 1 + }, + "1": { + "bamboo_block": 1 + } + }, + "agent_count": 2, + "target": "bamboo_mosaic", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bamboo_mosaic_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an bamboo_mosaic", + "conversation": "Let's work together to craft an bamboo_mosaic.", + "initial_inventory": { + "0": { + "bamboo_block": 1 + }, + "1": { + "bamboo_block": 1 + } + }, + "agent_count": 2, + "target": "bamboo_mosaic", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 4 + }, + "1": { + "polished_deepslate": 4 + } + }, + "agent_count": 2, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 4 + }, + "1": { + "polished_deepslate": 4 + } + }, + "agent_count": 2, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_carpet_0_with_plan_missing_black_wool_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_carpet", + "conversation": "Let's work together to craft an cyan_carpet.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "shears": 1 + }, + "1": { + "green_dye": 1 + } + }, + "agent_count": 2, + "target": "cyan_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_carpet_1_with_plan_missing_black_wool_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_carpet", + "conversation": "Let's work together to craft an cyan_carpet.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "shears": 1 + }, + "1": { + "green_dye": 1 + } + }, + "agent_count": 2, + "target": "cyan_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_carpet_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_carpet", + "conversation": "Let's work together to craft an cyan_carpet.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "black_wool": 1 + }, + "1": { + "green_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "cyan_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_carpet_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an cyan_carpet", + "conversation": "Let's work together to craft an cyan_carpet.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "black_wool": 1 + }, + "1": { + "green_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 2, + "target": "cyan_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_repeater_0_with_plan_missing_redstone_stone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "diamond_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "redstone", + "stone" + ] + }, + "multiagent_crafting_repeater_1_with_plan_missing_redstone_stone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "diamond_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "redstone", + "stone" + ] + }, + "multiagent_crafting_repeater_0_with_plan_missing_stone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone": 2, + "oak_planks": 1, + "wooden_pickaxe": 1 + }, + "1": { + "redstone": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "stone" + ] + }, + "multiagent_crafting_repeater_1_with_plan_missing_stone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone": 2, + "oak_planks": 1, + "wooden_pickaxe": 1 + }, + "1": { + "redstone": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "stone" + ] + }, + "multiagent_crafting_repeater_0_with_plan_missing_redstone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "stone": 2, + "diamond_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "stone": 1 + } + }, + "agent_count": 2, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_repeater_1_with_plan_missing_redstone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "stone": 2, + "diamond_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "stone": 1 + } + }, + "agent_count": 2, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_repeater_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone": 2, + "oak_planks": 1, + "stone": 1 + }, + "1": { + "redstone": 1, + "oak_planks": 1, + "stone": 2 + } + }, + "agent_count": 2, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_repeater_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone": 2, + "oak_planks": 1, + "stone": 1 + }, + "1": { + "redstone": 1, + "oak_planks": 1, + "stone": 2 + } + }, + "agent_count": 2, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_comparator_0_with_plan_missing_redstone_stone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "quartz": 1, + "wooden_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "redstone", + "stone" + ] + }, + "multiagent_crafting_comparator_1_with_plan_missing_redstone_stone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "quartz": 1, + "wooden_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "redstone", + "stone" + ] + }, + "multiagent_crafting_comparator_0_with_plan_missing_stone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "redstone": 1, + "oak_planks": 1, + "quartz": 1 + }, + "1": { + "redstone": 2, + "oak_planks": 1, + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "stone" + ] + }, + "multiagent_crafting_comparator_1_with_plan_missing_stone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "redstone": 1, + "oak_planks": 1, + "quartz": 1 + }, + "1": { + "redstone": 2, + "oak_planks": 1, + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "stone" + ] + }, + "multiagent_crafting_comparator_0_with_plan_missing_redstone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "quartz": 1, + "stone": 1 + }, + "1": { + "oak_planks": 1, + "stone": 2, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_comparator_1_with_plan_missing_redstone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "quartz": 1, + "stone": 1 + }, + "1": { + "oak_planks": 1, + "stone": 2, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_comparator_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "redstone": 1, + "oak_planks": 1, + "quartz": 1, + "stone": 1 + }, + "1": { + "redstone": 2, + "oak_planks": 1, + "stone": 2 + } + }, + "agent_count": 2, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_comparator_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "redstone": 1, + "oak_planks": 1, + "quartz": 1, + "stone": 1 + }, + "1": { + "redstone": 2, + "oak_planks": 1, + "stone": 2 + } + }, + "agent_count": 2, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_0_with_plan_missing_cobblestone_redstone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "string": 1, + "wooden_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "string": 2, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "cobblestone", + "redstone" + ] + }, + "multiagent_crafting_dispenser_1_with_plan_missing_cobblestone_redstone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "string": 1, + "wooden_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "string": 2, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "cobblestone", + "redstone" + ] + }, + "multiagent_crafting_dispenser_0_with_plan_missing_redstone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 4, + "oak_planks": 1, + "string": 1, + "diamond_pickaxe": 1 + }, + "1": { + "cobblestone": 3, + "oak_planks": 1, + "string": 2 + } + }, + "agent_count": 2, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_dispenser_1_with_plan_missing_redstone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 4, + "oak_planks": 1, + "string": 1, + "diamond_pickaxe": 1 + }, + "1": { + "cobblestone": 3, + "oak_planks": 1, + "string": 2 + } + }, + "agent_count": 2, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_dispenser_0_with_plan_missing_cobblestone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "string": 1, + "redstone": 1 + }, + "1": { + "oak_planks": 1, + "string": 2, + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_dispenser_1_with_plan_missing_cobblestone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "string": 1, + "redstone": 1 + }, + "1": { + "oak_planks": 1, + "string": 2, + "wooden_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_dispenser_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 3, + "oak_planks": 1, + "string": 1, + "redstone": 1 + }, + "1": { + "cobblestone": 4, + "oak_planks": 1, + "string": 2 + } + }, + "agent_count": 2, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 3, + "oak_planks": 1, + "string": 1, + "redstone": 1 + }, + "1": { + "cobblestone": 4, + "oak_planks": 1, + "string": 2 + } + }, + "agent_count": 2, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_trapped_chest_0_with_plan_missing_iron_ingot_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an trapped_chest", + "conversation": "Let's work together to craft an trapped_chest.", + "initial_inventory": { + "0": { + "oak_log": 1, + "oak_planks": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_log": 2, + "oak_planks": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "trapped_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_trapped_chest_1_with_plan_missing_iron_ingot_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an trapped_chest", + "conversation": "Let's work together to craft an trapped_chest.", + "initial_inventory": { + "0": { + "oak_log": 1, + "oak_planks": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_log": 2, + "oak_planks": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "trapped_chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_activator_rail_0_with_plan_missing_iron_ingot_redstone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "oak_log": 1, + "oak_planks": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 1, + "stone_pickaxe": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot", + "redstone" + ] + }, + "multiagent_crafting_activator_rail_1_with_plan_missing_iron_ingot_redstone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "oak_log": 1, + "oak_planks": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 1, + "stone_pickaxe": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot", + "redstone" + ] + }, + "multiagent_crafting_activator_rail_0_with_plan_missing_redstone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "oak_log": 1, + "oak_planks": 1 + }, + "1": { + "iron_ingot": 3, + "oak_planks": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_activator_rail_1_with_plan_missing_redstone_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "oak_log": 1, + "oak_planks": 1 + }, + "1": { + "iron_ingot": 3, + "oak_planks": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_activator_rail_0_with_plan_missing_iron_ingot_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "oak_log": 1, + "oak_planks": 1, + "stone_pickaxe": 1 + }, + "1": { + "redstone": 1, + "oak_planks": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_activator_rail_1_with_plan_missing_iron_ingot_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "oak_log": 1, + "oak_planks": 1, + "stone_pickaxe": 1 + }, + "1": { + "redstone": 1, + "oak_planks": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_activator_rail_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "oak_log": 1, + "oak_planks": 1 + }, + "1": { + "iron_ingot": 3, + "redstone": 1, + "oak_planks": 1 + } + }, + "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": [] + }, + "multiagent_crafting_activator_rail_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "oak_log": 1, + "oak_planks": 1 + }, + "1": { + "iron_ingot": 3, + "redstone": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_glow_item_frame_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an glow_item_frame", + "conversation": "Let's work together to craft an glow_item_frame.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "rabbit_hide": 2, + "glow_ink_sac": 1 + }, + "1": { + "oak_planks": 2, + "rabbit_hide": 2 + } + }, + "agent_count": 2, + "target": "glow_item_frame", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_glow_item_frame_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an glow_item_frame", + "conversation": "Let's work together to craft an glow_item_frame.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "rabbit_hide": 2, + "glow_ink_sac": 1 + }, + "1": { + "oak_planks": 2, + "rabbit_hide": 2 + } + }, + "agent_count": 2, + "target": "glow_item_frame", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_0_with_plan_missing_black_wool_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "blue_dye": 2, + "red_dye": 1, + "oak_log": 1 + }, + "1": { + "blue_dye": 1, + "red_dye": 2, + "shears": 1 + } + }, + "agent_count": 2, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_purple_banner_1_with_plan_missing_black_wool_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "blue_dye": 2, + "red_dye": 1, + "oak_log": 1 + }, + "1": { + "blue_dye": 1, + "red_dye": 2, + "shears": 1 + } + }, + "agent_count": 2, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_purple_banner_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "blue_dye": 2, + "red_dye": 2, + "black_wool": 3, + "oak_log": 1 + }, + "1": { + "blue_dye": 1, + "red_dye": 1, + "black_wool": 3 + } + }, + "agent_count": 2, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "blue_dye": 2, + "red_dye": 2, + "black_wool": 3, + "oak_log": 1 + }, + "1": { + "blue_dye": 1, + "red_dye": 1, + "black_wool": 3 + } + }, + "agent_count": 2, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_crossbow_0_with_plan_missing_iron_ingot_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an crossbow", + "conversation": "Let's work together to craft an crossbow.", + "initial_inventory": { + "0": { + "oak_log": 1, + "string": 1, + "oak_planks": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_log": 1, + "string": 1, + "oak_planks": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "crossbow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_crossbow_1_with_plan_missing_iron_ingot_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an crossbow", + "conversation": "Let's work together to craft an crossbow.", + "initial_inventory": { + "0": { + "oak_log": 1, + "string": 1, + "oak_planks": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_log": 1, + "string": 1, + "oak_planks": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "crossbow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_crossbow_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an crossbow", + "conversation": "Let's work together to craft an crossbow.", + "initial_inventory": { + "0": { + "oak_log": 1, + "iron_ingot": 1, + "string": 1, + "oak_planks": 1 + }, + "1": { + "oak_log": 1, + "iron_ingot": 1, + "string": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "crossbow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_crossbow_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an crossbow", + "conversation": "Let's work together to craft an crossbow.", + "initial_inventory": { + "0": { + "oak_log": 1, + "iron_ingot": 1, + "string": 1, + "oak_planks": 1 + }, + "1": { + "oak_log": 1, + "iron_ingot": 1, + "string": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "crossbow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lantern_0_with_plan_missing_iron_ingot_coal_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lantern", + "conversation": "Let's work together to craft an lantern.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "stone_pickaxe": 1, + "iron_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot", + "coal" + ] + }, + "multiagent_crafting_lantern_1_with_plan_missing_iron_ingot_coal_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lantern", + "conversation": "Let's work together to craft an lantern.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "stone_pickaxe": 1, + "iron_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot", + "coal" + ] + }, + "multiagent_crafting_lantern_0_with_plan_missing_coal_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lantern", + "conversation": "Let's work together to craft an lantern.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "1": { + "oak_planks": 1, + "iron_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "coal" + ] + }, + "multiagent_crafting_lantern_1_with_plan_missing_coal_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lantern", + "conversation": "Let's work together to craft an lantern.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "1": { + "oak_planks": 1, + "iron_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "coal" + ] + }, + "multiagent_crafting_lantern_0_with_plan_missing_iron_ingot_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lantern", + "conversation": "Let's work together to craft an lantern.", + "initial_inventory": { + "0": { + "coal": 1, + "oak_planks": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 1, + "stone_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_lantern_1_with_plan_missing_iron_ingot_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lantern", + "conversation": "Let's work together to craft an lantern.", + "initial_inventory": { + "0": { + "coal": 1, + "oak_planks": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 1, + "stone_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_lantern_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lantern", + "conversation": "Let's work together to craft an lantern.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "1": { + "coal": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lantern_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lantern", + "conversation": "Let's work together to craft an lantern.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 1 + }, + "1": { + "coal": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_soul_lantern_0_with_plan_missing_iron_ingot_coal_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "soul_sand": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 1, + "stone_pickaxe": 1, + "iron_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot", + "coal" + ] + }, + "multiagent_crafting_soul_lantern_1_with_plan_missing_iron_ingot_coal_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "soul_sand": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 1, + "stone_pickaxe": 1, + "iron_pickaxe": 1 + } + }, + "agent_count": 2, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot", + "coal" + ] + }, + "multiagent_crafting_soul_lantern_0_with_plan_missing_coal_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 1, + "iron_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "soul_sand": 1 + } + }, + "agent_count": 2, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "coal" + ] + }, + "multiagent_crafting_soul_lantern_1_with_plan_missing_coal_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 1, + "iron_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "soul_sand": 1 + } + }, + "agent_count": 2, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "coal" + ] + }, + "multiagent_crafting_soul_lantern_0_with_plan_missing_iron_ingot_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "coal": 1, + "oak_planks": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "soul_sand": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_soul_lantern_1_with_plan_missing_iron_ingot_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "coal": 1, + "oak_planks": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "soul_sand": 1, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_soul_lantern_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 1, + "soul_sand": 1 + }, + "1": { + "coal": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_soul_lantern_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 1, + "soul_sand": 1 + }, + "1": { + "coal": 1, + "oak_planks": 1 + } + }, + "agent_count": 2, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_0_with_plan_missing_stone_bricks_gold_ingot_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 2, + "iron_pickaxe": 1 + }, + "1": { + "netherite_scrap": 2, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "stone_bricks", + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_1_with_plan_missing_stone_bricks_gold_ingot_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 2, + "iron_pickaxe": 1 + }, + "1": { + "netherite_scrap": 2, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "stone_bricks", + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_0_with_plan_missing_gold_ingot_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 4, + "netherite_scrap": 2, + "iron_pickaxe": 1 + }, + "1": { + "stone_bricks": 5, + "netherite_scrap": 2, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_1_with_plan_missing_gold_ingot_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 4, + "netherite_scrap": 2, + "iron_pickaxe": 1 + }, + "1": { + "stone_bricks": 5, + "netherite_scrap": 2, + "furnace": 1 + } + }, + "agent_count": 2, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_0_with_plan_missing_stone_bricks_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 2, + "gold_ingot": 2 + }, + "1": { + "netherite_scrap": 2, + "gold_ingot": 2 + } + }, + "agent_count": 2, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + "stone_bricks" + ] + }, + "multiagent_crafting_lodestone_1_with_plan_missing_stone_bricks_depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 2, + "gold_ingot": 2 + }, + "1": { + "netherite_scrap": 2, + "gold_ingot": 2 + } + }, + "agent_count": 2, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + "stone_bricks" + ] + }, + "multiagent_crafting_lodestone_0_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 5, + "netherite_scrap": 2, + "gold_ingot": 2 + }, + "1": { + "stone_bricks": 4, + "netherite_scrap": 2, + "gold_ingot": 2 + } + }, + "agent_count": 2, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_1_with_plan__depth_2_num_agents_2": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 5, + "netherite_scrap": 2, + "gold_ingot": 2 + }, + "1": { + "stone_bricks": 4, + "netherite_scrap": 2, + "gold_ingot": 2 + } + }, + "agent_count": 2, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [] + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/train_tasks/tasks_2_agents_stats.txt b/tasks/crafting_tasks/train_tasks/tasks_2_agents_stats.txt new file mode 100644 index 0000000..f6c5fea --- /dev/null +++ b/tasks/crafting_tasks/train_tasks/tasks_2_agents_stats.txt @@ -0,0 +1,16 @@ +{ + "num_tasks": 276, + "avg_depth": 2.260869565217391, + "std_depth": 0.7642780796194337, + "num_tasks_based_depth": { + "0": 100, + "1": 100, + "2": 76 + }, + "num_missing_resources": { + "0": 148, + "1": 91, + "2": 35, + "3": 2 + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/train_tasks/tasks_3_agents.json b/tasks/crafting_tasks/train_tasks/tasks_3_agents.json new file mode 100644 index 0000000..3edef3a --- /dev/null +++ b/tasks/crafting_tasks/train_tasks/tasks_3_agents.json @@ -0,0 +1,9278 @@ +{ + "multiagent_crafting_polished_diorite_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an polished_diorite", + "conversation": "Let's work together to craft an polished_diorite.", + "initial_inventory": { + "0": { + "diorite": 2 + }, + "1": { + "diorite": 1 + }, + "2": { + "diorite": 1 + } + }, + "agent_count": 3, + "target": "polished_diorite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_stained_glass_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_stained_glass", + "conversation": "Let's work together to craft an purple_stained_glass.", + "initial_inventory": { + "0": { + "glass": 2, + "blue_dye": 1 + }, + "1": { + "glass": 4, + "red_dye": 1 + }, + "2": { + "glass": 2 + } + }, + "agent_count": 3, + "target": "purple_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_terracotta_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an magenta_terracotta", + "conversation": "Let's work together to craft an magenta_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 4, + "magenta_dye": 1 + }, + "1": { + "terracotta": 2 + }, + "2": { + "terracotta": 2 + } + }, + "agent_count": 3, + "target": "magenta_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_nether_bricks_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an chiseled_nether_bricks", + "conversation": "Let's work together to craft an chiseled_nether_bricks.", + "initial_inventory": { + "0": { + "nether_bricks": 1 + }, + "1": { + "nether_bricks": 1 + }, + "2": { + "nether_bricks": 1 + } + }, + "agent_count": 3, + "target": "chiseled_nether_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_enchanting_table_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an enchanting_table", + "conversation": "Let's work together to craft an enchanting_table.", + "initial_inventory": { + "0": { + "book": 1, + "obsidian": 1 + }, + "1": { + "diamond": 2, + "obsidian": 2 + }, + "2": { + "obsidian": 1 + } + }, + "agent_count": 3, + "target": "enchanting_table", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_granite_wall_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an granite_wall", + "conversation": "Let's work together to craft an granite_wall.", + "initial_inventory": { + "0": { + "diorite": 2, + "quartz": 2 + }, + "1": { + "diorite": 2, + "quartz": 2 + }, + "2": { + "diorite": 2, + "quartz": 2 + } + }, + "agent_count": 3, + "target": "granite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_comparator_0_with_plan_missing_redstone_torch_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "quartz": 1, + "stone": 1 + }, + "1": { + "stone": 1 + }, + "2": { + "stone": 1 + } + }, + "agent_count": 3, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "redstone_torch" + ] + }, + "multiagent_crafting_deepslate_brick_wall_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an deepslate_brick_wall", + "conversation": "Let's work together to craft an deepslate_brick_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 2 + }, + "1": { + "polished_deepslate": 4 + }, + "2": { + "polished_deepslate": 2 + } + }, + "agent_count": 3, + "target": "deepslate_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_diorite_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an polished_diorite", + "conversation": "Let's work together to craft an polished_diorite.", + "initial_inventory": { + "0": { + "diorite": 2 + }, + "1": { + "diorite": 1 + }, + "2": { + "diorite": 1 + } + }, + "agent_count": 3, + "target": "polished_diorite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_gray_banner_2_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an light_gray_banner", + "conversation": "Let's work together to craft an light_gray_banner.", + "initial_inventory": { + "0": { + "light_gray_dye": 2, + "oak_planks": 2 + }, + "1": { + "light_gray_dye": 2, + "shears": 1 + }, + "2": { + "light_gray_dye": 2 + } + }, + "agent_count": 3, + "target": "light_gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_blast_furnace_2_with_plan_missing_iron_ingot_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "furnace": 1, + "smooth_stone": 1 + }, + "1": { + "smooth_stone": 1, + "stone_pickaxe": 1 + }, + "2": { + "smooth_stone": 1, + "furnace": 1 + } + }, + "agent_count": 3, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_soul_lantern_0_with_plan_missing_iron_ingot_coal_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "stick": 1, + "furnace": 1 + }, + "1": { + "soul_sand": 1, + "iron_pickaxe": 1 + }, + "2": { + "stone_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "iron_ingot", + "coal" + ] + }, + "multiagent_crafting_diorite_wall_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an diorite_wall", + "conversation": "Let's work together to craft an diorite_wall.", + "initial_inventory": { + "0": { + "diorite": 2 + }, + "1": { + "diorite": 2 + }, + "2": { + "diorite": 2 + } + }, + "agent_count": 3, + "target": "diorite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_orange_banner_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an orange_banner", + "conversation": "Let's work together to craft an orange_banner.", + "initial_inventory": { + "0": { + "orange_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "orange_dye": 2, + "black_wool": 2 + }, + "2": { + "orange_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "orange_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_comparator_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "redstone_torch": 1, + "quartz": 1, + "stone": 1 + }, + "1": { + "redstone_torch": 1, + "stone": 1 + }, + "2": { + "redstone_torch": 1, + "stone": 1 + } + }, + "agent_count": 3, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_candle_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_candle", + "conversation": "Let's work together to craft an purple_candle.", + "initial_inventory": { + "0": { + "string": 1, + "red_dye": 1 + }, + "1": { + "honeycomb": 1 + }, + "2": { + "blue_dye": 1 + } + }, + "agent_count": 3, + "target": "purple_candle", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_end_stone_brick_wall_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an end_stone_brick_wall", + "conversation": "Let's work together to craft an end_stone_brick_wall.", + "initial_inventory": { + "0": { + "end_stone_bricks": 2 + }, + "1": { + "end_stone_bricks": 2 + }, + "2": { + "end_stone_bricks": 2 + } + }, + "agent_count": 3, + "target": "end_stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_blackstone_brick_wall_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an polished_blackstone_brick_wall", + "conversation": "Let's work together to craft an polished_blackstone_brick_wall.", + "initial_inventory": { + "0": { + "polished_blackstone": 2 + }, + "1": { + "polished_blackstone": 4 + }, + "2": { + "polished_blackstone": 2 + } + }, + "agent_count": 3, + "target": "polished_blackstone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_sandstone_wall_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an red_sandstone_wall", + "conversation": "Let's work together to craft an red_sandstone_wall.", + "initial_inventory": { + "0": { + "red_sandstone": 2 + }, + "1": { + "red_sandstone": 2 + }, + "2": { + "red_sandstone": 2 + } + }, + "agent_count": 3, + "target": "red_sandstone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_grindstone_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an grindstone", + "conversation": "Let's work together to craft an grindstone.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "stone": 1 + }, + "1": { + "stone": 1, + "oak_log": 1 + }, + "2": { + "stone": 1 + } + }, + "agent_count": 3, + "target": "grindstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brick_wall_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an brick_wall", + "conversation": "Let's work together to craft an brick_wall.", + "initial_inventory": { + "0": { + "bricks": 2 + }, + "1": { + "bricks": 2 + }, + "2": { + "bricks": 2 + } + }, + "agent_count": 3, + "target": "brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_stone_axe_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an stone_axe", + "conversation": "Let's work together to craft an stone_axe.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "oak_planks": 2 + }, + "1": { + "cobblestone": 1 + }, + "2": { + "cobblestone": 1 + } + }, + "agent_count": 3, + "target": "stone_axe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_piston_1_with_plan_missing_cobblestone_iron_ingot_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "redstone": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 1, + "wooden_pickaxe": 1 + }, + "2": { + "oak_planks": 1, + "stone_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "cobblestone", + "iron_ingot" + ] + }, + "multiagent_crafting_waxed_cut_copper_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an waxed_cut_copper", + "conversation": "Let's work together to craft an waxed_cut_copper.", + "initial_inventory": { + "0": { + "copper_block": 1, + "honeycomb": 1 + }, + "1": { + "copper_block": 2, + "honeycomb": 2 + }, + "2": { + "copper_block": 1, + "honeycomb": 1 + } + }, + "agent_count": 3, + "target": "waxed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_terracotta_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_terracotta", + "conversation": "Let's work together to craft an purple_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 2, + "purple_dye": 1 + }, + "1": { + "terracotta": 2 + }, + "2": { + "terracotta": 4 + } + }, + "agent_count": 3, + "target": "purple_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_granite_wall_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an granite_wall", + "conversation": "Let's work together to craft an granite_wall.", + "initial_inventory": { + "0": { + "diorite": 2, + "quartz": 2 + }, + "1": { + "diorite": 2, + "quartz": 2 + }, + "2": { + "diorite": 2, + "quartz": 2 + } + }, + "agent_count": 3, + "target": "granite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_repeater_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone_torch": 2, + "stone": 1 + }, + "1": { + "redstone": 1, + "stone": 1 + }, + "2": { + "stone": 1 + } + }, + "agent_count": 3, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_enchanting_table_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an enchanting_table", + "conversation": "Let's work together to craft an enchanting_table.", + "initial_inventory": { + "0": { + "paper": 1, + "leather": 1, + "obsidian": 1 + }, + "1": { + "paper": 1, + "diamond": 2, + "obsidian": 1 + }, + "2": { + "paper": 1, + "obsidian": 2 + } + }, + "agent_count": 3, + "target": "enchanting_table", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_stone_brick_wall_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an stone_brick_wall", + "conversation": "Let's work together to craft an stone_brick_wall.", + "initial_inventory": { + "0": { + "stone_bricks": 2 + }, + "1": { + "stone_bricks": 2 + }, + "2": { + "stone_bricks": 2 + } + }, + "agent_count": 3, + "target": "stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bamboo_mosaic_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an bamboo_mosaic", + "conversation": "Let's work together to craft an bamboo_mosaic.", + "initial_inventory": { + "0": { + "bamboo_planks": 1 + }, + "1": { + "bamboo_planks": 1 + }, + "2": { + "bamboo_planks": 1 + } + }, + "agent_count": 3, + "target": "bamboo_mosaic", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chain_2_with_plan_missing_iron_ingot_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an chain", + "conversation": "Let's work together to craft an chain.", + "initial_inventory": { + "0": { + "iron_nugget": 2 + }, + "1": { + "stone_pickaxe": 1 + }, + "2": { + "furnace": 1 + } + }, + "agent_count": 3, + "target": "chain", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_soul_lantern_1_with_plan_missing_iron_ingot_coal_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "stick": 1, + "furnace": 1 + }, + "1": { + "soul_sand": 1, + "iron_pickaxe": 1 + }, + "2": { + "stone_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "iron_ingot", + "coal" + ] + }, + "multiagent_crafting_enchanting_table_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an enchanting_table", + "conversation": "Let's work together to craft an enchanting_table.", + "initial_inventory": { + "0": { + "book": 1, + "obsidian": 1 + }, + "1": { + "diamond": 2, + "obsidian": 2 + }, + "2": { + "obsidian": 1 + } + }, + "agent_count": 3, + "target": "enchanting_table", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tiles_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an deepslate_tiles", + "conversation": "Let's work together to craft an deepslate_tiles.", + "initial_inventory": { + "0": { + "polished_deepslate": 1 + }, + "1": { + "polished_deepslate": 2 + }, + "2": { + "polished_deepslate": 1 + } + }, + "agent_count": 3, + "target": "deepslate_tiles", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_yellow_banner_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an yellow_banner", + "conversation": "Let's work together to craft an yellow_banner.", + "initial_inventory": { + "0": { + "yellow_wool": 2, + "stick": 1 + }, + "1": { + "yellow_wool": 2 + }, + "2": { + "yellow_wool": 2 + } + }, + "agent_count": 3, + "target": "yellow_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_terracotta_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_terracotta", + "conversation": "Let's work together to craft an cyan_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 2, + "blue_dye": 1 + }, + "1": { + "terracotta": 2, + "green_dye": 1 + }, + "2": { + "terracotta": 4 + } + }, + "agent_count": 3, + "target": "cyan_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_cut_copper_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an waxed_cut_copper", + "conversation": "Let's work together to craft an waxed_cut_copper.", + "initial_inventory": { + "0": { + "waxed_copper_block": 2 + }, + "1": { + "waxed_copper_block": 1 + }, + "2": { + "waxed_copper_block": 1 + } + }, + "agent_count": 3, + "target": "waxed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_gray_banner_0_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an light_gray_banner", + "conversation": "Let's work together to craft an light_gray_banner.", + "initial_inventory": { + "0": { + "light_gray_dye": 2, + "oak_planks": 2 + }, + "1": { + "light_gray_dye": 2, + "shears": 1 + }, + "2": { + "light_gray_dye": 2 + } + }, + "agent_count": 3, + "target": "light_gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_map_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an map", + "conversation": "Let's work together to craft an map.", + "initial_inventory": { + "0": { + "paper": 4, + "compass": 1 + }, + "1": { + "paper": 2 + }, + "2": { + "paper": 2 + } + }, + "agent_count": 3, + "target": "map", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_campfire_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an campfire", + "conversation": "Let's work together to craft an campfire.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "dark_oak_log": 1 + }, + "1": { + "coal": 1, + "dark_oak_log": 1 + }, + "2": { + "dark_oak_log": 1 + } + }, + "agent_count": 3, + "target": "campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_end_crystal_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an end_crystal", + "conversation": "Let's work together to craft an end_crystal.", + "initial_inventory": { + "0": { + "glass": 2, + "ender_eye": 1 + }, + "1": { + "glass": 3, + "ghast_tear": 1 + }, + "2": { + "glass": 2 + } + }, + "agent_count": 3, + "target": "end_crystal", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_banner_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an magenta_banner", + "conversation": "Let's work together to craft an magenta_banner.", + "initial_inventory": { + "0": { + "magenta_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "magenta_dye": 2, + "black_wool": 2 + }, + "2": { + "magenta_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "magenta_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_piston_0_with_plan_missing_cobblestone_redstone_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "iron_ingot": 1 + }, + "1": { + "oak_planks": 1, + "wooden_pickaxe": 1 + }, + "2": { + "oak_planks": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "cobblestone", + "redstone" + ] + }, + "multiagent_crafting_iron_axe_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an iron_axe", + "conversation": "Let's work together to craft an iron_axe.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + } + }, + "agent_count": 3, + "target": "iron_axe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_golden_carrot_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an golden_carrot", + "conversation": "Let's work together to craft an golden_carrot.", + "initial_inventory": { + "0": { + "gold_nugget": 2, + "carrot": 1 + }, + "1": { + "gold_nugget": 4 + }, + "2": { + "gold_nugget": 2 + } + }, + "agent_count": 3, + "target": "golden_carrot", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_blackstone_brick_wall_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an polished_blackstone_brick_wall", + "conversation": "Let's work together to craft an polished_blackstone_brick_wall.", + "initial_inventory": { + "0": { + "polished_blackstone": 2 + }, + "1": { + "polished_blackstone": 4 + }, + "2": { + "polished_blackstone": 2 + } + }, + "agent_count": 3, + "target": "polished_blackstone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_stone_brick_wall_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an stone_brick_wall", + "conversation": "Let's work together to craft an stone_brick_wall.", + "initial_inventory": { + "0": { + "stone_bricks": 2 + }, + "1": { + "stone_bricks": 2 + }, + "2": { + "stone_bricks": 2 + } + }, + "agent_count": 3, + "target": "stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_soul_lantern_2_with_plan_missing_iron_ingot_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "coal": 1, + "stone_pickaxe": 1 + }, + "1": { + "stick": 1, + "furnace": 1 + }, + "2": { + "soul_sand": 1 + } + }, + "agent_count": 3, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_blast_furnace_0_with_plan_missing_furnace_smooth_stone_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 3 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + } + }, + "agent_count": 3, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "furnace", + "smooth_stone" + ] + }, + "multiagent_crafting_armor_stand_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an armor_stand", + "conversation": "Let's work together to craft an armor_stand.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "smooth_stone": 1 + }, + "1": { + "oak_planks": 2, + "smooth_stone": 1 + }, + "2": { + "oak_planks": 1, + "smooth_stone": 1 + } + }, + "agent_count": 3, + "target": "armor_stand", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_2_with_plan_missing_redstone_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 2, + "bow": 1 + }, + "1": { + "cobblestone": 3, + "diamond_pickaxe": 1 + }, + "2": { + "cobblestone": 2 + } + }, + "agent_count": 3, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_armor_stand_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an armor_stand", + "conversation": "Let's work together to craft an armor_stand.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "smooth_stone": 1 + }, + "1": { + "oak_planks": 2, + "smooth_stone": 1 + }, + "2": { + "oak_planks": 1, + "smooth_stone": 1 + } + }, + "agent_count": 3, + "target": "armor_stand", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_blackstone_wall_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an polished_blackstone_wall", + "conversation": "Let's work together to craft an polished_blackstone_wall.", + "initial_inventory": { + "0": { + "polished_blackstone": 2 + }, + "1": { + "polished_blackstone": 2 + }, + "2": { + "polished_blackstone": 2 + } + }, + "agent_count": 3, + "target": "polished_blackstone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_campfire_1_with_plan_missing_coal_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an campfire", + "conversation": "Let's work together to craft an campfire.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "dark_oak_log": 1 + }, + "1": { + "dark_oak_log": 1, + "iron_pickaxe": 1 + }, + "2": { + "dark_oak_log": 1 + } + }, + "agent_count": 3, + "target": "campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "coal" + ] + }, + "multiagent_crafting_anvil_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an anvil", + "conversation": "Let's work together to craft an anvil.", + "initial_inventory": { + "0": { + "iron_block": 1, + "iron_ingot": 1 + }, + "1": { + "iron_block": 1, + "iron_ingot": 1 + }, + "2": { + "iron_block": 1, + "iron_ingot": 2 + } + }, + "agent_count": 3, + "target": "anvil", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_candle_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_candle", + "conversation": "Let's work together to craft an cyan_candle.", + "initial_inventory": { + "0": { + "string": 1, + "green_dye": 1 + }, + "1": { + "honeycomb": 1 + }, + "2": { + "blue_dye": 1 + } + }, + "agent_count": 3, + "target": "cyan_candle", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_repeater_1_with_plan_missing_redstone_stone_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone_torch": 2 + }, + "1": { + "diamond_pickaxe": 1 + }, + "2": { + "wooden_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "redstone", + "stone" + ] + }, + "multiagent_crafting_chiseled_sandstone_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an chiseled_sandstone", + "conversation": "Let's work together to craft an chiseled_sandstone.", + "initial_inventory": { + "0": { + "sandstone": 1 + }, + "1": { + "sandstone": 1 + }, + "2": { + "sandstone": 1 + } + }, + "agent_count": 3, + "target": "chiseled_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_blackstone_wall_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an polished_blackstone_wall", + "conversation": "Let's work together to craft an polished_blackstone_wall.", + "initial_inventory": { + "0": { + "polished_blackstone": 2 + }, + "1": { + "polished_blackstone": 2 + }, + "2": { + "polished_blackstone": 2 + } + }, + "agent_count": 3, + "target": "polished_blackstone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_campfire_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an campfire", + "conversation": "Let's work together to craft an campfire.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "dark_oak_log": 1 + }, + "1": { + "coal": 1, + "dark_oak_log": 1 + }, + "2": { + "dark_oak_log": 1 + } + }, + "agent_count": 3, + "target": "campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_piston_1_with_plan_missing_cobblestone_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "iron_ingot": 1 + }, + "1": { + "oak_planks": 1, + "redstone": 1 + }, + "2": { + "oak_planks": 1, + "wooden_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_mossy_stone_brick_wall_2_with_plan_missing_stone_bricks_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an mossy_stone_brick_wall", + "conversation": "Let's work together to craft an mossy_stone_brick_wall.", + "initial_inventory": { + "0": { + "moss_block": 2 + }, + "1": { + "moss_block": 2 + }, + "2": { + "moss_block": 2 + } + }, + "agent_count": 3, + "target": "mossy_stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "stone_bricks" + ] + }, + "multiagent_crafting_crossbow_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an crossbow", + "conversation": "Let's work together to craft an crossbow.", + "initial_inventory": { + "0": { + "stick": 1, + "iron_ingot": 1 + }, + "1": { + "stick": 1, + "string": 2 + }, + "2": { + "stick": 1, + "tripwire_hook": 1 + } + }, + "agent_count": 3, + "target": "crossbow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mossy_stone_brick_wall_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an mossy_stone_brick_wall", + "conversation": "Let's work together to craft an mossy_stone_brick_wall.", + "initial_inventory": { + "0": { + "stone_bricks": 2, + "moss_block": 2 + }, + "1": { + "stone_bricks": 2, + "moss_block": 2 + }, + "2": { + "stone_bricks": 2, + "moss_block": 2 + } + }, + "agent_count": 3, + "target": "mossy_stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_orange_banner_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an orange_banner", + "conversation": "Let's work together to craft an orange_banner.", + "initial_inventory": { + "0": { + "orange_wool": 2, + "stick": 1 + }, + "1": { + "orange_wool": 2 + }, + "2": { + "orange_wool": 2 + } + }, + "agent_count": 3, + "target": "orange_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_brick_slab": 5, + "netherite_scrap": 1, + "gold_ingot": 2 + }, + "1": { + "stone_brick_slab": 6, + "netherite_scrap": 2, + "gold_ingot": 1 + }, + "2": { + "stone_brick_slab": 5, + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 3, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_piston_2_with_plan_missing_redstone_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "cobblestone": 1, + "iron_ingot": 1 + }, + "1": { + "oak_planks": 1, + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "2": { + "oak_planks": 1, + "cobblestone": 2 + } + }, + "agent_count": 3, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_chiseled_red_sandstone_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an chiseled_red_sandstone", + "conversation": "Let's work together to craft an chiseled_red_sandstone.", + "initial_inventory": { + "0": { + "red_sandstone": 1 + }, + "1": { + "red_sandstone": 1 + }, + "2": { + "red_sandstone": 1 + } + }, + "agent_count": 3, + "target": "chiseled_red_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_map_2_with_plan_missing_compass_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an map", + "conversation": "Let's work together to craft an map.", + "initial_inventory": { + "0": { + "paper": 2 + }, + "1": { + "paper": 4 + }, + "2": { + "paper": 2 + } + }, + "agent_count": 3, + "target": "map", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "compass" + ] + }, + "multiagent_crafting_stone_pickaxe_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an stone_pickaxe", + "conversation": "Let's work together to craft an stone_pickaxe.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "oak_planks": 2 + }, + "1": { + "cobblestone": 1 + }, + "2": { + "cobblestone": 1 + } + }, + "agent_count": 3, + "target": "stone_pickaxe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_bookshelf_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an chiseled_bookshelf", + "conversation": "Let's work together to craft an chiseled_bookshelf.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "oak_slab": 1 + }, + "1": { + "oak_planks": 2, + "oak_slab": 1 + }, + "2": { + "oak_planks": 2, + "oak_slab": 1 + } + }, + "agent_count": 3, + "target": "chiseled_bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_diamond_axe_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an diamond_axe", + "conversation": "Let's work together to craft an diamond_axe.", + "initial_inventory": { + "0": { + "diamond": 1, + "oak_planks": 2 + }, + "1": { + "diamond": 1 + }, + "2": { + "diamond": 1 + } + }, + "agent_count": 3, + "target": "diamond_axe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_map_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an map", + "conversation": "Let's work together to craft an map.", + "initial_inventory": { + "0": { + "paper": 4, + "compass": 1 + }, + "1": { + "paper": 2 + }, + "2": { + "paper": 2 + } + }, + "agent_count": 3, + "target": "map", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_0_with_plan_missing_stone_brick_slab_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 2, + "gold_ingot": 1 + }, + "1": { + "netherite_scrap": 1, + "gold_ingot": 2 + }, + "2": { + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 3, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "stone_brick_slab" + ] + }, + "multiagent_crafting_purple_stained_glass_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_stained_glass", + "conversation": "Let's work together to craft an purple_stained_glass.", + "initial_inventory": { + "0": { + "glass": 2, + "purple_dye": 1 + }, + "1": { + "glass": 2 + }, + "2": { + "glass": 4 + } + }, + "agent_count": 3, + "target": "purple_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_item_frame_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an item_frame", + "conversation": "Let's work together to craft an item_frame.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "1": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "2": { + "oak_planks": 2, + "rabbit_hide": 2 + } + }, + "agent_count": 3, + "target": "item_frame", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_anvil_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an anvil", + "conversation": "Let's work together to craft an anvil.", + "initial_inventory": { + "0": { + "iron_block": 1, + "iron_ingot": 1 + }, + "1": { + "iron_block": 1, + "iron_ingot": 1 + }, + "2": { + "iron_block": 1, + "iron_ingot": 2 + } + }, + "agent_count": 3, + "target": "anvil", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_brick_wall_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an deepslate_brick_wall", + "conversation": "Let's work together to craft an deepslate_brick_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 2 + }, + "1": { + "polished_deepslate": 4 + }, + "2": { + "polished_deepslate": 2 + } + }, + "agent_count": 3, + "target": "deepslate_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_diorite_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an polished_diorite", + "conversation": "Let's work together to craft an polished_diorite.", + "initial_inventory": { + "0": { + "diorite": 2 + }, + "1": { + "diorite": 1 + }, + "2": { + "diorite": 1 + } + }, + "agent_count": 3, + "target": "polished_diorite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_candle_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_candle", + "conversation": "Let's work together to craft an purple_candle.", + "initial_inventory": { + "0": { + "string": 1, + "red_dye": 1 + }, + "1": { + "honeycomb": 1 + }, + "2": { + "blue_dye": 1 + } + }, + "agent_count": 3, + "target": "purple_candle", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_deepslate_wall_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an polished_deepslate_wall", + "conversation": "Let's work together to craft an polished_deepslate_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 2 + }, + "1": { + "polished_deepslate": 2 + }, + "2": { + "polished_deepslate": 2 + } + }, + "agent_count": 3, + "target": "polished_deepslate_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_yellow_banner_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an yellow_banner", + "conversation": "Let's work together to craft an yellow_banner.", + "initial_inventory": { + "0": { + "yellow_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "yellow_dye": 2, + "black_wool": 2 + }, + "2": { + "yellow_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "yellow_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_end_crystal_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an end_crystal", + "conversation": "Let's work together to craft an end_crystal.", + "initial_inventory": { + "0": { + "glass": 2, + "ender_eye": 1 + }, + "1": { + "glass": 3, + "ghast_tear": 1 + }, + "2": { + "glass": 2 + } + }, + "agent_count": 3, + "target": "end_crystal", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bamboo_mosaic_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an bamboo_mosaic", + "conversation": "Let's work together to craft an bamboo_mosaic.", + "initial_inventory": { + "0": { + "bamboo_planks": 1 + }, + "1": { + "bamboo_planks": 1 + }, + "2": { + "bamboo_planks": 1 + } + }, + "agent_count": 3, + "target": "bamboo_mosaic", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_orange_banner_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an orange_banner", + "conversation": "Let's work together to craft an orange_banner.", + "initial_inventory": { + "0": { + "orange_wool": 2, + "stick": 1 + }, + "1": { + "orange_wool": 2 + }, + "2": { + "orange_wool": 2 + } + }, + "agent_count": 3, + "target": "orange_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_golden_pickaxe_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an golden_pickaxe", + "conversation": "Let's work together to craft an golden_pickaxe.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 1 + }, + "2": { + "gold_ingot": 1 + } + }, + "agent_count": 3, + "target": "golden_pickaxe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_green_banner_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an green_banner", + "conversation": "Let's work together to craft an green_banner.", + "initial_inventory": { + "0": { + "green_wool": 2, + "stick": 1 + }, + "1": { + "green_wool": 2 + }, + "2": { + "green_wool": 2 + } + }, + "agent_count": 3, + "target": "green_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "purple_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "purple_dye": 2, + "black_wool": 2 + }, + "2": { + "purple_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_map_1_with_plan_missing_compass_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an map", + "conversation": "Let's work together to craft an map.", + "initial_inventory": { + "0": { + "paper": 2 + }, + "1": { + "paper": 4 + }, + "2": { + "paper": 2 + } + }, + "agent_count": 3, + "target": "map", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "compass" + ] + }, + "multiagent_crafting_lodestone_2_with_plan_missing_stone_brick_slab_gold_ingot_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 2, + "iron_pickaxe": 1 + }, + "1": { + "netherite_scrap": 1, + "furnace": 1 + }, + "2": { + "netherite_scrap": 1 + } + }, + "agent_count": 3, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "stone_brick_slab", + "gold_ingot" + ] + }, + "multiagent_crafting_purple_terracotta_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_terracotta", + "conversation": "Let's work together to craft an purple_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 2, + "purple_dye": 1 + }, + "1": { + "terracotta": 2 + }, + "2": { + "terracotta": 4 + } + }, + "agent_count": 3, + "target": "purple_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_1_with_plan_missing_stone_brick_slab_gold_ingot_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 2, + "iron_pickaxe": 1 + }, + "1": { + "netherite_scrap": 1, + "furnace": 1 + }, + "2": { + "netherite_scrap": 1 + } + }, + "agent_count": 3, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "stone_brick_slab", + "gold_ingot" + ] + }, + "multiagent_crafting_magenta_banner_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an magenta_banner", + "conversation": "Let's work together to craft an magenta_banner.", + "initial_inventory": { + "0": { + "magenta_wool": 2, + "stick": 1 + }, + "1": { + "magenta_wool": 2 + }, + "2": { + "magenta_wool": 2 + } + }, + "agent_count": 3, + "target": "magenta_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tiles_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an deepslate_tiles", + "conversation": "Let's work together to craft an deepslate_tiles.", + "initial_inventory": { + "0": { + "polished_deepslate": 1 + }, + "1": { + "polished_deepslate": 2 + }, + "2": { + "polished_deepslate": 1 + } + }, + "agent_count": 3, + "target": "deepslate_tiles", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_repeater_2_with_plan_missing_redstone_torch_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone": 1, + "stone": 1 + }, + "1": { + "stone": 1 + }, + "2": { + "stone": 1 + } + }, + "agent_count": 3, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "redstone_torch" + ] + }, + "multiagent_crafting_green_banner_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an green_banner", + "conversation": "Let's work together to craft an green_banner.", + "initial_inventory": { + "0": { + "green_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "green_dye": 2, + "black_wool": 2 + }, + "2": { + "green_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "green_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bamboo_raft_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an bamboo_raft", + "conversation": "Let's work together to craft an bamboo_raft.", + "initial_inventory": { + "0": { + "bamboo_planks": 1 + }, + "1": { + "bamboo_planks": 1 + }, + "2": { + "bamboo_planks": 3 + } + }, + "agent_count": 3, + "target": "bamboo_raft", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_red_sandstone_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an chiseled_red_sandstone", + "conversation": "Let's work together to craft an chiseled_red_sandstone.", + "initial_inventory": { + "0": { + "red_sandstone": 1 + }, + "1": { + "red_sandstone": 1 + }, + "2": { + "red_sandstone": 1 + } + }, + "agent_count": 3, + "target": "chiseled_red_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "deepslate_tiles": 2 + }, + "1": { + "deepslate_tiles": 2 + }, + "2": { + "deepslate_tiles": 2 + } + }, + "agent_count": 3, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_soul_lantern_1_with_plan_missing_iron_ingot_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "coal": 1, + "stone_pickaxe": 1 + }, + "1": { + "stick": 1, + "furnace": 1 + }, + "2": { + "soul_sand": 1 + } + }, + "agent_count": 3, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_stone_axe_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an stone_axe", + "conversation": "Let's work together to craft an stone_axe.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "stick": 2 + }, + "1": { + "cobblestone": 1 + }, + "2": { + "cobblestone": 1 + } + }, + "agent_count": 3, + "target": "stone_axe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_yellow_banner_2_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an yellow_banner", + "conversation": "Let's work together to craft an yellow_banner.", + "initial_inventory": { + "0": { + "yellow_dye": 2, + "oak_planks": 2 + }, + "1": { + "yellow_dye": 2, + "shears": 1 + }, + "2": { + "yellow_dye": 2 + } + }, + "agent_count": 3, + "target": "yellow_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_dispenser_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 2, + "bow": 1 + }, + "1": { + "cobblestone": 3, + "redstone": 1 + }, + "2": { + "cobblestone": 2 + } + }, + "agent_count": 3, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_sandstone_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an chiseled_sandstone", + "conversation": "Let's work together to craft an chiseled_sandstone.", + "initial_inventory": { + "0": { + "sandstone": 1 + }, + "1": { + "sandstone": 1 + }, + "2": { + "sandstone": 1 + } + }, + "agent_count": 3, + "target": "chiseled_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_piston_0_with_plan_missing_iron_ingot_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "cobblestone": 1, + "redstone": 1 + }, + "1": { + "oak_planks": 1, + "cobblestone": 2, + "stone_pickaxe": 1 + }, + "2": { + "oak_planks": 1, + "cobblestone": 1, + "furnace": 1 + } + }, + "agent_count": 3, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_granite_wall_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an granite_wall", + "conversation": "Let's work together to craft an granite_wall.", + "initial_inventory": { + "0": { + "diorite": 2, + "quartz": 2 + }, + "1": { + "diorite": 2, + "quartz": 2 + }, + "2": { + "diorite": 2, + "quartz": 2 + } + }, + "agent_count": 3, + "target": "granite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_detector_rail_1_with_plan_missing_stone_pressure_plate_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "redstone": 1 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 2 + } + }, + "agent_count": 3, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "stone_pressure_plate" + ] + }, + "multiagent_crafting_cyan_terracotta_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_terracotta", + "conversation": "Let's work together to craft an cyan_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 2, + "blue_dye": 1 + }, + "1": { + "terracotta": 2, + "green_dye": 1 + }, + "2": { + "terracotta": 4 + } + }, + "agent_count": 3, + "target": "cyan_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_recovery_compass_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an recovery_compass", + "conversation": "Let's work together to craft an recovery_compass.", + "initial_inventory": { + "0": { + "echo_shard": 2, + "compass": 1 + }, + "1": { + "echo_shard": 2 + }, + "2": { + "echo_shard": 4 + } + }, + "agent_count": 3, + "target": "recovery_compass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_enchanting_table_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an enchanting_table", + "conversation": "Let's work together to craft an enchanting_table.", + "initial_inventory": { + "0": { + "paper": 1, + "leather": 1, + "obsidian": 1 + }, + "1": { + "paper": 1, + "diamond": 2, + "obsidian": 1 + }, + "2": { + "paper": 1, + "obsidian": 2 + } + }, + "agent_count": 3, + "target": "enchanting_table", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_detector_rail_1_with_plan_missing_iron_ingot_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "stone_pressure_plate": 1, + "furnace": 1 + }, + "1": { + "redstone": 1 + }, + "2": { + "stone_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_chiseled_nether_bricks_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an chiseled_nether_bricks", + "conversation": "Let's work together to craft an chiseled_nether_bricks.", + "initial_inventory": { + "0": { + "nether_bricks": 1 + }, + "1": { + "nether_bricks": 1 + }, + "2": { + "nether_bricks": 1 + } + }, + "agent_count": 3, + "target": "chiseled_nether_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_composter_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an composter", + "conversation": "Let's work together to craft an composter.", + "initial_inventory": { + "0": { + "oak_slab": 2 + }, + "1": { + "oak_slab": 2 + }, + "2": { + "oak_slab": 3 + } + }, + "agent_count": 3, + "target": "composter", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_cut_copper_0_with_plan_missing_copper_block_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an waxed_cut_copper", + "conversation": "Let's work together to craft an waxed_cut_copper.", + "initial_inventory": { + "0": { + "honeycomb": 1 + }, + "1": { + "honeycomb": 2 + }, + "2": { + "honeycomb": 1 + } + }, + "agent_count": 3, + "target": "waxed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "copper_block" + ] + }, + "multiagent_crafting_crossbow_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an crossbow", + "conversation": "Let's work together to craft an crossbow.", + "initial_inventory": { + "0": { + "stick": 1, + "iron_ingot": 1 + }, + "1": { + "stick": 1, + "string": 2 + }, + "2": { + "stick": 1, + "tripwire_hook": 1 + } + }, + "agent_count": 3, + "target": "crossbow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sticky_piston_1_with_plan_missing_redstone_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "oak_planks": 1, + "cobblestone": 1 + }, + "1": { + "oak_planks": 1, + "cobblestone": 2, + "iron_ingot": 1 + }, + "2": { + "oak_planks": 1, + "cobblestone": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_purple_banner_1_with_plan__depth_0_num_agents_3": { + "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": 2, + "stick": 1 + }, + "1": { + "purple_wool": 2 + }, + "2": { + "purple_wool": 2 + } + }, + "agent_count": 3, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magma_block_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an magma_block", + "conversation": "Let's work together to craft an magma_block.", + "initial_inventory": { + "0": { + "blaze_powder": 2, + "slime_ball": 2 + }, + "1": { + "blaze_powder": 1, + "slime_ball": 1 + }, + "2": { + "blaze_powder": 1, + "slime_ball": 1 + } + }, + "agent_count": 3, + "target": "magma_block", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "stick": 2 + }, + "1": { + "iron_ingot": 2, + "redstone_torch": 1 + }, + "2": { + "iron_ingot": 2 + } + }, + "agent_count": 3, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 2, + "redstone": 1 + }, + "2": { + "iron_ingot": 2, + "stick": 1 + } + }, + "agent_count": 3, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bamboo_raft_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an bamboo_raft", + "conversation": "Let's work together to craft an bamboo_raft.", + "initial_inventory": { + "0": { + "bamboo_planks": 1 + }, + "1": { + "bamboo_planks": 1 + }, + "2": { + "bamboo_planks": 3 + } + }, + "agent_count": 3, + "target": "bamboo_raft", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_andesite_wall_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an andesite_wall", + "conversation": "Let's work together to craft an andesite_wall.", + "initial_inventory": { + "0": { + "diorite": 1, + "cobblestone": 1 + }, + "1": { + "diorite": 1, + "cobblestone": 1 + }, + "2": { + "diorite": 1, + "cobblestone": 1 + } + }, + "agent_count": 3, + "target": "andesite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_piston_2_with_plan_missing_iron_ingot_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "cobblestone": 1, + "redstone": 1 + }, + "1": { + "oak_planks": 1, + "cobblestone": 2, + "stone_pickaxe": 1 + }, + "2": { + "oak_planks": 1, + "cobblestone": 1, + "furnace": 1 + } + }, + "agent_count": 3, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_lodestone_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_brick_slab": 5, + "netherite_scrap": 1, + "gold_ingot": 2 + }, + "1": { + "stone_brick_slab": 6, + "netherite_scrap": 2, + "gold_ingot": 1 + }, + "2": { + "stone_brick_slab": 5, + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 3, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sandstone_wall_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an sandstone_wall", + "conversation": "Let's work together to craft an sandstone_wall.", + "initial_inventory": { + "0": { + "sandstone": 2 + }, + "1": { + "sandstone": 2 + }, + "2": { + "sandstone": 2 + } + }, + "agent_count": 3, + "target": "sandstone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_andesite_wall_2_with_plan_missing_cobblestone_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an andesite_wall", + "conversation": "Let's work together to craft an andesite_wall.", + "initial_inventory": { + "0": { + "diorite": 1, + "wooden_pickaxe": 1 + }, + "1": { + "diorite": 1 + }, + "2": { + "diorite": 1 + } + }, + "agent_count": 3, + "target": "andesite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_detector_rail_0_with_plan_missing_iron_ingot_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "stone_pressure_plate": 1, + "furnace": 1 + }, + "1": { + "redstone": 1 + }, + "2": { + "stone_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_purple_banner_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "purple_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "purple_dye": 2, + "black_wool": 2 + }, + "2": { + "purple_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mud_brick_wall_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an mud_brick_wall", + "conversation": "Let's work together to craft an mud_brick_wall.", + "initial_inventory": { + "0": { + "mud_bricks": 2 + }, + "1": { + "mud_bricks": 2 + }, + "2": { + "mud_bricks": 2 + } + }, + "agent_count": 3, + "target": "mud_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 3, + "stick": 1, + "string": 1, + "redstone": 1 + }, + "1": { + "cobblestone": 2, + "stick": 1, + "string": 1 + }, + "2": { + "cobblestone": 2, + "stick": 1, + "string": 1 + } + }, + "agent_count": 3, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_rail_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an rail", + "conversation": "Let's work together to craft an rail.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "stick": 1 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 2 + } + }, + "agent_count": 3, + "target": "rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bamboo_raft_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an bamboo_raft", + "conversation": "Let's work together to craft an bamboo_raft.", + "initial_inventory": { + "0": { + "bamboo_block": 1 + }, + "1": { + "bamboo_block": 1 + }, + "2": { + "bamboo_block": 1 + } + }, + "agent_count": 3, + "target": "bamboo_raft", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magma_block_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an magma_block", + "conversation": "Let's work together to craft an magma_block.", + "initial_inventory": { + "0": { + "magma_cream": 1 + }, + "1": { + "magma_cream": 1 + }, + "2": { + "magma_cream": 2 + } + }, + "agent_count": 3, + "target": "magma_block", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "deepslate_bricks": 2 + }, + "1": { + "deepslate_bricks": 2 + }, + "2": { + "deepslate_bricks": 4 + } + }, + "agent_count": 3, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mud_brick_wall_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an mud_brick_wall", + "conversation": "Let's work together to craft an mud_brick_wall.", + "initial_inventory": { + "0": { + "mud_bricks": 2 + }, + "1": { + "mud_bricks": 2 + }, + "2": { + "mud_bricks": 2 + } + }, + "agent_count": 3, + "target": "mud_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_grindstone_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an grindstone", + "conversation": "Let's work together to craft an grindstone.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "stone": 1 + }, + "1": { + "stone": 1, + "oak_log": 1 + }, + "2": { + "stone": 1 + } + }, + "agent_count": 3, + "target": "grindstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_detector_rail_2_with_plan_missing_iron_ingot_stone_pressure_plate_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "redstone": 1 + }, + "1": { + "stone_pickaxe": 1 + }, + "2": { + "furnace": 1 + } + }, + "agent_count": 3, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "iron_ingot", + "stone_pressure_plate" + ] + }, + "multiagent_crafting_green_banner_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an green_banner", + "conversation": "Let's work together to craft an green_banner.", + "initial_inventory": { + "0": { + "green_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "green_dye": 2, + "black_wool": 2 + }, + "2": { + "green_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "green_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_stone_brick_wall_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an stone_brick_wall", + "conversation": "Let's work together to craft an stone_brick_wall.", + "initial_inventory": { + "0": { + "stone_bricks": 2 + }, + "1": { + "stone_bricks": 2 + }, + "2": { + "stone_bricks": 2 + } + }, + "agent_count": 3, + "target": "stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_orange_banner_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an orange_banner", + "conversation": "Let's work together to craft an orange_banner.", + "initial_inventory": { + "0": { + "orange_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "orange_dye": 2, + "black_wool": 2 + }, + "2": { + "orange_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "orange_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_detector_rail_2_with_plan_missing_stone_pressure_plate_redstone_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "diamond_pickaxe": 1 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 2 + } + }, + "agent_count": 3, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "stone_pressure_plate", + "redstone" + ] + }, + "multiagent_crafting_golden_pickaxe_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an golden_pickaxe", + "conversation": "Let's work together to craft an golden_pickaxe.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 1 + }, + "2": { + "gold_ingot": 1 + } + }, + "agent_count": 3, + "target": "golden_pickaxe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_iron_axe_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an iron_axe", + "conversation": "Let's work together to craft an iron_axe.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "stick": 2 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + } + }, + "agent_count": 3, + "target": "iron_axe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_iron_axe_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an iron_axe", + "conversation": "Let's work together to craft an iron_axe.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + } + }, + "agent_count": 3, + "target": "iron_axe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_terracotta_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_terracotta", + "conversation": "Let's work together to craft an cyan_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 2, + "cyan_dye": 1 + }, + "1": { + "terracotta": 4 + }, + "2": { + "terracotta": 2 + } + }, + "agent_count": 3, + "target": "cyan_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_1_with_plan_missing_gold_ingot_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_brick_slab": 5, + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "stone_brick_slab": 5, + "netherite_scrap": 2, + "furnace": 1 + }, + "2": { + "stone_brick_slab": 6, + "netherite_scrap": 1 + } + }, + "agent_count": 3, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_rail_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an rail", + "conversation": "Let's work together to craft an rail.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "stick": 1 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 2 + } + }, + "agent_count": 3, + "target": "rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_comparator_0_with_plan_missing_stone_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "redstone": 1, + "stick": 1, + "quartz": 1 + }, + "1": { + "redstone": 1, + "stick": 1, + "wooden_pickaxe": 1 + }, + "2": { + "redstone": 1, + "stick": 1 + } + }, + "agent_count": 3, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "stone" + ] + }, + "multiagent_crafting_stone_pickaxe_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an stone_pickaxe", + "conversation": "Let's work together to craft an stone_pickaxe.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "stick": 2 + }, + "1": { + "cobblestone": 1 + }, + "2": { + "cobblestone": 1 + } + }, + "agent_count": 3, + "target": "stone_pickaxe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_iron_pickaxe_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an iron_pickaxe", + "conversation": "Let's work together to craft an iron_pickaxe.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + } + }, + "agent_count": 3, + "target": "iron_pickaxe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tiles_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an deepslate_tiles", + "conversation": "Let's work together to craft an deepslate_tiles.", + "initial_inventory": { + "0": { + "deepslate_bricks": 2 + }, + "1": { + "deepslate_bricks": 1 + }, + "2": { + "deepslate_bricks": 1 + } + }, + "agent_count": 3, + "target": "deepslate_tiles", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_stone_axe_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an stone_axe", + "conversation": "Let's work together to craft an stone_axe.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "oak_planks": 2 + }, + "1": { + "cobblestone": 1 + }, + "2": { + "cobblestone": 1 + } + }, + "agent_count": 3, + "target": "stone_axe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_prismarine_wall_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an prismarine_wall", + "conversation": "Let's work together to craft an prismarine_wall.", + "initial_inventory": { + "0": { + "prismarine": 2 + }, + "1": { + "prismarine": 2 + }, + "2": { + "prismarine": 2 + } + }, + "agent_count": 3, + "target": "prismarine_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_gray_banner_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an light_gray_banner", + "conversation": "Let's work together to craft an light_gray_banner.", + "initial_inventory": { + "0": { + "light_gray_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "light_gray_dye": 2, + "black_wool": 2 + }, + "2": { + "light_gray_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "light_gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_0_with_plan_missing_cobblestone_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "bow": 1 + }, + "1": { + "redstone": 1 + }, + "2": { + "wooden_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_comparator_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "redstone": 1, + "stick": 1, + "quartz": 1, + "stone": 1 + }, + "1": { + "redstone": 1, + "stick": 1, + "stone": 1 + }, + "2": { + "redstone": 1, + "stick": 1, + "stone": 1 + } + }, + "agent_count": 3, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tiles_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an deepslate_tiles", + "conversation": "Let's work together to craft an deepslate_tiles.", + "initial_inventory": { + "0": { + "deepslate_bricks": 2 + }, + "1": { + "deepslate_bricks": 1 + }, + "2": { + "deepslate_bricks": 1 + } + }, + "agent_count": 3, + "target": "deepslate_tiles", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_brick_slab": 5, + "netherite_scrap": 1, + "gold_ingot": 2 + }, + "1": { + "stone_brick_slab": 6, + "netherite_scrap": 2, + "gold_ingot": 1 + }, + "2": { + "stone_brick_slab": 5, + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 3, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_nether_brick_wall_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an red_nether_brick_wall", + "conversation": "Let's work together to craft an red_nether_brick_wall.", + "initial_inventory": { + "0": { + "red_nether_bricks": 2 + }, + "1": { + "red_nether_bricks": 2 + }, + "2": { + "red_nether_bricks": 2 + } + }, + "agent_count": 3, + "target": "red_nether_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sticky_piston_0_with_plan_missing_cobblestone_redstone_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "oak_planks": 1, + "diamond_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "iron_ingot": 1 + }, + "2": { + "oak_planks": 1, + "wooden_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "cobblestone", + "redstone" + ] + }, + "multiagent_crafting_piston_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "cobblestone": 1, + "iron_ingot": 1 + }, + "1": { + "oak_planks": 1, + "cobblestone": 2, + "redstone": 1 + }, + "2": { + "oak_planks": 1, + "cobblestone": 1 + } + }, + "agent_count": 3, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bow_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an bow", + "conversation": "Let's work together to craft an bow.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "string": 1 + }, + "1": { + "string": 1 + }, + "2": { + "string": 1 + } + }, + "agent_count": 3, + "target": "bow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_piston_0_with_plan_missing_cobblestone_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "iron_ingot": 1 + }, + "1": { + "oak_planks": 1, + "redstone": 1 + }, + "2": { + "oak_planks": 1, + "wooden_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_green_banner_2_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an green_banner", + "conversation": "Let's work together to craft an green_banner.", + "initial_inventory": { + "0": { + "green_dye": 2, + "oak_planks": 2 + }, + "1": { + "green_dye": 2, + "shears": 1 + }, + "2": { + "green_dye": 2 + } + }, + "agent_count": 3, + "target": "green_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_blast_furnace_2_with_plan_missing_furnace_smooth_stone_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 3 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + } + }, + "agent_count": 3, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "furnace", + "smooth_stone" + ] + }, + "multiagent_crafting_item_frame_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an item_frame", + "conversation": "Let's work together to craft an item_frame.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "1": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "2": { + "oak_planks": 2, + "rabbit_hide": 2 + } + }, + "agent_count": 3, + "target": "item_frame", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lantern_2_with_plan_missing_torch_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an lantern", + "conversation": "Let's work together to craft an lantern.", + "initial_inventory": { + "0": { + "iron_nugget": 4 + }, + "1": { + "iron_nugget": 2 + }, + "2": { + "iron_nugget": 2 + } + }, + "agent_count": 3, + "target": "lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "torch" + ] + }, + "multiagent_crafting_activator_rail_1_with_plan_missing_iron_ingot_redstone_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "furnace": 1 + }, + "1": { + "stick": 1, + "diamond_pickaxe": 1 + }, + "2": { + "stone_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "iron_ingot", + "redstone" + ] + }, + "multiagent_crafting_golden_axe_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an golden_axe", + "conversation": "Let's work together to craft an golden_axe.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "stick": 2 + }, + "1": { + "gold_ingot": 1 + }, + "2": { + "gold_ingot": 1 + } + }, + "agent_count": 3, + "target": "golden_axe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_repeater_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone": 1, + "stick": 2, + "stone": 1 + }, + "1": { + "redstone": 1, + "stone": 1 + }, + "2": { + "redstone": 1, + "stone": 1 + } + }, + "agent_count": 3, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_andesite_wall_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an andesite_wall", + "conversation": "Let's work together to craft an andesite_wall.", + "initial_inventory": { + "0": { + "andesite": 2 + }, + "1": { + "andesite": 2 + }, + "2": { + "andesite": 2 + } + }, + "agent_count": 3, + "target": "andesite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sticky_piston_1_with_plan_missing_cobblestone_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "oak_planks": 1, + "wooden_pickaxe": 1 + }, + "1": { + "oak_planks": 1, + "iron_ingot": 1 + }, + "2": { + "oak_planks": 1, + "redstone": 1 + } + }, + "agent_count": 3, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_activator_rail_2_with_plan_missing_iron_ingot_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "stick": 2, + "furnace": 1 + }, + "1": { + "redstone_torch": 1 + }, + "2": { + "stone_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_dispenser_1_with_plan_missing_cobblestone_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "stick": 1, + "string": 1, + "redstone": 1 + }, + "1": { + "stick": 1, + "string": 1, + "wooden_pickaxe": 1 + }, + "2": { + "stick": 1, + "string": 1 + } + }, + "agent_count": 3, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_campfire_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an campfire", + "conversation": "Let's work together to craft an campfire.", + "initial_inventory": { + "0": { + "stick": 1, + "coal": 1, + "dark_oak_log": 1 + }, + "1": { + "stick": 1, + "dark_oak_log": 1 + }, + "2": { + "stick": 1, + "dark_oak_log": 1 + } + }, + "agent_count": 3, + "target": "campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purpur_pillar_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purpur_pillar", + "conversation": "Let's work together to craft an purpur_pillar.", + "initial_inventory": { + "0": { + "purpur_block": 1 + }, + "1": { + "purpur_block": 1 + }, + "2": { + "purpur_block": 1 + } + }, + "agent_count": 3, + "target": "purpur_pillar", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_stone_axe_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an stone_axe", + "conversation": "Let's work together to craft an stone_axe.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "stick": 2 + }, + "1": { + "cobblestone": 1 + }, + "2": { + "cobblestone": 1 + } + }, + "agent_count": 3, + "target": "stone_axe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chiseled_red_sandstone_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an chiseled_red_sandstone", + "conversation": "Let's work together to craft an chiseled_red_sandstone.", + "initial_inventory": { + "0": { + "red_sandstone": 1 + }, + "1": { + "red_sandstone": 1 + }, + "2": { + "red_sandstone": 1 + } + }, + "agent_count": 3, + "target": "chiseled_red_sandstone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sandstone_wall_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an sandstone_wall", + "conversation": "Let's work together to craft an sandstone_wall.", + "initial_inventory": { + "0": { + "sandstone": 2 + }, + "1": { + "sandstone": 2 + }, + "2": { + "sandstone": 2 + } + }, + "agent_count": 3, + "target": "sandstone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_2_with_plan_missing_gold_ingot_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_brick_slab": 5, + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "stone_brick_slab": 5, + "netherite_scrap": 2, + "furnace": 1 + }, + "2": { + "stone_brick_slab": 6, + "netherite_scrap": 1 + } + }, + "agent_count": 3, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_map_0_with_plan_missing_compass_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an map", + "conversation": "Let's work together to craft an map.", + "initial_inventory": { + "0": { + "paper": 2 + }, + "1": { + "paper": 4 + }, + "2": { + "paper": 2 + } + }, + "agent_count": 3, + "target": "map", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "compass" + ] + }, + "multiagent_crafting_deepslate_tiles_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an deepslate_tiles", + "conversation": "Let's work together to craft an deepslate_tiles.", + "initial_inventory": { + "0": { + "polished_deepslate": 1 + }, + "1": { + "polished_deepslate": 2 + }, + "2": { + "polished_deepslate": 1 + } + }, + "agent_count": 3, + "target": "deepslate_tiles", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_respawn_anchor_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an respawn_anchor", + "conversation": "Let's work together to craft an respawn_anchor.", + "initial_inventory": { + "0": { + "crying_obsidian": 2, + "glowstone": 1 + }, + "1": { + "crying_obsidian": 2, + "glowstone": 1 + }, + "2": { + "crying_obsidian": 2, + "glowstone": 1 + } + }, + "agent_count": 3, + "target": "respawn_anchor", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purpur_pillar_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an purpur_pillar", + "conversation": "Let's work together to craft an purpur_pillar.", + "initial_inventory": { + "0": { + "purpur_block": 1 + }, + "1": { + "purpur_block": 1 + }, + "2": { + "purpur_block": 1 + } + }, + "agent_count": 3, + "target": "purpur_pillar", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_comparator_2_with_plan_missing_stone_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "redstone_torch": 1, + "quartz": 1 + }, + "1": { + "redstone_torch": 1, + "wooden_pickaxe": 1 + }, + "2": { + "redstone_torch": 1 + } + }, + "agent_count": 3, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "stone" + ] + }, + "multiagent_crafting_stone_pickaxe_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an stone_pickaxe", + "conversation": "Let's work together to craft an stone_pickaxe.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "oak_planks": 2 + }, + "1": { + "cobblestone": 1 + }, + "2": { + "cobblestone": 1 + } + }, + "agent_count": 3, + "target": "stone_pickaxe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_diorite_wall_1_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an diorite_wall", + "conversation": "Let's work together to craft an diorite_wall.", + "initial_inventory": { + "0": { + "diorite": 2 + }, + "1": { + "diorite": 2 + }, + "2": { + "diorite": 2 + } + }, + "agent_count": 3, + "target": "diorite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_blue_banner_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an light_blue_banner", + "conversation": "Let's work together to craft an light_blue_banner.", + "initial_inventory": { + "0": { + "light_blue_dye": 2, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "light_blue_dye": 2, + "black_wool": 2 + }, + "2": { + "light_blue_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "light_blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_target_2_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an target", + "conversation": "Let's work together to craft an target.", + "initial_inventory": { + "0": { + "redstone": 1, + "hay_block": 1 + }, + "1": { + "redstone": 2 + }, + "2": { + "redstone": 1 + } + }, + "agent_count": 3, + "target": "target", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_orange_banner_2_with_plan_missing_black_wool_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an orange_banner", + "conversation": "Let's work together to craft an orange_banner.", + "initial_inventory": { + "0": { + "orange_dye": 2, + "oak_planks": 2 + }, + "1": { + "orange_dye": 2, + "shears": 1 + }, + "2": { + "orange_dye": 2 + } + }, + "agent_count": 3, + "target": "orange_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_dispenser_1_with_plan_missing_redstone_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 2, + "bow": 1 + }, + "1": { + "cobblestone": 3, + "diamond_pickaxe": 1 + }, + "2": { + "cobblestone": 2 + } + }, + "agent_count": 3, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_end_crystal_0_with_plan_missing_glass_depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an end_crystal", + "conversation": "Let's work together to craft an end_crystal.", + "initial_inventory": { + "0": { + "ender_pearl": 1 + }, + "1": { + "blaze_powder": 1 + }, + "2": { + "ghast_tear": 1 + } + }, + "agent_count": 3, + "target": "end_crystal", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "glass" + ] + }, + "multiagent_crafting_repeater_1_with_plan_missing_redstone_torch_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone": 1, + "stone": 1 + }, + "1": { + "stone": 1 + }, + "2": { + "stone": 1 + } + }, + "agent_count": 3, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "redstone_torch" + ] + }, + "multiagent_crafting_andesite_wall_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an andesite_wall", + "conversation": "Let's work together to craft an andesite_wall.", + "initial_inventory": { + "0": { + "diorite": 1, + "cobblestone": 1 + }, + "1": { + "diorite": 1, + "cobblestone": 1 + }, + "2": { + "diorite": 1, + "cobblestone": 1 + } + }, + "agent_count": 3, + "target": "andesite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_chain_1_with_plan_missing_iron_ingot_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an chain", + "conversation": "Let's work together to craft an chain.", + "initial_inventory": { + "0": { + "iron_nugget": 2 + }, + "1": { + "stone_pickaxe": 1 + }, + "2": { + "furnace": 1 + } + }, + "agent_count": 3, + "target": "chain", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_golden_pickaxe_0_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an golden_pickaxe", + "conversation": "Let's work together to craft an golden_pickaxe.", + "initial_inventory": { + "0": { + "gold_ingot": 1, + "oak_planks": 2 + }, + "1": { + "gold_ingot": 1 + }, + "2": { + "gold_ingot": 1 + } + }, + "agent_count": 3, + "target": "golden_pickaxe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_fire_charge_0_with_plan_missing_coal_depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an fire_charge", + "conversation": "Let's work together to craft an fire_charge.", + "initial_inventory": { + "0": { + "gunpowder": 1 + }, + "1": { + "blaze_powder": 1 + }, + "2": { + "iron_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "fire_charge", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "coal" + ] + }, + "multiagent_crafting_iron_pickaxe_2_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an iron_pickaxe", + "conversation": "Let's work together to craft an iron_pickaxe.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + } + }, + "agent_count": 3, + "target": "iron_pickaxe", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_diorite_wall_0_with_plan__depth_0_num_agents_3": { + "goal": "Collaborate with other agents to craft an diorite_wall", + "conversation": "Let's work together to craft an diorite_wall.", + "initial_inventory": { + "0": { + "diorite": 2 + }, + "1": { + "diorite": 2 + }, + "2": { + "diorite": 2 + } + }, + "agent_count": 3, + "target": "diorite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_1_with_plan__depth_1_num_agents_3": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "deepslate_bricks": 2 + }, + "1": { + "deepslate_bricks": 2 + }, + "2": { + "deepslate_bricks": 4 + } + }, + "agent_count": 3, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_0_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 2 + }, + "1": { + "polished_deepslate": 4 + }, + "2": { + "polished_deepslate": 2 + } + }, + "agent_count": 3, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_1_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 2 + }, + "1": { + "polished_deepslate": 4 + }, + "2": { + "polished_deepslate": 2 + } + }, + "agent_count": 3, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_2_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 2 + }, + "1": { + "polished_deepslate": 4 + }, + "2": { + "polished_deepslate": 2 + } + }, + "agent_count": 3, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_carpet_0_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_carpet", + "conversation": "Let's work together to craft an cyan_carpet.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "green_dye": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "cyan_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_carpet_1_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_carpet", + "conversation": "Let's work together to craft an cyan_carpet.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "green_dye": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "cyan_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_carpet_2_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_carpet", + "conversation": "Let's work together to craft an cyan_carpet.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "green_dye": 1 + }, + "2": { + "shears": 1 + } + }, + "agent_count": 3, + "target": "cyan_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_carpet_0_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_carpet", + "conversation": "Let's work together to craft an cyan_carpet.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "green_dye": 1 + }, + "2": { + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "cyan_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_carpet_1_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_carpet", + "conversation": "Let's work together to craft an cyan_carpet.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "green_dye": 1 + }, + "2": { + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "cyan_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_carpet_2_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an cyan_carpet", + "conversation": "Let's work together to craft an cyan_carpet.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "green_dye": 1 + }, + "2": { + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "cyan_carpet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_repeater_0_with_plan_missing_stone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone": 1, + "oak_planks": 2 + }, + "1": { + "redstone": 1, + "wooden_pickaxe": 1 + }, + "2": { + "redstone": 1 + } + }, + "agent_count": 3, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "stone" + ] + }, + "multiagent_crafting_repeater_1_with_plan_missing_stone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone": 1, + "oak_planks": 2 + }, + "1": { + "redstone": 1, + "wooden_pickaxe": 1 + }, + "2": { + "redstone": 1 + } + }, + "agent_count": 3, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "stone" + ] + }, + "multiagent_crafting_repeater_2_with_plan_missing_stone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone": 1, + "oak_planks": 2 + }, + "1": { + "redstone": 1, + "wooden_pickaxe": 1 + }, + "2": { + "redstone": 1 + } + }, + "agent_count": 3, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "stone" + ] + }, + "multiagent_crafting_repeater_0_with_plan_missing_redstone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "stone": 1 + }, + "1": { + "stone": 1, + "diamond_pickaxe": 1 + }, + "2": { + "stone": 1 + } + }, + "agent_count": 3, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_repeater_1_with_plan_missing_redstone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "stone": 1 + }, + "1": { + "stone": 1, + "diamond_pickaxe": 1 + }, + "2": { + "stone": 1 + } + }, + "agent_count": 3, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_repeater_2_with_plan_missing_redstone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "stone": 1 + }, + "1": { + "stone": 1, + "diamond_pickaxe": 1 + }, + "2": { + "stone": 1 + } + }, + "agent_count": 3, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_repeater_0_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone": 1, + "oak_planks": 2, + "stone": 1 + }, + "1": { + "redstone": 1, + "stone": 1 + }, + "2": { + "redstone": 1, + "stone": 1 + } + }, + "agent_count": 3, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_repeater_1_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone": 1, + "oak_planks": 2, + "stone": 1 + }, + "1": { + "redstone": 1, + "stone": 1 + }, + "2": { + "redstone": 1, + "stone": 1 + } + }, + "agent_count": 3, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_repeater_2_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an repeater", + "conversation": "Let's work together to craft an repeater.", + "initial_inventory": { + "0": { + "redstone": 1, + "oak_planks": 2, + "stone": 1 + }, + "1": { + "redstone": 1, + "stone": 1 + }, + "2": { + "redstone": 1, + "stone": 1 + } + }, + "agent_count": 3, + "target": "repeater", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_comparator_0_with_plan_missing_redstone_stone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "wooden_pickaxe": 1 + }, + "1": { + "quartz": 1 + }, + "2": { + "diamond_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "redstone", + "stone" + ] + }, + "multiagent_crafting_comparator_1_with_plan_missing_redstone_stone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "wooden_pickaxe": 1 + }, + "1": { + "quartz": 1 + }, + "2": { + "diamond_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "redstone", + "stone" + ] + }, + "multiagent_crafting_comparator_2_with_plan_missing_redstone_stone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "wooden_pickaxe": 1 + }, + "1": { + "quartz": 1 + }, + "2": { + "diamond_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "redstone", + "stone" + ] + }, + "multiagent_crafting_comparator_0_with_plan_missing_stone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "redstone": 1, + "oak_planks": 2 + }, + "1": { + "redstone": 1, + "quartz": 1 + }, + "2": { + "redstone": 1, + "wooden_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "stone" + ] + }, + "multiagent_crafting_comparator_1_with_plan_missing_stone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "redstone": 1, + "oak_planks": 2 + }, + "1": { + "redstone": 1, + "quartz": 1 + }, + "2": { + "redstone": 1, + "wooden_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "stone" + ] + }, + "multiagent_crafting_comparator_2_with_plan_missing_stone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "redstone": 1, + "oak_planks": 2 + }, + "1": { + "redstone": 1, + "quartz": 1 + }, + "2": { + "redstone": 1, + "wooden_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "stone" + ] + }, + "multiagent_crafting_comparator_0_with_plan_missing_redstone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "stone": 1 + }, + "1": { + "quartz": 1, + "stone": 1 + }, + "2": { + "stone": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_comparator_1_with_plan_missing_redstone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "stone": 1 + }, + "1": { + "quartz": 1, + "stone": 1 + }, + "2": { + "stone": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_comparator_2_with_plan_missing_redstone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "stone": 1 + }, + "1": { + "quartz": 1, + "stone": 1 + }, + "2": { + "stone": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_comparator_0_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "redstone": 1, + "oak_planks": 2, + "stone": 1 + }, + "1": { + "redstone": 1, + "quartz": 1, + "stone": 1 + }, + "2": { + "redstone": 1, + "stone": 1 + } + }, + "agent_count": 3, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_comparator_1_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "redstone": 1, + "oak_planks": 2, + "stone": 1 + }, + "1": { + "redstone": 1, + "quartz": 1, + "stone": 1 + }, + "2": { + "redstone": 1, + "stone": 1 + } + }, + "agent_count": 3, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_comparator_2_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an comparator", + "conversation": "Let's work together to craft an comparator.", + "initial_inventory": { + "0": { + "redstone": 1, + "oak_planks": 2, + "stone": 1 + }, + "1": { + "redstone": 1, + "quartz": 1, + "stone": 1 + }, + "2": { + "redstone": 1, + "stone": 1 + } + }, + "agent_count": 3, + "target": "comparator", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_0_with_plan_missing_cobblestone_redstone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "string": 1 + }, + "1": { + "string": 1, + "wooden_pickaxe": 1 + }, + "2": { + "string": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "cobblestone", + "redstone" + ] + }, + "multiagent_crafting_dispenser_1_with_plan_missing_cobblestone_redstone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "string": 1 + }, + "1": { + "string": 1, + "wooden_pickaxe": 1 + }, + "2": { + "string": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "cobblestone", + "redstone" + ] + }, + "multiagent_crafting_dispenser_2_with_plan_missing_cobblestone_redstone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "string": 1 + }, + "1": { + "string": 1, + "wooden_pickaxe": 1 + }, + "2": { + "string": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "cobblestone", + "redstone" + ] + }, + "multiagent_crafting_dispenser_0_with_plan_missing_redstone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 2, + "oak_planks": 2, + "string": 1 + }, + "1": { + "cobblestone": 2, + "string": 1, + "diamond_pickaxe": 1 + }, + "2": { + "cobblestone": 3, + "string": 1 + } + }, + "agent_count": 3, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_dispenser_1_with_plan_missing_redstone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 2, + "oak_planks": 2, + "string": 1 + }, + "1": { + "cobblestone": 2, + "string": 1, + "diamond_pickaxe": 1 + }, + "2": { + "cobblestone": 3, + "string": 1 + } + }, + "agent_count": 3, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_dispenser_2_with_plan_missing_redstone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 2, + "oak_planks": 2, + "string": 1 + }, + "1": { + "cobblestone": 2, + "string": 1, + "diamond_pickaxe": 1 + }, + "2": { + "cobblestone": 3, + "string": 1 + } + }, + "agent_count": 3, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_dispenser_0_with_plan_missing_cobblestone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "string": 1 + }, + "1": { + "string": 1, + "redstone": 1 + }, + "2": { + "string": 1, + "wooden_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_dispenser_1_with_plan_missing_cobblestone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "string": 1 + }, + "1": { + "string": 1, + "redstone": 1 + }, + "2": { + "string": 1, + "wooden_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_dispenser_2_with_plan_missing_cobblestone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "string": 1 + }, + "1": { + "string": 1, + "redstone": 1 + }, + "2": { + "string": 1, + "wooden_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "cobblestone" + ] + }, + "multiagent_crafting_dispenser_0_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 3, + "oak_planks": 2, + "string": 1 + }, + "1": { + "cobblestone": 2, + "string": 1, + "redstone": 1 + }, + "2": { + "cobblestone": 2, + "string": 1 + } + }, + "agent_count": 3, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_1_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 3, + "oak_planks": 2, + "string": 1 + }, + "1": { + "cobblestone": 2, + "string": 1, + "redstone": 1 + }, + "2": { + "cobblestone": 2, + "string": 1 + } + }, + "agent_count": 3, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_2_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 3, + "oak_planks": 2, + "string": 1 + }, + "1": { + "cobblestone": 2, + "string": 1, + "redstone": 1 + }, + "2": { + "cobblestone": 2, + "string": 1 + } + }, + "agent_count": 3, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_0_with_plan_missing_iron_ingot_redstone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "oak_log": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 2, + "diamond_pickaxe": 1 + }, + "2": { + "stone_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "iron_ingot", + "redstone" + ] + }, + "multiagent_crafting_activator_rail_1_with_plan_missing_iron_ingot_redstone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "oak_log": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 2, + "diamond_pickaxe": 1 + }, + "2": { + "stone_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "iron_ingot", + "redstone" + ] + }, + "multiagent_crafting_activator_rail_2_with_plan_missing_iron_ingot_redstone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "oak_log": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 2, + "diamond_pickaxe": 1 + }, + "2": { + "stone_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "iron_ingot", + "redstone" + ] + }, + "multiagent_crafting_activator_rail_0_with_plan_missing_redstone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "oak_log": 1 + }, + "1": { + "iron_ingot": 2, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 2, + "diamond_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_activator_rail_1_with_plan_missing_redstone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "oak_log": 1 + }, + "1": { + "iron_ingot": 2, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 2, + "diamond_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_activator_rail_2_with_plan_missing_redstone_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "oak_log": 1 + }, + "1": { + "iron_ingot": 2, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 2, + "diamond_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_activator_rail_0_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "oak_log": 1 + }, + "1": { + "iron_ingot": 2, + "redstone": 1 + }, + "2": { + "iron_ingot": 2, + "oak_planks": 2 + } + }, + "agent_count": 3, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_1_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "oak_log": 1 + }, + "1": { + "iron_ingot": 2, + "redstone": 1 + }, + "2": { + "iron_ingot": 2, + "oak_planks": 2 + } + }, + "agent_count": 3, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_2_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 2, + "oak_log": 1 + }, + "1": { + "iron_ingot": 2, + "redstone": 1 + }, + "2": { + "iron_ingot": 2, + "oak_planks": 2 + } + }, + "agent_count": 3, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_glow_item_frame_0_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an glow_item_frame", + "conversation": "Let's work together to craft an glow_item_frame.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "rabbit_hide": 1, + "glow_ink_sac": 1 + }, + "1": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "2": { + "oak_planks": 2, + "rabbit_hide": 2 + } + }, + "agent_count": 3, + "target": "glow_item_frame", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_glow_item_frame_1_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an glow_item_frame", + "conversation": "Let's work together to craft an glow_item_frame.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "rabbit_hide": 1, + "glow_ink_sac": 1 + }, + "1": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "2": { + "oak_planks": 2, + "rabbit_hide": 2 + } + }, + "agent_count": 3, + "target": "glow_item_frame", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_glow_item_frame_2_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an glow_item_frame", + "conversation": "Let's work together to craft an glow_item_frame.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "rabbit_hide": 1, + "glow_ink_sac": 1 + }, + "1": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "2": { + "oak_planks": 2, + "rabbit_hide": 2 + } + }, + "agent_count": 3, + "target": "glow_item_frame", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_0_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "red_dye": 1, + "oak_log": 1 + }, + "1": { + "blue_dye": 1, + "red_dye": 1, + "shears": 1 + }, + "2": { + "blue_dye": 1, + "red_dye": 1 + } + }, + "agent_count": 3, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_purple_banner_1_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "red_dye": 1, + "oak_log": 1 + }, + "1": { + "blue_dye": 1, + "red_dye": 1, + "shears": 1 + }, + "2": { + "blue_dye": 1, + "red_dye": 1 + } + }, + "agent_count": 3, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_purple_banner_2_with_plan_missing_black_wool_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "red_dye": 1, + "oak_log": 1 + }, + "1": { + "blue_dye": 1, + "red_dye": 1, + "shears": 1 + }, + "2": { + "blue_dye": 1, + "red_dye": 1 + } + }, + "agent_count": 3, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_purple_banner_0_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "red_dye": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "blue_dye": 1, + "red_dye": 1, + "black_wool": 2 + }, + "2": { + "blue_dye": 1, + "red_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_1_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "red_dye": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "blue_dye": 1, + "red_dye": 1, + "black_wool": 2 + }, + "2": { + "blue_dye": 1, + "red_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_2_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "blue_dye": 1, + "red_dye": 1, + "black_wool": 2, + "oak_log": 1 + }, + "1": { + "blue_dye": 1, + "red_dye": 1, + "black_wool": 2 + }, + "2": { + "blue_dye": 1, + "red_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 3, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lantern_0_with_plan_missing_iron_ingot_coal_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lantern", + "conversation": "Let's work together to craft an lantern.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "iron_pickaxe": 1 + }, + "1": { + "stone_pickaxe": 1 + }, + "2": { + "furnace": 1 + } + }, + "agent_count": 3, + "target": "lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "iron_ingot", + "coal" + ] + }, + "multiagent_crafting_lantern_1_with_plan_missing_iron_ingot_coal_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lantern", + "conversation": "Let's work together to craft an lantern.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "iron_pickaxe": 1 + }, + "1": { + "stone_pickaxe": 1 + }, + "2": { + "furnace": 1 + } + }, + "agent_count": 3, + "target": "lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "iron_ingot", + "coal" + ] + }, + "multiagent_crafting_lantern_2_with_plan_missing_iron_ingot_coal_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lantern", + "conversation": "Let's work together to craft an lantern.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "iron_pickaxe": 1 + }, + "1": { + "stone_pickaxe": 1 + }, + "2": { + "furnace": 1 + } + }, + "agent_count": 3, + "target": "lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "iron_ingot", + "coal" + ] + }, + "multiagent_crafting_soul_lantern_0_with_plan_missing_iron_ingot_coal_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "furnace": 1 + }, + "1": { + "soul_sand": 1, + "iron_pickaxe": 1 + }, + "2": { + "stone_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "iron_ingot", + "coal" + ] + }, + "multiagent_crafting_soul_lantern_1_with_plan_missing_iron_ingot_coal_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "furnace": 1 + }, + "1": { + "soul_sand": 1, + "iron_pickaxe": 1 + }, + "2": { + "stone_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "iron_ingot", + "coal" + ] + }, + "multiagent_crafting_soul_lantern_2_with_plan_missing_iron_ingot_coal_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "furnace": 1 + }, + "1": { + "soul_sand": 1, + "iron_pickaxe": 1 + }, + "2": { + "stone_pickaxe": 1 + } + }, + "agent_count": 3, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "iron_ingot", + "coal" + ] + }, + "multiagent_crafting_soul_lantern_0_with_plan_missing_iron_ingot_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "coal": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 2, + "furnace": 1 + }, + "2": { + "soul_sand": 1 + } + }, + "agent_count": 3, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_soul_lantern_1_with_plan_missing_iron_ingot_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "coal": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 2, + "furnace": 1 + }, + "2": { + "soul_sand": 1 + } + }, + "agent_count": 3, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_soul_lantern_2_with_plan_missing_iron_ingot_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "coal": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 2, + "furnace": 1 + }, + "2": { + "soul_sand": 1 + } + }, + "agent_count": 3, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_lodestone_0_with_plan_missing_stone_bricks_gold_ingot_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "netherite_scrap": 1, + "furnace": 1 + }, + "2": { + "netherite_scrap": 2 + } + }, + "agent_count": 3, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "stone_bricks", + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_1_with_plan_missing_stone_bricks_gold_ingot_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "netherite_scrap": 1, + "furnace": 1 + }, + "2": { + "netherite_scrap": 2 + } + }, + "agent_count": 3, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "stone_bricks", + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_2_with_plan_missing_stone_bricks_gold_ingot_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "netherite_scrap": 1, + "furnace": 1 + }, + "2": { + "netherite_scrap": 2 + } + }, + "agent_count": 3, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "stone_bricks", + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_0_with_plan_missing_gold_ingot_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 3, + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "stone_bricks": 3, + "netherite_scrap": 2, + "furnace": 1 + }, + "2": { + "stone_bricks": 3, + "netherite_scrap": 1 + } + }, + "agent_count": 3, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_1_with_plan_missing_gold_ingot_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 3, + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "stone_bricks": 3, + "netherite_scrap": 2, + "furnace": 1 + }, + "2": { + "stone_bricks": 3, + "netherite_scrap": 1 + } + }, + "agent_count": 3, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_2_with_plan_missing_gold_ingot_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 3, + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "stone_bricks": 3, + "netherite_scrap": 2, + "furnace": 1 + }, + "2": { + "stone_bricks": 3, + "netherite_scrap": 1 + } + }, + "agent_count": 3, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_0_with_plan_missing_stone_bricks_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "1": { + "netherite_scrap": 2, + "gold_ingot": 2 + }, + "2": { + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 3, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [ + "stone_bricks" + ] + }, + "multiagent_crafting_lodestone_1_with_plan_missing_stone_bricks_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "1": { + "netherite_scrap": 2, + "gold_ingot": 2 + }, + "2": { + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 3, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [ + "stone_bricks" + ] + }, + "multiagent_crafting_lodestone_2_with_plan_missing_stone_bricks_depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "1": { + "netherite_scrap": 2, + "gold_ingot": 2 + }, + "2": { + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 3, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [ + "stone_bricks" + ] + }, + "multiagent_crafting_lodestone_0_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 3, + "netherite_scrap": 1, + "gold_ingot": 2 + }, + "1": { + "stone_bricks": 3, + "netherite_scrap": 2, + "gold_ingot": 1 + }, + "2": { + "stone_bricks": 3, + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 3, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_1_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 3, + "netherite_scrap": 1, + "gold_ingot": 2 + }, + "1": { + "stone_bricks": 3, + "netherite_scrap": 2, + "gold_ingot": 1 + }, + "2": { + "stone_bricks": 3, + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 3, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_2_with_plan__depth_2_num_agents_3": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 3, + "netherite_scrap": 1, + "gold_ingot": 2 + }, + "1": { + "stone_bricks": 3, + "netherite_scrap": 2, + "gold_ingot": 1 + }, + "2": { + "stone_bricks": 3, + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 3, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [] + }, + "missing_items": [] + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/train_tasks/tasks_3_agents_stats.txt b/tasks/crafting_tasks/train_tasks/tasks_3_agents_stats.txt new file mode 100644 index 0000000..ea1a0ba --- /dev/null +++ b/tasks/crafting_tasks/train_tasks/tasks_3_agents_stats.txt @@ -0,0 +1,15 @@ +{ + "num_tasks": 281, + "avg_depth": 2.2562277580071175, + "std_depth": 0.7487869226953681, + "num_tasks_based_depth": { + "0": 100, + "1": 100, + "2": 81 + }, + "num_missing_resources": { + "0": 171, + "1": 79, + "2": 31 + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/train_tasks/tasks_4_agents.json b/tasks/crafting_tasks/train_tasks/tasks_4_agents.json new file mode 100644 index 0000000..c59debf --- /dev/null +++ b/tasks/crafting_tasks/train_tasks/tasks_4_agents.json @@ -0,0 +1,9401 @@ +{ + "multiagent_crafting_blast_furnace_0_with_plan_missing_furnace_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "smooth_stone": 3 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "furnace" + ] + }, + "multiagent_crafting_light_blue_banner_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an light_blue_banner", + "conversation": "Let's work together to craft an light_blue_banner.", + "initial_inventory": { + "0": { + "light_blue_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "light_blue_dye": 1, + "black_wool": 1 + }, + "2": { + "light_blue_dye": 1, + "black_wool": 3 + }, + "3": { + "light_blue_dye": 3, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "light_blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_target_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an target", + "conversation": "Let's work together to craft an target.", + "initial_inventory": { + "0": { + "redstone": 1, + "hay_block": 1 + }, + "1": { + "redstone": 1 + }, + "2": { + "redstone": 1 + }, + "3": { + "redstone": 1 + } + }, + "agent_count": 4, + "target": "target", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mossy_stone_brick_wall_2_with_plan_missing_stone_bricks_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an mossy_stone_brick_wall", + "conversation": "Let's work together to craft an mossy_stone_brick_wall.", + "initial_inventory": { + "0": { + "moss_block": 1 + }, + "1": { + "moss_block": 3 + }, + "2": { + "moss_block": 1 + }, + "3": { + "moss_block": 1 + } + }, + "agent_count": 4, + "target": "mossy_stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "stone_bricks" + ] + }, + "multiagent_crafting_mossy_stone_brick_wall_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an mossy_stone_brick_wall", + "conversation": "Let's work together to craft an mossy_stone_brick_wall.", + "initial_inventory": { + "0": { + "mossy_stone_bricks": 3 + }, + "1": { + "mossy_stone_bricks": 1 + }, + "2": { + "mossy_stone_bricks": 1 + }, + "3": { + "mossy_stone_bricks": 1 + } + }, + "agent_count": 4, + "target": "mossy_stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 4, + "stick": 3 + }, + "1": { + "cobblestone": 1, + "string": 3 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1 + } + }, + "agent_count": 4, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_map_3_with_plan_missing_compass_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an map", + "conversation": "Let's work together to craft an map.", + "initial_inventory": { + "0": { + "paper": 2 + }, + "1": { + "paper": 2 + }, + "2": { + "paper": 2 + }, + "3": { + "paper": 2 + } + }, + "agent_count": 4, + "target": "map", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "compass" + ] + }, + "multiagent_crafting_deepslate_tiles_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an deepslate_tiles", + "conversation": "Let's work together to craft an deepslate_tiles.", + "initial_inventory": { + "0": { + "polished_deepslate": 1 + }, + "1": { + "polished_deepslate": 1 + }, + "2": { + "polished_deepslate": 1 + }, + "3": { + "polished_deepslate": 1 + } + }, + "agent_count": 4, + "target": "deepslate_tiles", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magma_block_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an magma_block", + "conversation": "Let's work together to craft an magma_block.", + "initial_inventory": { + "0": { + "magma_cream": 1 + }, + "1": { + "magma_cream": 1 + }, + "2": { + "magma_cream": 1 + }, + "3": { + "magma_cream": 1 + } + }, + "agent_count": 4, + "target": "magma_block", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sticky_piston_2_with_plan_missing_cobblestone_iron_ingot_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 3, + "furnace": 1 + }, + "2": { + "redstone": 1 + }, + "3": { + "wooden_pickaxe": 1 + } + }, + "agent_count": 4, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "cobblestone", + "iron_ingot" + ] + }, + "multiagent_crafting_prismarine_wall_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an prismarine_wall", + "conversation": "Let's work together to craft an prismarine_wall.", + "initial_inventory": { + "0": { + "prismarine": 1 + }, + "1": { + "prismarine": 1 + }, + "2": { + "prismarine": 3 + }, + "3": { + "prismarine": 1 + } + }, + "agent_count": 4, + "target": "prismarine_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_orange_banner_3_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an orange_banner", + "conversation": "Let's work together to craft an orange_banner.", + "initial_inventory": { + "0": { + "orange_dye": 1, + "oak_planks": 2 + }, + "1": { + "orange_dye": 3, + "shears": 1 + }, + "2": { + "orange_dye": 1 + }, + "3": { + "orange_dye": 1 + } + }, + "agent_count": 4, + "target": "orange_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_polished_diorite_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_diorite", + "conversation": "Let's work together to craft an polished_diorite.", + "initial_inventory": { + "0": { + "diorite": 1 + }, + "1": { + "diorite": 1 + }, + "2": { + "diorite": 1 + }, + "3": { + "diorite": 1 + } + }, + "agent_count": 4, + "target": "polished_diorite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sticky_piston_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "cobblestone": 1 + }, + "1": { + "oak_planks": 3, + "cobblestone": 1 + }, + "2": { + "cobblestone": 1, + "iron_ingot": 1 + }, + "3": { + "cobblestone": 1, + "redstone": 1 + } + }, + "agent_count": 4, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_weathered_cut_copper_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an waxed_weathered_cut_copper", + "conversation": "Let's work together to craft an waxed_weathered_cut_copper.", + "initial_inventory": { + "0": { + "waxed_weathered_copper": 1 + }, + "1": { + "waxed_weathered_copper": 1 + }, + "2": { + "waxed_weathered_copper": 1 + }, + "3": { + "waxed_weathered_copper": 1 + } + }, + "agent_count": 4, + "target": "waxed_weathered_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_0_with_plan_missing_gold_ingot_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_brick_slab": 4, + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "stone_brick_slab": 4, + "netherite_scrap": 1, + "furnace": 1 + }, + "2": { + "stone_brick_slab": 4, + "netherite_scrap": 1 + }, + "3": { + "stone_brick_slab": 4, + "netherite_scrap": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_activator_rail_1_with_plan_missing_redstone_torch_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "stick": 2 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 3 + } + }, + "agent_count": 4, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone_torch" + ] + }, + "multiagent_crafting_lodestone_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_brick_slab": 4, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "1": { + "stone_brick_slab": 4, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "2": { + "stone_brick_slab": 4, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "3": { + "stone_brick_slab": 4, + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_piston_0_with_plan_missing_iron_ingot_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 3, + "cobblestone": 1 + }, + "1": { + "cobblestone": 1, + "redstone": 1 + }, + "2": { + "cobblestone": 1, + "stone_pickaxe": 1 + }, + "3": { + "cobblestone": 1, + "furnace": 1 + } + }, + "agent_count": 4, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_sticky_piston_3_with_plan_missing_redstone_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "cobblestone": 1 + }, + "1": { + "oak_planks": 3, + "cobblestone": 1 + }, + "2": { + "cobblestone": 1, + "iron_ingot": 1 + }, + "3": { + "cobblestone": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 4, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_cut_copper_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an cut_copper", + "conversation": "Let's work together to craft an cut_copper.", + "initial_inventory": { + "0": { + "copper_block": 1 + }, + "1": { + "copper_block": 1 + }, + "2": { + "copper_block": 1 + }, + "3": { + "copper_block": 1 + } + }, + "agent_count": 4, + "target": "cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_rail_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an rail", + "conversation": "Let's work together to craft an rail.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_piston_3_with_plan_missing_iron_ingot_redstone_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 3, + "cobblestone": 1 + }, + "1": { + "cobblestone": 1, + "stone_pickaxe": 1 + }, + "2": { + "cobblestone": 1, + "furnace": 1 + }, + "3": { + "cobblestone": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 4, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "iron_ingot", + "redstone" + ] + }, + "multiagent_crafting_purple_candle_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an purple_candle", + "conversation": "Let's work together to craft an purple_candle.", + "initial_inventory": { + "0": { + "string": 1 + }, + "1": { + "honeycomb": 1 + }, + "2": { + "blue_dye": 1 + }, + "3": { + "red_dye": 1 + } + }, + "agent_count": 4, + "target": "purple_candle", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_detector_rail_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "stone_pressure_plate": 1 + }, + "1": { + "iron_ingot": 3, + "redstone": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_rail_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an rail", + "conversation": "Let's work together to craft an rail.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_detector_rail_2_with_plan_missing_stone_pressure_plate_redstone_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "diamond_pickaxe": 1 + }, + "1": { + "iron_ingot": 3 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "stone_pressure_plate", + "redstone" + ] + }, + "multiagent_crafting_dispenser_0_with_plan_missing_redstone_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "stick": 3 + }, + "1": { + "cobblestone": 4, + "string": 3 + }, + "2": { + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "3": { + "cobblestone": 1 + } + }, + "agent_count": 4, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_glistering_melon_slice_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an glistering_melon_slice", + "conversation": "Let's work together to craft an glistering_melon_slice.", + "initial_inventory": { + "0": { + "gold_nugget": 2, + "melon_slice": 1 + }, + "1": { + "gold_nugget": 2 + }, + "2": { + "gold_nugget": 2 + }, + "3": { + "gold_nugget": 2 + } + }, + "agent_count": 4, + "target": "glistering_melon_slice", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_cut_copper_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an waxed_cut_copper", + "conversation": "Let's work together to craft an waxed_cut_copper.", + "initial_inventory": { + "0": { + "copper_block": 1, + "honeycomb": 1 + }, + "1": { + "copper_block": 1, + "honeycomb": 1 + }, + "2": { + "copper_block": 1, + "honeycomb": 1 + }, + "3": { + "copper_block": 1, + "honeycomb": 1 + } + }, + "agent_count": 4, + "target": "waxed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_diorite_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_diorite", + "conversation": "Let's work together to craft an polished_diorite.", + "initial_inventory": { + "0": { + "diorite": 1 + }, + "1": { + "diorite": 1 + }, + "2": { + "diorite": 1 + }, + "3": { + "diorite": 1 + } + }, + "agent_count": 4, + "target": "polished_diorite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1, + "redstone": 1 + }, + "2": { + "iron_ingot": 1, + "stick": 1 + }, + "3": { + "iron_ingot": 3 + } + }, + "agent_count": 4, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_helmet_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an leather_helmet", + "conversation": "Let's work together to craft an leather_helmet.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 2 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 1 + } + }, + "agent_count": 4, + "target": "leather_helmet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_cut_copper_0_with_plan_missing_copper_block_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an waxed_cut_copper", + "conversation": "Let's work together to craft an waxed_cut_copper.", + "initial_inventory": { + "0": { + "honeycomb": 1 + }, + "1": { + "honeycomb": 1 + }, + "2": { + "honeycomb": 1 + }, + "3": { + "honeycomb": 1 + } + }, + "agent_count": 4, + "target": "waxed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "copper_block" + ] + }, + "multiagent_crafting_cut_copper_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an cut_copper", + "conversation": "Let's work together to craft an cut_copper.", + "initial_inventory": { + "0": { + "copper_block": 1 + }, + "1": { + "copper_block": 1 + }, + "2": { + "copper_block": 1 + }, + "3": { + "copper_block": 1 + } + }, + "agent_count": 4, + "target": "cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_yellow_banner_2_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an yellow_banner", + "conversation": "Let's work together to craft an yellow_banner.", + "initial_inventory": { + "0": { + "yellow_dye": 3, + "oak_planks": 2 + }, + "1": { + "yellow_dye": 1, + "shears": 1 + }, + "2": { + "yellow_dye": 1 + }, + "3": { + "yellow_dye": 1 + } + }, + "agent_count": 4, + "target": "yellow_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_netherite_block_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an netherite_block", + "conversation": "Let's work together to craft an netherite_block.", + "initial_inventory": { + "0": { + "netherite_ingot": 3 + }, + "1": { + "netherite_ingot": 2 + }, + "2": { + "netherite_ingot": 2 + }, + "3": { + "netherite_ingot": 2 + } + }, + "agent_count": 4, + "target": "netherite_block", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_2_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "purple_dye": 1, + "oak_planks": 2 + }, + "1": { + "purple_dye": 3, + "shears": 1 + }, + "2": { + "purple_dye": 1 + }, + "3": { + "purple_dye": 1 + } + }, + "agent_count": 4, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_recovery_compass_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an recovery_compass", + "conversation": "Let's work together to craft an recovery_compass.", + "initial_inventory": { + "0": { + "echo_shard": 2, + "compass": 1 + }, + "1": { + "echo_shard": 2 + }, + "2": { + "echo_shard": 2 + }, + "3": { + "echo_shard": 2 + } + }, + "agent_count": 4, + "target": "recovery_compass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_banner_0_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an magenta_banner", + "conversation": "Let's work together to craft an magenta_banner.", + "initial_inventory": { + "0": { + "magenta_dye": 3, + "oak_planks": 2 + }, + "1": { + "magenta_dye": 1, + "shears": 1 + }, + "2": { + "magenta_dye": 1 + }, + "3": { + "magenta_dye": 1 + } + }, + "agent_count": 4, + "target": "magenta_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_diorite_wall_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an diorite_wall", + "conversation": "Let's work together to craft an diorite_wall.", + "initial_inventory": { + "0": { + "diorite": 1 + }, + "1": { + "diorite": 1 + }, + "2": { + "diorite": 3 + }, + "3": { + "diorite": 1 + } + }, + "agent_count": 4, + "target": "diorite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_brick_wall_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an deepslate_brick_wall", + "conversation": "Let's work together to craft an deepslate_brick_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 2 + }, + "1": { + "polished_deepslate": 2 + }, + "2": { + "polished_deepslate": 2 + }, + "3": { + "polished_deepslate": 2 + } + }, + "agent_count": 4, + "target": "deepslate_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "stick": 2 + }, + "1": { + "iron_ingot": 3, + "redstone_torch": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_3_with_plan_missing_gold_ingot_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_brick_slab": 4, + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "stone_brick_slab": 4, + "netherite_scrap": 1, + "furnace": 1 + }, + "2": { + "stone_brick_slab": 4, + "netherite_scrap": 1 + }, + "3": { + "stone_brick_slab": 4, + "netherite_scrap": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_dispenser_0_with_plan_missing_redstone_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "bow": 1 + }, + "1": { + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "2": { + "cobblestone": 4 + }, + "3": { + "cobblestone": 1 + } + }, + "agent_count": 4, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_sticky_piston_1_with_plan_missing_cobblestone_iron_ingot_redstone_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 3, + "diamond_pickaxe": 1 + }, + "2": { + "wooden_pickaxe": 1 + }, + "3": { + "stone_pickaxe": 1 + } + }, + "agent_count": 4, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "cobblestone", + "iron_ingot", + "redstone" + ] + }, + "multiagent_crafting_detector_rail_3_with_plan_missing_stone_pressure_plate_redstone_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "diamond_pickaxe": 1 + }, + "1": { + "iron_ingot": 3 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "stone_pressure_plate", + "redstone" + ] + }, + "multiagent_crafting_purple_terracotta_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an purple_terracotta", + "conversation": "Let's work together to craft an purple_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 2, + "blue_dye": 1 + }, + "1": { + "terracotta": 2, + "red_dye": 1 + }, + "2": { + "terracotta": 2 + }, + "3": { + "terracotta": 2 + } + }, + "agent_count": 4, + "target": "purple_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_helmet_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an leather_helmet", + "conversation": "Let's work together to craft an leather_helmet.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 2 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 1 + } + }, + "agent_count": 4, + "target": "leather_helmet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_blue_banner_0_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an light_blue_banner", + "conversation": "Let's work together to craft an light_blue_banner.", + "initial_inventory": { + "0": { + "light_blue_dye": 1, + "oak_planks": 2 + }, + "1": { + "light_blue_dye": 1, + "shears": 1 + }, + "2": { + "light_blue_dye": 3 + }, + "3": { + "light_blue_dye": 1 + } + }, + "agent_count": 4, + "target": "light_blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_dispenser_2_with_plan_missing_redstone_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "bow": 1 + }, + "1": { + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "2": { + "cobblestone": 4 + }, + "3": { + "cobblestone": 1 + } + }, + "agent_count": 4, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_light_blue_banner_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an light_blue_banner", + "conversation": "Let's work together to craft an light_blue_banner.", + "initial_inventory": { + "0": { + "light_blue_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "light_blue_dye": 1, + "black_wool": 1 + }, + "2": { + "light_blue_dye": 1, + "black_wool": 3 + }, + "3": { + "light_blue_dye": 3, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "light_blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_weathered_cut_copper_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an waxed_weathered_cut_copper", + "conversation": "Let's work together to craft an waxed_weathered_cut_copper.", + "initial_inventory": { + "0": { + "waxed_weathered_copper": 1 + }, + "1": { + "waxed_weathered_copper": 1 + }, + "2": { + "waxed_weathered_copper": 1 + }, + "3": { + "waxed_weathered_copper": 1 + } + }, + "agent_count": 4, + "target": "waxed_weathered_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_terracotta_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an cyan_terracotta", + "conversation": "Let's work together to craft an cyan_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 2, + "blue_dye": 1 + }, + "1": { + "terracotta": 2, + "green_dye": 1 + }, + "2": { + "terracotta": 2 + }, + "3": { + "terracotta": 2 + } + }, + "agent_count": 4, + "target": "cyan_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_glistering_melon_slice_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an glistering_melon_slice", + "conversation": "Let's work together to craft an glistering_melon_slice.", + "initial_inventory": { + "0": { + "gold_nugget": 2, + "melon_slice": 1 + }, + "1": { + "gold_nugget": 2 + }, + "2": { + "gold_nugget": 2 + }, + "3": { + "gold_nugget": 2 + } + }, + "agent_count": 4, + "target": "glistering_melon_slice", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_orange_banner_1_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an orange_banner", + "conversation": "Let's work together to craft an orange_banner.", + "initial_inventory": { + "0": { + "orange_dye": 1, + "oak_planks": 2 + }, + "1": { + "orange_dye": 3, + "shears": 1 + }, + "2": { + "orange_dye": 1 + }, + "3": { + "orange_dye": 1 + } + }, + "agent_count": 4, + "target": "orange_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_piston_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 3, + "cobblestone": 1 + }, + "1": { + "cobblestone": 1, + "iron_ingot": 1 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1 + } + }, + "agent_count": 4, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_end_crystal_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an end_crystal", + "conversation": "Let's work together to craft an end_crystal.", + "initial_inventory": { + "0": { + "glass": 1, + "ender_pearl": 1 + }, + "1": { + "glass": 4, + "blaze_powder": 1 + }, + "2": { + "glass": 1, + "ghast_tear": 1 + }, + "3": { + "glass": 1 + } + }, + "agent_count": 4, + "target": "end_crystal", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blast_furnace_0_with_plan_missing_smooth_stone_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "furnace": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 2 + } + }, + "agent_count": 4, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "smooth_stone" + ] + }, + "multiagent_crafting_purple_banner_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "purple_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "purple_dye": 1, + "black_wool": 3 + }, + "2": { + "purple_dye": 3, + "black_wool": 1 + }, + "3": { + "purple_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_terracotta_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an red_terracotta", + "conversation": "Let's work together to craft an red_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 2, + "red_dye": 1 + }, + "1": { + "terracotta": 2 + }, + "2": { + "terracotta": 2 + }, + "3": { + "terracotta": 2 + } + }, + "agent_count": 4, + "target": "red_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_soul_lantern_0_with_plan_missing_iron_ingot_coal_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "stick": 1, + "iron_pickaxe": 1 + }, + "1": { + "soul_sand": 1 + }, + "2": { + "stone_pickaxe": 1 + }, + "3": { + "furnace": 1 + } + }, + "agent_count": 4, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "iron_ingot", + "coal" + ] + }, + "multiagent_crafting_lantern_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an lantern", + "conversation": "Let's work together to craft an lantern.", + "initial_inventory": { + "0": { + "iron_nugget": 2, + "torch": 1 + }, + "1": { + "iron_nugget": 2 + }, + "2": { + "iron_nugget": 2 + }, + "3": { + "iron_nugget": 2 + } + }, + "agent_count": 4, + "target": "lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_granite_wall_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an granite_wall", + "conversation": "Let's work together to craft an granite_wall.", + "initial_inventory": { + "0": { + "diorite": 1, + "quartz": 1 + }, + "1": { + "diorite": 1, + "quartz": 1 + }, + "2": { + "diorite": 1, + "quartz": 1 + }, + "3": { + "diorite": 3, + "quartz": 3 + } + }, + "agent_count": 4, + "target": "granite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blast_furnace_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "furnace": 1 + }, + "1": { + "iron_ingot": 1, + "smooth_stone": 3 + }, + "2": { + "iron_ingot": 2 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_banner_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an magenta_banner", + "conversation": "Let's work together to craft an magenta_banner.", + "initial_inventory": { + "0": { + "magenta_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "magenta_dye": 1, + "black_wool": 1 + }, + "2": { + "magenta_dye": 3, + "black_wool": 3 + }, + "3": { + "magenta_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "magenta_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mossy_cobblestone_wall_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an mossy_cobblestone_wall", + "conversation": "Let's work together to craft an mossy_cobblestone_wall.", + "initial_inventory": { + "0": { + "mossy_cobblestone": 1 + }, + "1": { + "mossy_cobblestone": 1 + }, + "2": { + "mossy_cobblestone": 3 + }, + "3": { + "mossy_cobblestone": 1 + } + }, + "agent_count": 4, + "target": "mossy_cobblestone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_blue_banner_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an light_blue_banner", + "conversation": "Let's work together to craft an light_blue_banner.", + "initial_inventory": { + "0": { + "light_blue_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "light_blue_dye": 1, + "black_wool": 1 + }, + "2": { + "light_blue_dye": 1, + "black_wool": 3 + }, + "3": { + "light_blue_dye": 3, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "light_blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_yellow_banner_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an yellow_banner", + "conversation": "Let's work together to craft an yellow_banner.", + "initial_inventory": { + "0": { + "yellow_wool": 1, + "stick": 1 + }, + "1": { + "yellow_wool": 1 + }, + "2": { + "yellow_wool": 3 + }, + "3": { + "yellow_wool": 1 + } + }, + "agent_count": 4, + "target": "yellow_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_end_crystal_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an end_crystal", + "conversation": "Let's work together to craft an end_crystal.", + "initial_inventory": { + "0": { + "glass": 1, + "ender_pearl": 1 + }, + "1": { + "glass": 4, + "blaze_powder": 1 + }, + "2": { + "glass": 1, + "ghast_tear": 1 + }, + "3": { + "glass": 1 + } + }, + "agent_count": 4, + "target": "end_crystal", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_terracotta_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an cyan_terracotta", + "conversation": "Let's work together to craft an cyan_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 2, + "cyan_dye": 1 + }, + "1": { + "terracotta": 2 + }, + "2": { + "terracotta": 2 + }, + "3": { + "terracotta": 2 + } + }, + "agent_count": 4, + "target": "cyan_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1, + "redstone": 1 + }, + "2": { + "iron_ingot": 1, + "stick": 1 + }, + "3": { + "iron_ingot": 3 + } + }, + "agent_count": 4, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_soul_lantern_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "iron_nugget": 2, + "soul_torch": 1 + }, + "1": { + "iron_nugget": 2 + }, + "2": { + "iron_nugget": 2 + }, + "3": { + "iron_nugget": 2 + } + }, + "agent_count": 4, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sticky_piston_2_with_plan_missing_iron_ingot_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "cobblestone": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 3, + "cobblestone": 1 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1, + "stone_pickaxe": 1 + } + }, + "agent_count": 4, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_polished_blackstone_wall_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_blackstone_wall", + "conversation": "Let's work together to craft an polished_blackstone_wall.", + "initial_inventory": { + "0": { + "polished_blackstone": 1 + }, + "1": { + "polished_blackstone": 1 + }, + "2": { + "polished_blackstone": 1 + }, + "3": { + "polished_blackstone": 3 + } + }, + "agent_count": 4, + "target": "polished_blackstone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mossy_stone_brick_wall_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an mossy_stone_brick_wall", + "conversation": "Let's work together to craft an mossy_stone_brick_wall.", + "initial_inventory": { + "0": { + "stone_bricks": 3, + "moss_block": 1 + }, + "1": { + "stone_bricks": 1, + "moss_block": 1 + }, + "2": { + "stone_bricks": 1, + "moss_block": 3 + }, + "3": { + "stone_bricks": 1, + "moss_block": 1 + } + }, + "agent_count": 4, + "target": "mossy_stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_recovery_compass_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an recovery_compass", + "conversation": "Let's work together to craft an recovery_compass.", + "initial_inventory": { + "0": { + "echo_shard": 2, + "compass": 1 + }, + "1": { + "echo_shard": 2 + }, + "2": { + "echo_shard": 2 + }, + "3": { + "echo_shard": 2 + } + }, + "agent_count": 4, + "target": "recovery_compass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "deepslate_bricks": 2 + }, + "1": { + "deepslate_bricks": 2 + }, + "2": { + "deepslate_bricks": 2 + }, + "3": { + "deepslate_bricks": 2 + } + }, + "agent_count": 4, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_helmet_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an leather_helmet", + "conversation": "Let's work together to craft an leather_helmet.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 2 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 1 + } + }, + "agent_count": 4, + "target": "leather_helmet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_orange_banner_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an orange_banner", + "conversation": "Let's work together to craft an orange_banner.", + "initial_inventory": { + "0": { + "orange_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "orange_dye": 3, + "black_wool": 1 + }, + "2": { + "orange_dye": 1, + "black_wool": 3 + }, + "3": { + "orange_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "orange_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_blackstone_wall_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_blackstone_wall", + "conversation": "Let's work together to craft an polished_blackstone_wall.", + "initial_inventory": { + "0": { + "polished_blackstone": 1 + }, + "1": { + "polished_blackstone": 1 + }, + "2": { + "polished_blackstone": 1 + }, + "3": { + "polished_blackstone": 3 + } + }, + "agent_count": 4, + "target": "polished_blackstone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_banner_1_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an magenta_banner", + "conversation": "Let's work together to craft an magenta_banner.", + "initial_inventory": { + "0": { + "magenta_dye": 3, + "oak_planks": 2 + }, + "1": { + "magenta_dye": 1, + "shears": 1 + }, + "2": { + "magenta_dye": 1 + }, + "3": { + "magenta_dye": 1 + } + }, + "agent_count": 4, + "target": "magenta_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_magenta_terracotta_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an magenta_terracotta", + "conversation": "Let's work together to craft an magenta_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 2, + "magenta_dye": 1 + }, + "1": { + "terracotta": 2 + }, + "2": { + "terracotta": 2 + }, + "3": { + "terracotta": 2 + } + }, + "agent_count": 4, + "target": "magenta_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_yellow_banner_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an yellow_banner", + "conversation": "Let's work together to craft an yellow_banner.", + "initial_inventory": { + "0": { + "yellow_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "yellow_dye": 1, + "black_wool": 1 + }, + "2": { + "yellow_dye": 3, + "black_wool": 1 + }, + "3": { + "yellow_dye": 1, + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "yellow_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_golden_carrot_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an golden_carrot", + "conversation": "Let's work together to craft an golden_carrot.", + "initial_inventory": { + "0": { + "gold_nugget": 2, + "carrot": 1 + }, + "1": { + "gold_nugget": 2 + }, + "2": { + "gold_nugget": 2 + }, + "3": { + "gold_nugget": 2 + } + }, + "agent_count": 4, + "target": "golden_carrot", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_3_with_plan_missing_stone_brick_slab_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "1": { + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "2": { + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "3": { + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "stone_brick_slab" + ] + }, + "multiagent_crafting_light_blue_banner_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an light_blue_banner", + "conversation": "Let's work together to craft an light_blue_banner.", + "initial_inventory": { + "0": { + "light_blue_wool": 3, + "stick": 1 + }, + "1": { + "light_blue_wool": 1 + }, + "2": { + "light_blue_wool": 1 + }, + "3": { + "light_blue_wool": 1 + } + }, + "agent_count": 4, + "target": "light_blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_green_banner_2_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an green_banner", + "conversation": "Let's work together to craft an green_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "oak_planks": 2 + }, + "1": { + "green_dye": 1, + "shears": 1 + }, + "2": { + "green_dye": 1 + }, + "3": { + "green_dye": 3 + } + }, + "agent_count": 4, + "target": "green_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_respawn_anchor_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an respawn_anchor", + "conversation": "Let's work together to craft an respawn_anchor.", + "initial_inventory": { + "0": { + "crying_obsidian": 1, + "glowstone": 3 + }, + "1": { + "crying_obsidian": 1 + }, + "2": { + "crying_obsidian": 3 + }, + "3": { + "crying_obsidian": 1 + } + }, + "agent_count": 4, + "target": "respawn_anchor", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_stained_glass_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an purple_stained_glass", + "conversation": "Let's work together to craft an purple_stained_glass.", + "initial_inventory": { + "0": { + "glass": 2, + "blue_dye": 1 + }, + "1": { + "glass": 2, + "red_dye": 1 + }, + "2": { + "glass": 2 + }, + "3": { + "glass": 2 + } + }, + "agent_count": 4, + "target": "purple_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_blackstone_brick_wall_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_blackstone_brick_wall", + "conversation": "Let's work together to craft an polished_blackstone_brick_wall.", + "initial_inventory": { + "0": { + "polished_blackstone_bricks": 3 + }, + "1": { + "polished_blackstone_bricks": 1 + }, + "2": { + "polished_blackstone_bricks": 1 + }, + "3": { + "polished_blackstone_bricks": 1 + } + }, + "agent_count": 4, + "target": "polished_blackstone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sticky_piston_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "cobblestone": 1 + }, + "1": { + "oak_planks": 3, + "cobblestone": 1 + }, + "2": { + "cobblestone": 1, + "iron_ingot": 1 + }, + "3": { + "cobblestone": 1, + "redstone": 1 + } + }, + "agent_count": 4, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tiles_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an deepslate_tiles", + "conversation": "Let's work together to craft an deepslate_tiles.", + "initial_inventory": { + "0": { + "deepslate_bricks": 1 + }, + "1": { + "deepslate_bricks": 1 + }, + "2": { + "deepslate_bricks": 1 + }, + "3": { + "deepslate_bricks": 1 + } + }, + "agent_count": 4, + "target": "deepslate_tiles", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_3_with_plan_missing_redstone_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1, + "stick": 1 + }, + "2": { + "iron_ingot": 1, + "diamond_pickaxe": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_activator_rail_0_with_plan_missing_redstone_torch_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "stick": 2 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 3 + } + }, + "agent_count": 4, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone_torch" + ] + }, + "multiagent_crafting_purple_candle_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an purple_candle", + "conversation": "Let's work together to craft an purple_candle.", + "initial_inventory": { + "0": { + "string": 1 + }, + "1": { + "honeycomb": 1 + }, + "2": { + "blue_dye": 1 + }, + "3": { + "red_dye": 1 + } + }, + "agent_count": 4, + "target": "purple_candle", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_recovery_compass_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an recovery_compass", + "conversation": "Let's work together to craft an recovery_compass.", + "initial_inventory": { + "0": { + "echo_shard": 2, + "compass": 1 + }, + "1": { + "echo_shard": 2 + }, + "2": { + "echo_shard": 2 + }, + "3": { + "echo_shard": 2 + } + }, + "agent_count": 4, + "target": "recovery_compass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_blackstone_brick_wall_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_blackstone_brick_wall", + "conversation": "Let's work together to craft an polished_blackstone_brick_wall.", + "initial_inventory": { + "0": { + "polished_blackstone": 2 + }, + "1": { + "polished_blackstone": 2 + }, + "2": { + "polished_blackstone": 2 + }, + "3": { + "polished_blackstone": 2 + } + }, + "agent_count": 4, + "target": "polished_blackstone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_terracotta_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an red_terracotta", + "conversation": "Let's work together to craft an red_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 2, + "red_dye": 1 + }, + "1": { + "terracotta": 2 + }, + "2": { + "terracotta": 2 + }, + "3": { + "terracotta": 2 + } + }, + "agent_count": 4, + "target": "red_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sticky_piston_2_with_plan_missing_redstone_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "cobblestone": 1 + }, + "1": { + "oak_planks": 3, + "cobblestone": 1 + }, + "2": { + "cobblestone": 1, + "iron_ingot": 1 + }, + "3": { + "cobblestone": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 4, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_blast_furnace_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "furnace": 1 + }, + "1": { + "iron_ingot": 1, + "smooth_stone": 3 + }, + "2": { + "iron_ingot": 2 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_stained_glass_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an purple_stained_glass", + "conversation": "Let's work together to craft an purple_stained_glass.", + "initial_inventory": { + "0": { + "glass": 2, + "blue_dye": 1 + }, + "1": { + "glass": 2, + "red_dye": 1 + }, + "2": { + "glass": 2 + }, + "3": { + "glass": 2 + } + }, + "agent_count": 4, + "target": "purple_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_orange_banner_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an orange_banner", + "conversation": "Let's work together to craft an orange_banner.", + "initial_inventory": { + "0": { + "orange_wool": 1, + "stick": 1 + }, + "1": { + "orange_wool": 1 + }, + "2": { + "orange_wool": 3 + }, + "3": { + "orange_wool": 1 + } + }, + "agent_count": 4, + "target": "orange_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tiles_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an deepslate_tiles", + "conversation": "Let's work together to craft an deepslate_tiles.", + "initial_inventory": { + "0": { + "polished_deepslate": 1 + }, + "1": { + "polished_deepslate": 1 + }, + "2": { + "polished_deepslate": 1 + }, + "3": { + "polished_deepslate": 1 + } + }, + "agent_count": 4, + "target": "deepslate_tiles", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_brick_wall_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an deepslate_brick_wall", + "conversation": "Let's work together to craft an deepslate_brick_wall.", + "initial_inventory": { + "0": { + "deepslate_bricks": 1 + }, + "1": { + "deepslate_bricks": 1 + }, + "2": { + "deepslate_bricks": 3 + }, + "3": { + "deepslate_bricks": 1 + } + }, + "agent_count": 4, + "target": "deepslate_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_blackstone_brick_wall_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_blackstone_brick_wall", + "conversation": "Let's work together to craft an polished_blackstone_brick_wall.", + "initial_inventory": { + "0": { + "polished_blackstone": 2 + }, + "1": { + "polished_blackstone": 2 + }, + "2": { + "polished_blackstone": 2 + }, + "3": { + "polished_blackstone": 2 + } + }, + "agent_count": 4, + "target": "polished_blackstone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "stick": 2 + }, + "1": { + "iron_ingot": 3, + "redstone_torch": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_candle_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an purple_candle", + "conversation": "Let's work together to craft an purple_candle.", + "initial_inventory": { + "0": { + "string": 1 + }, + "1": { + "honeycomb": 1 + }, + "2": { + "blue_dye": 1 + }, + "3": { + "red_dye": 1 + } + }, + "agent_count": 4, + "target": "purple_candle", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bone_block_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an bone_block", + "conversation": "Let's work together to craft an bone_block.", + "initial_inventory": { + "0": { + "bone_meal": 3 + }, + "1": { + "bone_meal": 2 + }, + "2": { + "bone_meal": 2 + }, + "3": { + "bone_meal": 2 + } + }, + "agent_count": 4, + "target": "bone_block", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_green_banner_0_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an green_banner", + "conversation": "Let's work together to craft an green_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "oak_planks": 2 + }, + "1": { + "green_dye": 1, + "shears": 1 + }, + "2": { + "green_dye": 1 + }, + "3": { + "green_dye": 3 + } + }, + "agent_count": 4, + "target": "green_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_piston_1_with_plan_missing_iron_ingot_redstone_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 3, + "cobblestone": 1 + }, + "1": { + "cobblestone": 1, + "stone_pickaxe": 1 + }, + "2": { + "cobblestone": 1, + "furnace": 1 + }, + "3": { + "cobblestone": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 4, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "iron_ingot", + "redstone" + ] + }, + "multiagent_crafting_magenta_banner_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an magenta_banner", + "conversation": "Let's work together to craft an magenta_banner.", + "initial_inventory": { + "0": { + "magenta_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "magenta_dye": 1, + "black_wool": 1 + }, + "2": { + "magenta_dye": 3, + "black_wool": 3 + }, + "3": { + "magenta_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "magenta_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_terracotta_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an magenta_terracotta", + "conversation": "Let's work together to craft an magenta_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 2, + "magenta_dye": 1 + }, + "1": { + "terracotta": 2 + }, + "2": { + "terracotta": 2 + }, + "3": { + "terracotta": 2 + } + }, + "agent_count": 4, + "target": "magenta_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_1_with_plan_missing_stone_brick_slab_gold_ingot_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "netherite_scrap": 1, + "furnace": 1 + }, + "2": { + "netherite_scrap": 1 + }, + "3": { + "netherite_scrap": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "stone_brick_slab", + "gold_ingot" + ] + }, + "multiagent_crafting_anvil_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an anvil", + "conversation": "Let's work together to craft an anvil.", + "initial_inventory": { + "0": { + "iron_block": 3, + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "anvil", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magma_block_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an magma_block", + "conversation": "Let's work together to craft an magma_block.", + "initial_inventory": { + "0": { + "blaze_powder": 1, + "slime_ball": 1 + }, + "1": { + "blaze_powder": 1, + "slime_ball": 1 + }, + "2": { + "blaze_powder": 1, + "slime_ball": 1 + }, + "3": { + "blaze_powder": 1, + "slime_ball": 1 + } + }, + "agent_count": 4, + "target": "magma_block", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_netherite_block_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an netherite_block", + "conversation": "Let's work together to craft an netherite_block.", + "initial_inventory": { + "0": { + "netherite_ingot": 3 + }, + "1": { + "netherite_ingot": 2 + }, + "2": { + "netherite_ingot": 2 + }, + "3": { + "netherite_ingot": 2 + } + }, + "agent_count": 4, + "target": "netherite_block", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_yellow_banner_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an yellow_banner", + "conversation": "Let's work together to craft an yellow_banner.", + "initial_inventory": { + "0": { + "yellow_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "yellow_dye": 1, + "black_wool": 1 + }, + "2": { + "yellow_dye": 3, + "black_wool": 1 + }, + "3": { + "yellow_dye": 1, + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "yellow_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blue_ice_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an blue_ice", + "conversation": "Let's work together to craft an blue_ice.", + "initial_inventory": { + "0": { + "packed_ice": 2 + }, + "1": { + "packed_ice": 3 + }, + "2": { + "packed_ice": 2 + }, + "3": { + "packed_ice": 2 + } + }, + "agent_count": 4, + "target": "blue_ice", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_item_frame_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an item_frame", + "conversation": "Let's work together to craft an item_frame.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "1": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "2": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "3": { + "oak_planks": 1, + "rabbit_hide": 1 + } + }, + "agent_count": 4, + "target": "item_frame", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_prismarine_wall_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an prismarine_wall", + "conversation": "Let's work together to craft an prismarine_wall.", + "initial_inventory": { + "0": { + "prismarine": 1 + }, + "1": { + "prismarine": 1 + }, + "2": { + "prismarine": 3 + }, + "3": { + "prismarine": 1 + } + }, + "agent_count": 4, + "target": "prismarine_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_brick_wall_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an deepslate_brick_wall", + "conversation": "Let's work together to craft an deepslate_brick_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 2 + }, + "1": { + "polished_deepslate": 2 + }, + "2": { + "polished_deepslate": 2 + }, + "3": { + "polished_deepslate": 2 + } + }, + "agent_count": 4, + "target": "deepslate_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_anvil_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an anvil", + "conversation": "Let's work together to craft an anvil.", + "initial_inventory": { + "0": { + "iron_block": 3, + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "anvil", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sticky_piston_2_with_plan_missing_iron_ingot_redstone_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "1": { + "oak_planks": 3, + "cobblestone": 1 + }, + "2": { + "cobblestone": 1, + "stone_pickaxe": 1 + }, + "3": { + "cobblestone": 1, + "furnace": 1 + } + }, + "agent_count": 4, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "iron_ingot", + "redstone" + ] + }, + "multiagent_crafting_blast_furnace_3_with_plan_missing_furnace_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "smooth_stone": 3 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "furnace" + ] + }, + "multiagent_crafting_lodestone_1_with_plan_missing_gold_ingot_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_brick_slab": 4, + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "stone_brick_slab": 4, + "netherite_scrap": 1, + "furnace": 1 + }, + "2": { + "stone_brick_slab": 4, + "netherite_scrap": 1 + }, + "3": { + "stone_brick_slab": 4, + "netherite_scrap": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_mossy_cobblestone_wall_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an mossy_cobblestone_wall", + "conversation": "Let's work together to craft an mossy_cobblestone_wall.", + "initial_inventory": { + "0": { + "mossy_cobblestone": 1 + }, + "1": { + "mossy_cobblestone": 1 + }, + "2": { + "mossy_cobblestone": 3 + }, + "3": { + "mossy_cobblestone": 1 + } + }, + "agent_count": 4, + "target": "mossy_cobblestone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_yellow_banner_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an yellow_banner", + "conversation": "Let's work together to craft an yellow_banner.", + "initial_inventory": { + "0": { + "yellow_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "yellow_dye": 1, + "black_wool": 1 + }, + "2": { + "yellow_dye": 3, + "black_wool": 1 + }, + "3": { + "yellow_dye": 1, + "black_wool": 3 + } + }, + "agent_count": 4, + "target": "yellow_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brick_wall_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an brick_wall", + "conversation": "Let's work together to craft an brick_wall.", + "initial_inventory": { + "0": { + "bricks": 1 + }, + "1": { + "bricks": 3 + }, + "2": { + "bricks": 1 + }, + "3": { + "bricks": 1 + } + }, + "agent_count": 4, + "target": "brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_3_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "purple_dye": 1, + "oak_planks": 2 + }, + "1": { + "purple_dye": 3, + "shears": 1 + }, + "2": { + "purple_dye": 1 + }, + "3": { + "purple_dye": 1 + } + }, + "agent_count": 4, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_detector_rail_1_with_plan_missing_iron_ingot_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "stone_pressure_plate": 1 + }, + "1": { + "redstone": 1 + }, + "2": { + "stone_pickaxe": 1 + }, + "3": { + "furnace": 1 + } + }, + "agent_count": 4, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_sticky_piston_1_with_plan_missing_iron_ingot_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "cobblestone": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 3, + "cobblestone": 1 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1, + "stone_pickaxe": 1 + } + }, + "agent_count": 4, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_map_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an map", + "conversation": "Let's work together to craft an map.", + "initial_inventory": { + "0": { + "paper": 2, + "compass": 1 + }, + "1": { + "paper": 2 + }, + "2": { + "paper": 2 + }, + "3": { + "paper": 2 + } + }, + "agent_count": 4, + "target": "map", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_enchanting_table_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an enchanting_table", + "conversation": "Let's work together to craft an enchanting_table.", + "initial_inventory": { + "0": { + "paper": 3, + "obsidian": 1 + }, + "1": { + "leather": 1, + "obsidian": 1 + }, + "2": { + "diamond": 2, + "obsidian": 1 + }, + "3": { + "obsidian": 1 + } + }, + "agent_count": 4, + "target": "enchanting_table", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_stained_glass_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an magenta_stained_glass", + "conversation": "Let's work together to craft an magenta_stained_glass.", + "initial_inventory": { + "0": { + "glass": 2, + "magenta_dye": 1 + }, + "1": { + "glass": 2 + }, + "2": { + "glass": 2 + }, + "3": { + "glass": 2 + } + }, + "agent_count": 4, + "target": "magenta_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_rail_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an rail", + "conversation": "Let's work together to craft an rail.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lantern_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an lantern", + "conversation": "Let's work together to craft an lantern.", + "initial_inventory": { + "0": { + "iron_nugget": 2, + "torch": 1 + }, + "1": { + "iron_nugget": 2 + }, + "2": { + "iron_nugget": 2 + }, + "3": { + "iron_nugget": 2 + } + }, + "agent_count": 4, + "target": "lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_waxed_cut_copper_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an waxed_cut_copper", + "conversation": "Let's work together to craft an waxed_cut_copper.", + "initial_inventory": { + "0": { + "copper_block": 1, + "honeycomb": 1 + }, + "1": { + "copper_block": 1, + "honeycomb": 1 + }, + "2": { + "copper_block": 1, + "honeycomb": 1 + }, + "3": { + "copper_block": 1, + "honeycomb": 1 + } + }, + "agent_count": 4, + "target": "waxed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_detector_rail_3_with_plan_missing_iron_ingot_redstone_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "stone_pressure_plate": 1 + }, + "1": { + "stone_pickaxe": 1 + }, + "2": { + "furnace": 1 + }, + "3": { + "diamond_pickaxe": 1 + } + }, + "agent_count": 4, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "iron_ingot", + "redstone" + ] + }, + "multiagent_crafting_green_banner_3_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an green_banner", + "conversation": "Let's work together to craft an green_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "oak_planks": 2 + }, + "1": { + "green_dye": 1, + "shears": 1 + }, + "2": { + "green_dye": 1 + }, + "3": { + "green_dye": 3 + } + }, + "agent_count": 4, + "target": "green_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_brick_wall_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an brick_wall", + "conversation": "Let's work together to craft an brick_wall.", + "initial_inventory": { + "0": { + "bricks": 1 + }, + "1": { + "bricks": 3 + }, + "2": { + "bricks": 1 + }, + "3": { + "bricks": 1 + } + }, + "agent_count": 4, + "target": "brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_item_frame_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an item_frame", + "conversation": "Let's work together to craft an item_frame.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "1": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "2": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "3": { + "oak_planks": 1, + "rabbit_hide": 1 + } + }, + "agent_count": 4, + "target": "item_frame", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_1_with_plan_missing_redstone_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "bow": 1 + }, + "1": { + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "2": { + "cobblestone": 4 + }, + "3": { + "cobblestone": 1 + } + }, + "agent_count": 4, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_purple_banner_1_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "purple_dye": 1, + "oak_planks": 2 + }, + "1": { + "purple_dye": 3, + "shears": 1 + }, + "2": { + "purple_dye": 1 + }, + "3": { + "purple_dye": 1 + } + }, + "agent_count": 4, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_waxed_cut_copper_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an waxed_cut_copper", + "conversation": "Let's work together to craft an waxed_cut_copper.", + "initial_inventory": { + "0": { + "waxed_copper_block": 1 + }, + "1": { + "waxed_copper_block": 1 + }, + "2": { + "waxed_copper_block": 1 + }, + "3": { + "waxed_copper_block": 1 + } + }, + "agent_count": 4, + "target": "waxed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sticky_piston_0_with_plan_missing_iron_ingot_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "cobblestone": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 3, + "cobblestone": 1 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1, + "stone_pickaxe": 1 + } + }, + "agent_count": 4, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_deepslate_bricks_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an deepslate_bricks", + "conversation": "Let's work together to craft an deepslate_bricks.", + "initial_inventory": { + "0": { + "polished_deepslate": 1 + }, + "1": { + "polished_deepslate": 1 + }, + "2": { + "polished_deepslate": 1 + }, + "3": { + "polished_deepslate": 1 + } + }, + "agent_count": 4, + "target": "deepslate_bricks", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sticky_piston_1_with_plan_missing_iron_ingot_redstone_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "1": { + "oak_planks": 3, + "cobblestone": 1 + }, + "2": { + "cobblestone": 1, + "stone_pickaxe": 1 + }, + "3": { + "cobblestone": 1, + "furnace": 1 + } + }, + "agent_count": 4, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "iron_ingot", + "redstone" + ] + }, + "multiagent_crafting_piston_2_with_plan_missing_cobblestone_iron_ingot_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 3, + "furnace": 1 + }, + "1": { + "redstone": 1 + }, + "2": { + "wooden_pickaxe": 1 + }, + "3": { + "stone_pickaxe": 1 + } + }, + "agent_count": 4, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "cobblestone", + "iron_ingot" + ] + }, + "multiagent_crafting_dispenser_3_with_plan_missing_redstone_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "stick": 3 + }, + "1": { + "cobblestone": 4, + "string": 3 + }, + "2": { + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "3": { + "cobblestone": 1 + } + }, + "agent_count": 4, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_detector_rail_1_with_plan_missing_stone_pressure_plate_redstone_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "diamond_pickaxe": 1 + }, + "1": { + "iron_ingot": 3 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "stone_pressure_plate", + "redstone" + ] + }, + "multiagent_crafting_soul_lantern_2_with_plan_missing_iron_ingot_coal_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "stick": 1, + "iron_pickaxe": 1 + }, + "1": { + "soul_sand": 1 + }, + "2": { + "stone_pickaxe": 1 + }, + "3": { + "furnace": 1 + } + }, + "agent_count": 4, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "iron_ingot", + "coal" + ] + }, + "multiagent_crafting_blue_ice_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an blue_ice", + "conversation": "Let's work together to craft an blue_ice.", + "initial_inventory": { + "0": { + "packed_ice": 2 + }, + "1": { + "packed_ice": 3 + }, + "2": { + "packed_ice": 2 + }, + "3": { + "packed_ice": 2 + } + }, + "agent_count": 4, + "target": "blue_ice", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_1_with_plan_missing_redstone_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1, + "stick": 1 + }, + "2": { + "iron_ingot": 1, + "diamond_pickaxe": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_leather_chestplate_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an leather_chestplate", + "conversation": "Let's work together to craft an leather_chestplate.", + "initial_inventory": { + "0": { + "leather": 2 + }, + "1": { + "leather": 2 + }, + "2": { + "leather": 2 + }, + "3": { + "leather": 2 + } + }, + "agent_count": 4, + "target": "leather_chestplate", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sticky_piston_1_with_plan_missing_cobblestone_iron_ingot_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "stone_pickaxe": 1 + }, + "1": { + "oak_planks": 3, + "furnace": 1 + }, + "2": { + "redstone": 1 + }, + "3": { + "wooden_pickaxe": 1 + } + }, + "agent_count": 4, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "cobblestone", + "iron_ingot" + ] + }, + "multiagent_crafting_polished_deepslate_wall_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_deepslate_wall", + "conversation": "Let's work together to craft an polished_deepslate_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 1 + }, + "1": { + "polished_deepslate": 1 + }, + "2": { + "polished_deepslate": 1 + }, + "3": { + "polished_deepslate": 3 + } + }, + "agent_count": 4, + "target": "polished_deepslate_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 4, + "stick": 3 + }, + "1": { + "cobblestone": 1, + "string": 3 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1 + } + }, + "agent_count": 4, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_2_with_plan__depth_0_num_agents_4": { + "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": 1, + "stick": 1 + }, + "1": { + "purple_wool": 1 + }, + "2": { + "purple_wool": 3 + }, + "3": { + "purple_wool": 1 + } + }, + "agent_count": 4, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_brick_slab": 4, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "1": { + "stone_brick_slab": 4, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "2": { + "stone_brick_slab": 4, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "3": { + "stone_brick_slab": 4, + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_piston_3_with_plan_missing_cobblestone_iron_ingot_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 3, + "furnace": 1 + }, + "1": { + "redstone": 1 + }, + "2": { + "wooden_pickaxe": 1 + }, + "3": { + "stone_pickaxe": 1 + } + }, + "agent_count": 4, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "cobblestone", + "iron_ingot" + ] + }, + "multiagent_crafting_waxed_cut_copper_3_with_plan_missing_copper_block_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an waxed_cut_copper", + "conversation": "Let's work together to craft an waxed_cut_copper.", + "initial_inventory": { + "0": { + "honeycomb": 1 + }, + "1": { + "honeycomb": 1 + }, + "2": { + "honeycomb": 1 + }, + "3": { + "honeycomb": 1 + } + }, + "agent_count": 4, + "target": "waxed_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "copper_block" + ] + }, + "multiagent_crafting_activator_rail_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "stick": 2 + }, + "1": { + "iron_ingot": 3, + "redstone_torch": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_blue_banner_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an light_blue_banner", + "conversation": "Let's work together to craft an light_blue_banner.", + "initial_inventory": { + "0": { + "light_blue_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "light_blue_dye": 1, + "black_wool": 1 + }, + "2": { + "light_blue_dye": 1, + "black_wool": 3 + }, + "3": { + "light_blue_dye": 3, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "light_blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_respawn_anchor_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an respawn_anchor", + "conversation": "Let's work together to craft an respawn_anchor.", + "initial_inventory": { + "0": { + "crying_obsidian": 1, + "glowstone": 3 + }, + "1": { + "crying_obsidian": 1 + }, + "2": { + "crying_obsidian": 3 + }, + "3": { + "crying_obsidian": 1 + } + }, + "agent_count": 4, + "target": "respawn_anchor", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 4, + "stick": 3 + }, + "1": { + "cobblestone": 1, + "string": 3 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1 + } + }, + "agent_count": 4, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_piston_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 3, + "cobblestone": 1 + }, + "1": { + "cobblestone": 1, + "iron_ingot": 1 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1 + } + }, + "agent_count": 4, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sticky_piston_3_with_plan_missing_iron_ingot_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "cobblestone": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 3, + "cobblestone": 1 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1, + "stone_pickaxe": 1 + } + }, + "agent_count": 4, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_anvil_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an anvil", + "conversation": "Let's work together to craft an anvil.", + "initial_inventory": { + "0": { + "iron_block": 3, + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "anvil", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_end_crystal_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an end_crystal", + "conversation": "Let's work together to craft an end_crystal.", + "initial_inventory": { + "0": { + "glass": 1, + "ender_pearl": 1 + }, + "1": { + "glass": 4, + "blaze_powder": 1 + }, + "2": { + "glass": 1, + "ghast_tear": 1 + }, + "3": { + "glass": 1 + } + }, + "agent_count": 4, + "target": "end_crystal", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_target_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an target", + "conversation": "Let's work together to craft an target.", + "initial_inventory": { + "0": { + "redstone": 1, + "hay_block": 1 + }, + "1": { + "redstone": 1 + }, + "2": { + "redstone": 1 + }, + "3": { + "redstone": 1 + } + }, + "agent_count": 4, + "target": "target", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_gray_banner_0_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an light_gray_banner", + "conversation": "Let's work together to craft an light_gray_banner.", + "initial_inventory": { + "0": { + "light_gray_dye": 3, + "oak_planks": 2 + }, + "1": { + "light_gray_dye": 1, + "shears": 1 + }, + "2": { + "light_gray_dye": 1 + }, + "3": { + "light_gray_dye": 1 + } + }, + "agent_count": 4, + "target": "light_gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_mossy_stone_brick_wall_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an mossy_stone_brick_wall", + "conversation": "Let's work together to craft an mossy_stone_brick_wall.", + "initial_inventory": { + "0": { + "mossy_stone_bricks": 3 + }, + "1": { + "mossy_stone_bricks": 1 + }, + "2": { + "mossy_stone_bricks": 1 + }, + "3": { + "mossy_stone_bricks": 1 + } + }, + "agent_count": 4, + "target": "mossy_stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sticky_piston_2_with_plan_missing_cobblestone_iron_ingot_redstone_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "furnace": 1 + }, + "1": { + "oak_planks": 3, + "diamond_pickaxe": 1 + }, + "2": { + "wooden_pickaxe": 1 + }, + "3": { + "stone_pickaxe": 1 + } + }, + "agent_count": 4, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "cobblestone", + "iron_ingot", + "redstone" + ] + }, + "multiagent_crafting_piston_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an piston", + "conversation": "Let's work together to craft an piston.", + "initial_inventory": { + "0": { + "oak_planks": 3, + "cobblestone": 1 + }, + "1": { + "cobblestone": 1, + "iron_ingot": 1 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1 + } + }, + "agent_count": 4, + "target": "piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_0_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "purple_dye": 1, + "oak_planks": 2 + }, + "1": { + "purple_dye": 3, + "shears": 1 + }, + "2": { + "purple_dye": 1 + }, + "3": { + "purple_dye": 1 + } + }, + "agent_count": 4, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_soul_lantern_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "iron_nugget": 2, + "soul_torch": 1 + }, + "1": { + "iron_nugget": 2 + }, + "2": { + "iron_nugget": 2 + }, + "3": { + "iron_nugget": 2 + } + }, + "agent_count": 4, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_orange_banner_0_with_plan_missing_black_wool_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an orange_banner", + "conversation": "Let's work together to craft an orange_banner.", + "initial_inventory": { + "0": { + "orange_dye": 1, + "oak_planks": 2 + }, + "1": { + "orange_dye": 3, + "shears": 1 + }, + "2": { + "orange_dye": 1 + }, + "3": { + "orange_dye": 1 + } + }, + "agent_count": 4, + "target": "orange_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_blast_furnace_0_with_plan_missing_furnace_smooth_stone_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 2 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "furnace", + "smooth_stone" + ] + }, + "multiagent_crafting_lodestone_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_brick_slab": 4, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "1": { + "stone_brick_slab": 4, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "2": { + "stone_brick_slab": 4, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "3": { + "stone_brick_slab": 4, + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_green_banner_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an green_banner", + "conversation": "Let's work together to craft an green_banner.", + "initial_inventory": { + "0": { + "green_wool": 1, + "stick": 1 + }, + "1": { + "green_wool": 3 + }, + "2": { + "green_wool": 1 + }, + "3": { + "green_wool": 1 + } + }, + "agent_count": 4, + "target": "green_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mossy_stone_brick_wall_3_with_plan_missing_stone_bricks_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an mossy_stone_brick_wall", + "conversation": "Let's work together to craft an mossy_stone_brick_wall.", + "initial_inventory": { + "0": { + "moss_block": 1 + }, + "1": { + "moss_block": 3 + }, + "2": { + "moss_block": 1 + }, + "3": { + "moss_block": 1 + } + }, + "agent_count": 4, + "target": "mossy_stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "stone_bricks" + ] + }, + "multiagent_crafting_leather_chestplate_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an leather_chestplate", + "conversation": "Let's work together to craft an leather_chestplate.", + "initial_inventory": { + "0": { + "leather": 2 + }, + "1": { + "leather": 2 + }, + "2": { + "leather": 2 + }, + "3": { + "leather": 2 + } + }, + "agent_count": 4, + "target": "leather_chestplate", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_enchanting_table_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an enchanting_table", + "conversation": "Let's work together to craft an enchanting_table.", + "initial_inventory": { + "0": { + "paper": 3, + "obsidian": 1 + }, + "1": { + "leather": 1, + "obsidian": 1 + }, + "2": { + "diamond": 2, + "obsidian": 1 + }, + "3": { + "obsidian": 1 + } + }, + "agent_count": 4, + "target": "enchanting_table", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mossy_cobblestone_wall_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an mossy_cobblestone_wall", + "conversation": "Let's work together to craft an mossy_cobblestone_wall.", + "initial_inventory": { + "0": { + "mossy_cobblestone": 1 + }, + "1": { + "mossy_cobblestone": 1 + }, + "2": { + "mossy_cobblestone": 3 + }, + "3": { + "mossy_cobblestone": 1 + } + }, + "agent_count": 4, + "target": "mossy_cobblestone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_blackstone_brick_wall_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_blackstone_brick_wall", + "conversation": "Let's work together to craft an polished_blackstone_brick_wall.", + "initial_inventory": { + "0": { + "polished_blackstone": 2 + }, + "1": { + "polished_blackstone": 2 + }, + "2": { + "polished_blackstone": 2 + }, + "3": { + "polished_blackstone": 2 + } + }, + "agent_count": 4, + "target": "polished_blackstone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_anvil_2_with_plan_missing_iron_block_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an anvil", + "conversation": "Let's work together to craft an anvil.", + "initial_inventory": { + "0": { + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "anvil", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "iron_block" + ] + }, + "multiagent_crafting_lodestone_0_with_plan_missing_stone_brick_slab_gold_ingot_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "netherite_scrap": 1, + "furnace": 1 + }, + "2": { + "netherite_scrap": 1 + }, + "3": { + "netherite_scrap": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "stone_brick_slab", + "gold_ingot" + ] + }, + "multiagent_crafting_blast_furnace_1_with_plan_missing_iron_ingot_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "furnace": 1 + }, + "1": { + "smooth_stone": 3 + }, + "2": { + "stone_pickaxe": 1 + }, + "3": { + "furnace": 1 + } + }, + "agent_count": 4, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "iron_ingot" + ] + }, + "multiagent_crafting_dispenser_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 4, + "stick": 3 + }, + "1": { + "cobblestone": 1, + "string": 3 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1 + } + }, + "agent_count": 4, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_stained_glass_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an purple_stained_glass", + "conversation": "Let's work together to craft an purple_stained_glass.", + "initial_inventory": { + "0": { + "glass": 2, + "purple_dye": 1 + }, + "1": { + "glass": 2 + }, + "2": { + "glass": 2 + }, + "3": { + "glass": 2 + } + }, + "agent_count": 4, + "target": "purple_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "purple_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "purple_dye": 1, + "black_wool": 3 + }, + "2": { + "purple_dye": 3, + "black_wool": 1 + }, + "3": { + "purple_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_recovery_compass_1_with_plan_missing_compass_depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an recovery_compass", + "conversation": "Let's work together to craft an recovery_compass.", + "initial_inventory": { + "0": { + "echo_shard": 2 + }, + "1": { + "echo_shard": 2 + }, + "2": { + "echo_shard": 2 + }, + "3": { + "echo_shard": 2 + } + }, + "agent_count": 4, + "target": "recovery_compass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "compass" + ] + }, + "multiagent_crafting_cyan_terracotta_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an cyan_terracotta", + "conversation": "Let's work together to craft an cyan_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 2, + "blue_dye": 1 + }, + "1": { + "terracotta": 2, + "green_dye": 1 + }, + "2": { + "terracotta": 2 + }, + "3": { + "terracotta": 2 + } + }, + "agent_count": 4, + "target": "cyan_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_andesite_wall_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an andesite_wall", + "conversation": "Let's work together to craft an andesite_wall.", + "initial_inventory": { + "0": { + "andesite": 1 + }, + "1": { + "andesite": 1 + }, + "2": { + "andesite": 3 + }, + "3": { + "andesite": 1 + } + }, + "agent_count": 4, + "target": "andesite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_2_with_plan_missing_gold_ingot_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_brick_slab": 4, + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "stone_brick_slab": 4, + "netherite_scrap": 1, + "furnace": 1 + }, + "2": { + "stone_brick_slab": 4, + "netherite_scrap": 1 + }, + "3": { + "stone_brick_slab": 4, + "netherite_scrap": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_magma_block_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an magma_block", + "conversation": "Let's work together to craft an magma_block.", + "initial_inventory": { + "0": { + "magma_cream": 1 + }, + "1": { + "magma_cream": 1 + }, + "2": { + "magma_cream": 1 + }, + "3": { + "magma_cream": 1 + } + }, + "agent_count": 4, + "target": "magma_block", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sticky_piston_1_with_plan_missing_redstone_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "cobblestone": 1 + }, + "1": { + "oak_planks": 3, + "cobblestone": 1 + }, + "2": { + "cobblestone": 1, + "iron_ingot": 1 + }, + "3": { + "cobblestone": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 4, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_purple_stained_glass_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an purple_stained_glass", + "conversation": "Let's work together to craft an purple_stained_glass.", + "initial_inventory": { + "0": { + "glass": 2, + "purple_dye": 1 + }, + "1": { + "glass": 2 + }, + "2": { + "glass": 2 + }, + "3": { + "glass": 2 + } + }, + "agent_count": 4, + "target": "purple_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sticky_piston_0_with_plan_missing_redstone_depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an sticky_piston", + "conversation": "Let's work together to craft an sticky_piston.", + "initial_inventory": { + "0": { + "slime_ball": 1, + "cobblestone": 1 + }, + "1": { + "oak_planks": 3, + "cobblestone": 1 + }, + "2": { + "cobblestone": 1, + "iron_ingot": 1 + }, + "3": { + "cobblestone": 1, + "diamond_pickaxe": 1 + } + }, + "agent_count": 4, + "target": "sticky_piston", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_deepslate_tile_wall_0_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 2 + }, + "1": { + "polished_deepslate": 2 + }, + "2": { + "polished_deepslate": 2 + }, + "3": { + "polished_deepslate": 2 + } + }, + "agent_count": 4, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_1_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 2 + }, + "1": { + "polished_deepslate": 2 + }, + "2": { + "polished_deepslate": 2 + }, + "3": { + "polished_deepslate": 2 + } + }, + "agent_count": 4, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_2_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 2 + }, + "1": { + "polished_deepslate": 2 + }, + "2": { + "polished_deepslate": 2 + }, + "3": { + "polished_deepslate": 2 + } + }, + "agent_count": 4, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_3_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 2 + }, + "1": { + "polished_deepslate": 2 + }, + "2": { + "polished_deepslate": 2 + }, + "3": { + "polished_deepslate": 2 + } + }, + "agent_count": 4, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_0_with_plan_missing_redstone_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "oak_planks": 2 + }, + "1": { + "cobblestone": 1, + "string": 3 + }, + "2": { + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "3": { + "cobblestone": 4 + } + }, + "agent_count": 4, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_dispenser_1_with_plan_missing_redstone_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "oak_planks": 2 + }, + "1": { + "cobblestone": 1, + "string": 3 + }, + "2": { + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "3": { + "cobblestone": 4 + } + }, + "agent_count": 4, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_dispenser_2_with_plan_missing_redstone_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "oak_planks": 2 + }, + "1": { + "cobblestone": 1, + "string": 3 + }, + "2": { + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "3": { + "cobblestone": 4 + } + }, + "agent_count": 4, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_dispenser_3_with_plan_missing_redstone_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "oak_planks": 2 + }, + "1": { + "cobblestone": 1, + "string": 3 + }, + "2": { + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "3": { + "cobblestone": 4 + } + }, + "agent_count": 4, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_dispenser_0_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "oak_planks": 2 + }, + "1": { + "cobblestone": 4, + "string": 3 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1 + } + }, + "agent_count": 4, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_1_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "oak_planks": 2 + }, + "1": { + "cobblestone": 4, + "string": 3 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1 + } + }, + "agent_count": 4, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_2_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "oak_planks": 2 + }, + "1": { + "cobblestone": 4, + "string": 3 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1 + } + }, + "agent_count": 4, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_3_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "oak_planks": 2 + }, + "1": { + "cobblestone": 4, + "string": 3 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1 + } + }, + "agent_count": 4, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_0_with_plan_missing_redstone_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_log": 1 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 1, + "diamond_pickaxe": 1 + }, + "3": { + "iron_ingot": 3 + } + }, + "agent_count": 4, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_activator_rail_1_with_plan_missing_redstone_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_log": 1 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 1, + "diamond_pickaxe": 1 + }, + "3": { + "iron_ingot": 3 + } + }, + "agent_count": 4, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_activator_rail_2_with_plan_missing_redstone_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_log": 1 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 1, + "diamond_pickaxe": 1 + }, + "3": { + "iron_ingot": 3 + } + }, + "agent_count": 4, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_activator_rail_3_with_plan_missing_redstone_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_log": 1 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 1, + "diamond_pickaxe": 1 + }, + "3": { + "iron_ingot": 3 + } + }, + "agent_count": 4, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_activator_rail_0_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_log": 1 + }, + "1": { + "iron_ingot": 1, + "redstone": 1 + }, + "2": { + "iron_ingot": 3, + "oak_planks": 2 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_1_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_log": 1 + }, + "1": { + "iron_ingot": 1, + "redstone": 1 + }, + "2": { + "iron_ingot": 3, + "oak_planks": 2 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_2_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_log": 1 + }, + "1": { + "iron_ingot": 1, + "redstone": 1 + }, + "2": { + "iron_ingot": 3, + "oak_planks": 2 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_3_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_log": 1 + }, + "1": { + "iron_ingot": 1, + "redstone": 1 + }, + "2": { + "iron_ingot": 3, + "oak_planks": 2 + }, + "3": { + "iron_ingot": 1 + } + }, + "agent_count": 4, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_glow_item_frame_0_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an glow_item_frame", + "conversation": "Let's work together to craft an glow_item_frame.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "rabbit_hide": 1, + "glow_ink_sac": 1 + }, + "1": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "2": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "3": { + "oak_planks": 1, + "rabbit_hide": 1 + } + }, + "agent_count": 4, + "target": "glow_item_frame", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_glow_item_frame_1_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an glow_item_frame", + "conversation": "Let's work together to craft an glow_item_frame.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "rabbit_hide": 1, + "glow_ink_sac": 1 + }, + "1": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "2": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "3": { + "oak_planks": 1, + "rabbit_hide": 1 + } + }, + "agent_count": 4, + "target": "glow_item_frame", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_glow_item_frame_2_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an glow_item_frame", + "conversation": "Let's work together to craft an glow_item_frame.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "rabbit_hide": 1, + "glow_ink_sac": 1 + }, + "1": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "2": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "3": { + "oak_planks": 1, + "rabbit_hide": 1 + } + }, + "agent_count": 4, + "target": "glow_item_frame", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_glow_item_frame_3_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an glow_item_frame", + "conversation": "Let's work together to craft an glow_item_frame.", + "initial_inventory": { + "0": { + "oak_planks": 1, + "rabbit_hide": 1, + "glow_ink_sac": 1 + }, + "1": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "2": { + "oak_planks": 1, + "rabbit_hide": 1 + }, + "3": { + "oak_planks": 1, + "rabbit_hide": 1 + } + }, + "agent_count": 4, + "target": "glow_item_frame", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_0_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "blue_dye": 3, + "black_wool": 3 + }, + "1": { + "red_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_1_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "blue_dye": 3, + "black_wool": 3 + }, + "1": { + "red_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_2_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "blue_dye": 3, + "black_wool": 3 + }, + "1": { + "red_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_3_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "blue_dye": 3, + "black_wool": 3 + }, + "1": { + "red_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 4, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_soul_lantern_0_with_plan_missing_iron_ingot_coal_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "iron_pickaxe": 1 + }, + "1": { + "soul_sand": 1 + }, + "2": { + "stone_pickaxe": 1 + }, + "3": { + "furnace": 1 + } + }, + "agent_count": 4, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "iron_ingot", + "coal" + ] + }, + "multiagent_crafting_soul_lantern_1_with_plan_missing_iron_ingot_coal_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "iron_pickaxe": 1 + }, + "1": { + "soul_sand": 1 + }, + "2": { + "stone_pickaxe": 1 + }, + "3": { + "furnace": 1 + } + }, + "agent_count": 4, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "iron_ingot", + "coal" + ] + }, + "multiagent_crafting_soul_lantern_2_with_plan_missing_iron_ingot_coal_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "iron_pickaxe": 1 + }, + "1": { + "soul_sand": 1 + }, + "2": { + "stone_pickaxe": 1 + }, + "3": { + "furnace": 1 + } + }, + "agent_count": 4, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "iron_ingot", + "coal" + ] + }, + "multiagent_crafting_soul_lantern_3_with_plan_missing_iron_ingot_coal_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an soul_lantern", + "conversation": "Let's work together to craft an soul_lantern.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "iron_pickaxe": 1 + }, + "1": { + "soul_sand": 1 + }, + "2": { + "stone_pickaxe": 1 + }, + "3": { + "furnace": 1 + } + }, + "agent_count": 4, + "target": "soul_lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "iron_ingot", + "coal" + ] + }, + "multiagent_crafting_lodestone_0_with_plan_missing_stone_bricks_gold_ingot_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "netherite_scrap": 1, + "furnace": 1 + }, + "2": { + "netherite_scrap": 1 + }, + "3": { + "netherite_scrap": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "stone_bricks", + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_1_with_plan_missing_stone_bricks_gold_ingot_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "netherite_scrap": 1, + "furnace": 1 + }, + "2": { + "netherite_scrap": 1 + }, + "3": { + "netherite_scrap": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "stone_bricks", + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_2_with_plan_missing_stone_bricks_gold_ingot_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "netherite_scrap": 1, + "furnace": 1 + }, + "2": { + "netherite_scrap": 1 + }, + "3": { + "netherite_scrap": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "stone_bricks", + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_3_with_plan_missing_stone_bricks_gold_ingot_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "netherite_scrap": 1, + "furnace": 1 + }, + "2": { + "netherite_scrap": 1 + }, + "3": { + "netherite_scrap": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "stone_bricks", + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_0_with_plan_missing_gold_ingot_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 3, + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "stone_bricks": 2, + "netherite_scrap": 1, + "furnace": 1 + }, + "2": { + "stone_bricks": 2, + "netherite_scrap": 1 + }, + "3": { + "stone_bricks": 2, + "netherite_scrap": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_1_with_plan_missing_gold_ingot_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 3, + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "stone_bricks": 2, + "netherite_scrap": 1, + "furnace": 1 + }, + "2": { + "stone_bricks": 2, + "netherite_scrap": 1 + }, + "3": { + "stone_bricks": 2, + "netherite_scrap": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_2_with_plan_missing_gold_ingot_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 3, + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "stone_bricks": 2, + "netherite_scrap": 1, + "furnace": 1 + }, + "2": { + "stone_bricks": 2, + "netherite_scrap": 1 + }, + "3": { + "stone_bricks": 2, + "netherite_scrap": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_3_with_plan_missing_gold_ingot_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 3, + "netherite_scrap": 1, + "iron_pickaxe": 1 + }, + "1": { + "stone_bricks": 2, + "netherite_scrap": 1, + "furnace": 1 + }, + "2": { + "stone_bricks": 2, + "netherite_scrap": 1 + }, + "3": { + "stone_bricks": 2, + "netherite_scrap": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_0_with_plan_missing_stone_bricks_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "1": { + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "2": { + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "3": { + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "stone_bricks" + ] + }, + "multiagent_crafting_lodestone_1_with_plan_missing_stone_bricks_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "1": { + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "2": { + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "3": { + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [ + "stone_bricks" + ] + }, + "multiagent_crafting_lodestone_2_with_plan_missing_stone_bricks_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "1": { + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "2": { + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "3": { + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [ + "stone_bricks" + ] + }, + "multiagent_crafting_lodestone_3_with_plan_missing_stone_bricks_depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "1": { + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "2": { + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "3": { + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [ + "stone_bricks" + ] + }, + "multiagent_crafting_lodestone_0_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 3, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "1": { + "stone_bricks": 2, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "2": { + "stone_bricks": 2, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "3": { + "stone_bricks": 2, + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_1_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 3, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "1": { + "stone_bricks": 2, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "2": { + "stone_bricks": 2, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "3": { + "stone_bricks": 2, + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_2_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 3, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "1": { + "stone_bricks": 2, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "2": { + "stone_bricks": 2, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "3": { + "stone_bricks": 2, + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_3_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 3, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "1": { + "stone_bricks": 2, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "2": { + "stone_bricks": 2, + "netherite_scrap": 1, + "gold_ingot": 1 + }, + "3": { + "stone_bricks": 2, + "netherite_scrap": 1, + "gold_ingot": 1 + } + }, + "agent_count": 4, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [] + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/train_tasks/tasks_4_agents_stats.txt b/tasks/crafting_tasks/train_tasks/tasks_4_agents_stats.txt new file mode 100644 index 0000000..e7973ce --- /dev/null +++ b/tasks/crafting_tasks/train_tasks/tasks_4_agents_stats.txt @@ -0,0 +1,16 @@ +{ + "num_tasks": 248, + "avg_depth": 2.0766129032258065, + "std_depth": 0.8020748166140171, + "num_tasks_based_depth": { + "0": 100, + "1": 100, + "2": 48 + }, + "num_missing_resources": { + "0": 155, + "1": 66, + "2": 25, + "3": 2 + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/train_tasks/tasks_5_agents.json b/tasks/crafting_tasks/train_tasks/tasks_5_agents.json new file mode 100644 index 0000000..26c0bed --- /dev/null +++ b/tasks/crafting_tasks/train_tasks/tasks_5_agents.json @@ -0,0 +1,10201 @@ +{ + "multiagent_crafting_leather_chestplate_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an leather_chestplate", + "conversation": "Let's work together to craft an leather_chestplate.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 1 + }, + "4": { + "leather": 4 + } + }, + "agent_count": 5, + "target": "leather_chestplate", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "stick": 3 + }, + "1": { + "cobblestone": 3, + "string": 3 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1 + }, + "4": { + "cobblestone": 1 + } + }, + "agent_count": 5, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blast_furnace_0_with_plan_missing_furnace_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "smooth_stone": 3 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "furnace" + ] + }, + "multiagent_crafting_cyan_terracotta_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_terracotta", + "conversation": "Let's work together to craft an cyan_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 1, + "blue_dye": 1 + }, + "1": { + "terracotta": 4, + "green_dye": 1 + }, + "2": { + "terracotta": 1 + }, + "3": { + "terracotta": 1 + }, + "4": { + "terracotta": 1 + } + }, + "agent_count": 5, + "target": "cyan_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_stained_glass_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an magenta_stained_glass", + "conversation": "Let's work together to craft an magenta_stained_glass.", + "initial_inventory": { + "0": { + "glass": 4, + "magenta_dye": 1 + }, + "1": { + "glass": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 1 + }, + "4": { + "glass": 1 + } + }, + "agent_count": 5, + "target": "magenta_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_terracotta_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an purple_terracotta", + "conversation": "Let's work together to craft an purple_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 1, + "blue_dye": 1 + }, + "1": { + "terracotta": 1, + "red_dye": 1 + }, + "2": { + "terracotta": 1 + }, + "3": { + "terracotta": 4 + }, + "4": { + "terracotta": 1 + } + }, + "agent_count": 5, + "target": "purple_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mud_brick_wall_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an mud_brick_wall", + "conversation": "Let's work together to craft an mud_brick_wall.", + "initial_inventory": { + "0": { + "mud_bricks": 2 + }, + "1": { + "mud_bricks": 1 + }, + "2": { + "mud_bricks": 1 + }, + "3": { + "mud_bricks": 1 + }, + "4": { + "mud_bricks": 1 + } + }, + "agent_count": 5, + "target": "mud_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_green_banner_2_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an green_banner", + "conversation": "Let's work together to craft an green_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "oak_planks": 2 + }, + "1": { + "green_dye": 1, + "shears": 1 + }, + "2": { + "green_dye": 1 + }, + "3": { + "green_dye": 2 + }, + "4": { + "green_dye": 1 + } + }, + "agent_count": 5, + "target": "green_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_end_crystal_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an end_crystal", + "conversation": "Let's work together to craft an end_crystal.", + "initial_inventory": { + "0": { + "glass": 3, + "ender_eye": 1 + }, + "1": { + "glass": 1, + "ghast_tear": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 1 + }, + "4": { + "glass": 1 + } + }, + "agent_count": 5, + "target": "end_crystal", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_banner_2_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an magenta_banner", + "conversation": "Let's work together to craft an magenta_banner.", + "initial_inventory": { + "0": { + "magenta_dye": 1, + "oak_planks": 2 + }, + "1": { + "magenta_dye": 1, + "shears": 1 + }, + "2": { + "magenta_dye": 1 + }, + "3": { + "magenta_dye": 1 + }, + "4": { + "magenta_dye": 2 + } + }, + "agent_count": 5, + "target": "magenta_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_mud_brick_wall_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an mud_brick_wall", + "conversation": "Let's work together to craft an mud_brick_wall.", + "initial_inventory": { + "0": { + "mud_bricks": 2 + }, + "1": { + "mud_bricks": 1 + }, + "2": { + "mud_bricks": 1 + }, + "3": { + "mud_bricks": 1 + }, + "4": { + "mud_bricks": 1 + } + }, + "agent_count": 5, + "target": "mud_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_banner_4_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an magenta_banner", + "conversation": "Let's work together to craft an magenta_banner.", + "initial_inventory": { + "0": { + "magenta_dye": 1, + "oak_planks": 2 + }, + "1": { + "magenta_dye": 1, + "shears": 1 + }, + "2": { + "magenta_dye": 1 + }, + "3": { + "magenta_dye": 1 + }, + "4": { + "magenta_dye": 2 + } + }, + "agent_count": 5, + "target": "magenta_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_end_stone_brick_wall_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an end_stone_brick_wall", + "conversation": "Let's work together to craft an end_stone_brick_wall.", + "initial_inventory": { + "0": { + "end_stone_bricks": 1 + }, + "1": { + "end_stone_bricks": 1 + }, + "2": { + "end_stone_bricks": 1 + }, + "3": { + "end_stone_bricks": 2 + }, + "4": { + "end_stone_bricks": 1 + } + }, + "agent_count": 5, + "target": "end_stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_brick_wall_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an deepslate_brick_wall", + "conversation": "Let's work together to craft an deepslate_brick_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 4 + }, + "1": { + "polished_deepslate": 1 + }, + "2": { + "polished_deepslate": 1 + }, + "3": { + "polished_deepslate": 1 + }, + "4": { + "polished_deepslate": 1 + } + }, + "agent_count": 5, + "target": "deepslate_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_map_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an map", + "conversation": "Let's work together to craft an map.", + "initial_inventory": { + "0": { + "paper": 1, + "compass": 1 + }, + "1": { + "paper": 1 + }, + "2": { + "paper": 4 + }, + "3": { + "paper": 1 + }, + "4": { + "paper": 1 + } + }, + "agent_count": 5, + "target": "map", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_yellow_banner_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an yellow_banner", + "conversation": "Let's work together to craft an yellow_banner.", + "initial_inventory": { + "0": { + "yellow_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "yellow_dye": 2, + "black_wool": 1 + }, + "2": { + "yellow_dye": 1, + "black_wool": 2 + }, + "3": { + "yellow_dye": 1, + "black_wool": 1 + }, + "4": { + "yellow_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "yellow_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_end_crystal_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an end_crystal", + "conversation": "Let's work together to craft an end_crystal.", + "initial_inventory": { + "0": { + "glass": 3, + "ender_eye": 1 + }, + "1": { + "glass": 1, + "ghast_tear": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 1 + }, + "4": { + "glass": 1 + } + }, + "agent_count": 5, + "target": "end_crystal", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_gray_banner_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_gray_banner", + "conversation": "Let's work together to craft an light_gray_banner.", + "initial_inventory": { + "0": { + "light_gray_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "light_gray_dye": 1, + "black_wool": 2 + }, + "2": { + "light_gray_dye": 1, + "black_wool": 1 + }, + "3": { + "light_gray_dye": 1, + "black_wool": 1 + }, + "4": { + "light_gray_dye": 2, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "light_gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_brick_wall_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an brick_wall", + "conversation": "Let's work together to craft an brick_wall.", + "initial_inventory": { + "0": { + "bricks": 1 + }, + "1": { + "bricks": 1 + }, + "2": { + "bricks": 1 + }, + "3": { + "bricks": 1 + }, + "4": { + "bricks": 2 + } + }, + "agent_count": 5, + "target": "brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_yellow_banner_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an yellow_banner", + "conversation": "Let's work together to craft an yellow_banner.", + "initial_inventory": { + "0": { + "yellow_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "yellow_dye": 2, + "black_wool": 1 + }, + "2": { + "yellow_dye": 1, + "black_wool": 2 + }, + "3": { + "yellow_dye": 1, + "black_wool": 1 + }, + "4": { + "yellow_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "yellow_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_netherite_block_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an netherite_block", + "conversation": "Let's work together to craft an netherite_block.", + "initial_inventory": { + "0": { + "netherite_ingot": 1 + }, + "1": { + "netherite_ingot": 5 + }, + "2": { + "netherite_ingot": 1 + }, + "3": { + "netherite_ingot": 1 + }, + "4": { + "netherite_ingot": 1 + } + }, + "agent_count": 5, + "target": "netherite_block", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_blackstone_brick_wall_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an polished_blackstone_brick_wall", + "conversation": "Let's work together to craft an polished_blackstone_brick_wall.", + "initial_inventory": { + "0": { + "polished_blackstone": 4 + }, + "1": { + "polished_blackstone": 1 + }, + "2": { + "polished_blackstone": 1 + }, + "3": { + "polished_blackstone": 1 + }, + "4": { + "polished_blackstone": 1 + } + }, + "agent_count": 5, + "target": "polished_blackstone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_nether_brick_wall_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an nether_brick_wall", + "conversation": "Let's work together to craft an nether_brick_wall.", + "initial_inventory": { + "0": { + "nether_bricks": 1 + }, + "1": { + "nether_bricks": 1 + }, + "2": { + "nether_bricks": 1 + }, + "3": { + "nether_bricks": 2 + }, + "4": { + "nether_bricks": 1 + } + }, + "agent_count": 5, + "target": "nether_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_gray_banner_0_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_gray_banner", + "conversation": "Let's work together to craft an light_gray_banner.", + "initial_inventory": { + "0": { + "light_gray_dye": 1, + "oak_planks": 2 + }, + "1": { + "light_gray_dye": 1, + "shears": 1 + }, + "2": { + "light_gray_dye": 1 + }, + "3": { + "light_gray_dye": 2 + }, + "4": { + "light_gray_dye": 1 + } + }, + "agent_count": 5, + "target": "light_gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_red_sandstone_wall_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_sandstone_wall", + "conversation": "Let's work together to craft an red_sandstone_wall.", + "initial_inventory": { + "0": { + "red_sandstone": 1 + }, + "1": { + "red_sandstone": 1 + }, + "2": { + "red_sandstone": 2 + }, + "3": { + "red_sandstone": 1 + }, + "4": { + "red_sandstone": 1 + } + }, + "agent_count": 5, + "target": "red_sandstone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "deepslate_bricks": 1 + }, + "1": { + "deepslate_bricks": 1 + }, + "2": { + "deepslate_bricks": 4 + }, + "3": { + "deepslate_bricks": 1 + }, + "4": { + "deepslate_bricks": 1 + } + }, + "agent_count": 5, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_granite_wall_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an granite_wall", + "conversation": "Let's work together to craft an granite_wall.", + "initial_inventory": { + "0": { + "granite": 1 + }, + "1": { + "granite": 2 + }, + "2": { + "granite": 1 + }, + "3": { + "granite": 1 + }, + "4": { + "granite": 1 + } + }, + "agent_count": 5, + "target": "granite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mossy_stone_brick_wall_4_with_plan_missing_stone_bricks_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an mossy_stone_brick_wall", + "conversation": "Let's work together to craft an mossy_stone_brick_wall.", + "initial_inventory": { + "0": { + "moss_block": 2 + }, + "1": { + "moss_block": 1 + }, + "2": { + "moss_block": 1 + }, + "3": { + "moss_block": 1 + }, + "4": { + "moss_block": 1 + } + }, + "agent_count": 5, + "target": "mossy_stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "stone_bricks" + ] + }, + "multiagent_crafting_nether_brick_wall_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an nether_brick_wall", + "conversation": "Let's work together to craft an nether_brick_wall.", + "initial_inventory": { + "0": { + "nether_bricks": 1 + }, + "1": { + "nether_bricks": 1 + }, + "2": { + "nether_bricks": 1 + }, + "3": { + "nether_bricks": 2 + }, + "4": { + "nether_bricks": 1 + } + }, + "agent_count": 5, + "target": "nether_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_orange_banner_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an orange_banner", + "conversation": "Let's work together to craft an orange_banner.", + "initial_inventory": { + "0": { + "orange_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "orange_dye": 1, + "black_wool": 1 + }, + "2": { + "orange_dye": 1, + "black_wool": 1 + }, + "3": { + "orange_dye": 2, + "black_wool": 2 + }, + "4": { + "orange_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "orange_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_stone_brick_wall_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an stone_brick_wall", + "conversation": "Let's work together to craft an stone_brick_wall.", + "initial_inventory": { + "0": { + "stone_bricks": 1 + }, + "1": { + "stone_bricks": 2 + }, + "2": { + "stone_bricks": 1 + }, + "3": { + "stone_bricks": 1 + }, + "4": { + "stone_bricks": 1 + } + }, + "agent_count": 5, + "target": "stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_banner_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an magenta_banner", + "conversation": "Let's work together to craft an magenta_banner.", + "initial_inventory": { + "0": { + "magenta_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "magenta_dye": 1, + "black_wool": 1 + }, + "2": { + "magenta_dye": 1, + "black_wool": 1 + }, + "3": { + "magenta_dye": 1, + "black_wool": 1 + }, + "4": { + "magenta_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "magenta_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_chestplate_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an leather_chestplate", + "conversation": "Let's work together to craft an leather_chestplate.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 1 + }, + "4": { + "leather": 4 + } + }, + "agent_count": 5, + "target": "leather_chestplate", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_banner_1_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an magenta_banner", + "conversation": "Let's work together to craft an magenta_banner.", + "initial_inventory": { + "0": { + "magenta_dye": 1, + "oak_planks": 2 + }, + "1": { + "magenta_dye": 1, + "shears": 1 + }, + "2": { + "magenta_dye": 1 + }, + "3": { + "magenta_dye": 1 + }, + "4": { + "magenta_dye": 2 + } + }, + "agent_count": 5, + "target": "magenta_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_polished_blackstone_wall_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an polished_blackstone_wall", + "conversation": "Let's work together to craft an polished_blackstone_wall.", + "initial_inventory": { + "0": { + "polished_blackstone": 1 + }, + "1": { + "polished_blackstone": 1 + }, + "2": { + "polished_blackstone": 1 + }, + "3": { + "polished_blackstone": 2 + }, + "4": { + "polished_blackstone": 1 + } + }, + "agent_count": 5, + "target": "polished_blackstone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_blue_banner_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_blue_banner", + "conversation": "Let's work together to craft an light_blue_banner.", + "initial_inventory": { + "0": { + "light_blue_dye": 1, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "light_blue_dye": 2, + "black_wool": 1 + }, + "2": { + "light_blue_dye": 1, + "black_wool": 1 + }, + "3": { + "light_blue_dye": 1, + "black_wool": 1 + }, + "4": { + "light_blue_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "light_blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_recovery_compass_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an recovery_compass", + "conversation": "Let's work together to craft an recovery_compass.", + "initial_inventory": { + "0": { + "echo_shard": 1, + "compass": 1 + }, + "1": { + "echo_shard": 1 + }, + "2": { + "echo_shard": 1 + }, + "3": { + "echo_shard": 1 + }, + "4": { + "echo_shard": 4 + } + }, + "agent_count": 5, + "target": "recovery_compass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_brick_wall_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an deepslate_brick_wall", + "conversation": "Let's work together to craft an deepslate_brick_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 4 + }, + "1": { + "polished_deepslate": 1 + }, + "2": { + "polished_deepslate": 1 + }, + "3": { + "polished_deepslate": 1 + }, + "4": { + "polished_deepslate": 1 + } + }, + "agent_count": 5, + "target": "deepslate_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_stone_brick_wall_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an stone_brick_wall", + "conversation": "Let's work together to craft an stone_brick_wall.", + "initial_inventory": { + "0": { + "stone_bricks": 1 + }, + "1": { + "stone_bricks": 2 + }, + "2": { + "stone_bricks": 1 + }, + "3": { + "stone_bricks": 1 + }, + "4": { + "stone_bricks": 1 + } + }, + "agent_count": 5, + "target": "stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_granite_wall_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an granite_wall", + "conversation": "Let's work together to craft an granite_wall.", + "initial_inventory": { + "0": { + "diorite": 1, + "quartz": 1 + }, + "1": { + "diorite": 2, + "quartz": 1 + }, + "2": { + "diorite": 1, + "quartz": 2 + }, + "3": { + "diorite": 1, + "quartz": 1 + }, + "4": { + "diorite": 1, + "quartz": 1 + } + }, + "agent_count": 5, + "target": "granite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_prismarine_wall_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an prismarine_wall", + "conversation": "Let's work together to craft an prismarine_wall.", + "initial_inventory": { + "0": { + "prismarine": 1 + }, + "1": { + "prismarine": 1 + }, + "2": { + "prismarine": 2 + }, + "3": { + "prismarine": 1 + }, + "4": { + "prismarine": 1 + } + }, + "agent_count": 5, + "target": "prismarine_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_gray_banner_3_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_gray_banner", + "conversation": "Let's work together to craft an light_gray_banner.", + "initial_inventory": { + "0": { + "light_gray_dye": 1, + "oak_planks": 2 + }, + "1": { + "light_gray_dye": 1, + "shears": 1 + }, + "2": { + "light_gray_dye": 1 + }, + "3": { + "light_gray_dye": 2 + }, + "4": { + "light_gray_dye": 1 + } + }, + "agent_count": 5, + "target": "light_gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_blast_furnace_3_with_plan_missing_furnace_smooth_stone_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "furnace", + "smooth_stone" + ] + }, + "multiagent_crafting_yellow_banner_3_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an yellow_banner", + "conversation": "Let's work together to craft an yellow_banner.", + "initial_inventory": { + "0": { + "yellow_dye": 1, + "oak_planks": 2 + }, + "1": { + "yellow_dye": 1, + "shears": 1 + }, + "2": { + "yellow_dye": 2 + }, + "3": { + "yellow_dye": 1 + }, + "4": { + "yellow_dye": 1 + } + }, + "agent_count": 5, + "target": "yellow_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_red_nether_brick_wall_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_nether_brick_wall", + "conversation": "Let's work together to craft an red_nether_brick_wall.", + "initial_inventory": { + "0": { + "red_nether_bricks": 1 + }, + "1": { + "red_nether_bricks": 1 + }, + "2": { + "red_nether_bricks": 1 + }, + "3": { + "red_nether_bricks": 2 + }, + "4": { + "red_nether_bricks": 1 + } + }, + "agent_count": 5, + "target": "red_nether_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_blackstone_brick_wall_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an polished_blackstone_brick_wall", + "conversation": "Let's work together to craft an polished_blackstone_brick_wall.", + "initial_inventory": { + "0": { + "polished_blackstone": 4 + }, + "1": { + "polished_blackstone": 1 + }, + "2": { + "polished_blackstone": 1 + }, + "3": { + "polished_blackstone": 1 + }, + "4": { + "polished_blackstone": 1 + } + }, + "agent_count": 5, + "target": "polished_blackstone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lantern_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an lantern", + "conversation": "Let's work together to craft an lantern.", + "initial_inventory": { + "0": { + "iron_nugget": 4, + "torch": 1 + }, + "1": { + "iron_nugget": 1 + }, + "2": { + "iron_nugget": 1 + }, + "3": { + "iron_nugget": 1 + }, + "4": { + "iron_nugget": 1 + } + }, + "agent_count": 5, + "target": "lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mossy_stone_brick_wall_3_with_plan_missing_stone_bricks_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an mossy_stone_brick_wall", + "conversation": "Let's work together to craft an mossy_stone_brick_wall.", + "initial_inventory": { + "0": { + "moss_block": 2 + }, + "1": { + "moss_block": 1 + }, + "2": { + "moss_block": 1 + }, + "3": { + "moss_block": 1 + }, + "4": { + "moss_block": 1 + } + }, + "agent_count": 5, + "target": "mossy_stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "stone_bricks" + ] + }, + "multiagent_crafting_blast_furnace_1_with_plan_missing_furnace_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "smooth_stone": 3 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "furnace" + ] + }, + "multiagent_crafting_polished_blackstone_brick_wall_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an polished_blackstone_brick_wall", + "conversation": "Let's work together to craft an polished_blackstone_brick_wall.", + "initial_inventory": { + "0": { + "polished_blackstone": 4 + }, + "1": { + "polished_blackstone": 1 + }, + "2": { + "polished_blackstone": 1 + }, + "3": { + "polished_blackstone": 1 + }, + "4": { + "polished_blackstone": 1 + } + }, + "agent_count": 5, + "target": "polished_blackstone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_end_stone_brick_wall_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an end_stone_brick_wall", + "conversation": "Let's work together to craft an end_stone_brick_wall.", + "initial_inventory": { + "0": { + "end_stone_bricks": 1 + }, + "1": { + "end_stone_bricks": 1 + }, + "2": { + "end_stone_bricks": 1 + }, + "3": { + "end_stone_bricks": 2 + }, + "4": { + "end_stone_bricks": 1 + } + }, + "agent_count": 5, + "target": "end_stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_yellow_banner_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an yellow_banner", + "conversation": "Let's work together to craft an yellow_banner.", + "initial_inventory": { + "0": { + "yellow_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "yellow_dye": 2, + "black_wool": 1 + }, + "2": { + "yellow_dye": 1, + "black_wool": 2 + }, + "3": { + "yellow_dye": 1, + "black_wool": 1 + }, + "4": { + "yellow_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "yellow_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_nether_brick_wall_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_nether_brick_wall", + "conversation": "Let's work together to craft an red_nether_brick_wall.", + "initial_inventory": { + "0": { + "red_nether_bricks": 1 + }, + "1": { + "red_nether_bricks": 1 + }, + "2": { + "red_nether_bricks": 1 + }, + "3": { + "red_nether_bricks": 2 + }, + "4": { + "red_nether_bricks": 1 + } + }, + "agent_count": 5, + "target": "red_nether_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_terracotta_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_terracotta", + "conversation": "Let's work together to craft an cyan_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 1, + "blue_dye": 1 + }, + "1": { + "terracotta": 4, + "green_dye": 1 + }, + "2": { + "terracotta": 1 + }, + "3": { + "terracotta": 1 + }, + "4": { + "terracotta": 1 + } + }, + "agent_count": 5, + "target": "cyan_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_recovery_compass_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an recovery_compass", + "conversation": "Let's work together to craft an recovery_compass.", + "initial_inventory": { + "0": { + "echo_shard": 1, + "compass": 1 + }, + "1": { + "echo_shard": 1 + }, + "2": { + "echo_shard": 1 + }, + "3": { + "echo_shard": 1 + }, + "4": { + "echo_shard": 4 + } + }, + "agent_count": 5, + "target": "recovery_compass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mossy_stone_brick_wall_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an mossy_stone_brick_wall", + "conversation": "Let's work together to craft an mossy_stone_brick_wall.", + "initial_inventory": { + "0": { + "stone_bricks": 1, + "moss_block": 1 + }, + "1": { + "stone_bricks": 1, + "moss_block": 2 + }, + "2": { + "stone_bricks": 1, + "moss_block": 1 + }, + "3": { + "stone_bricks": 2, + "moss_block": 1 + }, + "4": { + "stone_bricks": 1, + "moss_block": 1 + } + }, + "agent_count": 5, + "target": "mossy_stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bamboo_raft_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an bamboo_raft", + "conversation": "Let's work together to craft an bamboo_raft.", + "initial_inventory": { + "0": { + "bamboo_planks": 1 + }, + "1": { + "bamboo_planks": 1 + }, + "2": { + "bamboo_planks": 1 + }, + "3": { + "bamboo_planks": 1 + }, + "4": { + "bamboo_planks": 1 + } + }, + "agent_count": 5, + "target": "bamboo_raft", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_banner_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an magenta_banner", + "conversation": "Let's work together to craft an magenta_banner.", + "initial_inventory": { + "0": { + "magenta_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "magenta_dye": 1, + "black_wool": 1 + }, + "2": { + "magenta_dye": 1, + "black_wool": 1 + }, + "3": { + "magenta_dye": 1, + "black_wool": 1 + }, + "4": { + "magenta_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "magenta_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mossy_cobblestone_wall_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an mossy_cobblestone_wall", + "conversation": "Let's work together to craft an mossy_cobblestone_wall.", + "initial_inventory": { + "0": { + "mossy_cobblestone": 1 + }, + "1": { + "mossy_cobblestone": 1 + }, + "2": { + "mossy_cobblestone": 2 + }, + "3": { + "mossy_cobblestone": 1 + }, + "4": { + "mossy_cobblestone": 1 + } + }, + "agent_count": 5, + "target": "mossy_cobblestone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mossy_stone_brick_wall_2_with_plan_missing_stone_bricks_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an mossy_stone_brick_wall", + "conversation": "Let's work together to craft an mossy_stone_brick_wall.", + "initial_inventory": { + "0": { + "moss_block": 2 + }, + "1": { + "moss_block": 1 + }, + "2": { + "moss_block": 1 + }, + "3": { + "moss_block": 1 + }, + "4": { + "moss_block": 1 + } + }, + "agent_count": 5, + "target": "mossy_stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "stone_bricks" + ] + }, + "multiagent_crafting_leather_helmet_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an leather_helmet", + "conversation": "Let's work together to craft an leather_helmet.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 1 + }, + "4": { + "leather": 1 + } + }, + "agent_count": 5, + "target": "leather_helmet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_yellow_banner_0_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an yellow_banner", + "conversation": "Let's work together to craft an yellow_banner.", + "initial_inventory": { + "0": { + "yellow_dye": 1, + "oak_planks": 2 + }, + "1": { + "yellow_dye": 1, + "shears": 1 + }, + "2": { + "yellow_dye": 2 + }, + "3": { + "yellow_dye": 1 + }, + "4": { + "yellow_dye": 1 + } + }, + "agent_count": 5, + "target": "yellow_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_nether_brick_wall_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an nether_brick_wall", + "conversation": "Let's work together to craft an nether_brick_wall.", + "initial_inventory": { + "0": { + "nether_bricks": 1 + }, + "1": { + "nether_bricks": 1 + }, + "2": { + "nether_bricks": 1 + }, + "3": { + "nether_bricks": 2 + }, + "4": { + "nether_bricks": 1 + } + }, + "agent_count": 5, + "target": "nether_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_rail_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an rail", + "conversation": "Let's work together to craft an rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_4_with_plan__depth_0_num_agents_5": { + "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": 1, + "stick": 1 + }, + "1": { + "purple_wool": 1 + }, + "2": { + "purple_wool": 1 + }, + "3": { + "purple_wool": 1 + }, + "4": { + "purple_wool": 2 + } + }, + "agent_count": 5, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_gray_banner_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_gray_banner", + "conversation": "Let's work together to craft an light_gray_banner.", + "initial_inventory": { + "0": { + "light_gray_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "light_gray_dye": 1, + "black_wool": 2 + }, + "2": { + "light_gray_dye": 1, + "black_wool": 1 + }, + "3": { + "light_gray_dye": 1, + "black_wool": 1 + }, + "4": { + "light_gray_dye": 2, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "light_gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blast_furnace_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "furnace": 1 + }, + "1": { + "iron_ingot": 1, + "smooth_stone": 3 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_terracotta_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an purple_terracotta", + "conversation": "Let's work together to craft an purple_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 1, + "blue_dye": 1 + }, + "1": { + "terracotta": 1, + "red_dye": 1 + }, + "2": { + "terracotta": 1 + }, + "3": { + "terracotta": 4 + }, + "4": { + "terracotta": 1 + } + }, + "agent_count": 5, + "target": "purple_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_red_sandstone_wall_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_sandstone_wall", + "conversation": "Let's work together to craft an red_sandstone_wall.", + "initial_inventory": { + "0": { + "red_sandstone": 1 + }, + "1": { + "red_sandstone": 1 + }, + "2": { + "red_sandstone": 2 + }, + "3": { + "red_sandstone": 1 + }, + "4": { + "red_sandstone": 1 + } + }, + "agent_count": 5, + "target": "red_sandstone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_granite_wall_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an granite_wall", + "conversation": "Let's work together to craft an granite_wall.", + "initial_inventory": { + "0": { + "diorite": 1, + "quartz": 1 + }, + "1": { + "diorite": 2, + "quartz": 1 + }, + "2": { + "diorite": 1, + "quartz": 2 + }, + "3": { + "diorite": 1, + "quartz": 1 + }, + "4": { + "diorite": 1, + "quartz": 1 + } + }, + "agent_count": 5, + "target": "granite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_diorite_wall_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an diorite_wall", + "conversation": "Let's work together to craft an diorite_wall.", + "initial_inventory": { + "0": { + "diorite": 2 + }, + "1": { + "diorite": 1 + }, + "2": { + "diorite": 1 + }, + "3": { + "diorite": 1 + }, + "4": { + "diorite": 1 + } + }, + "agent_count": 5, + "target": "diorite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mossy_stone_brick_wall_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an mossy_stone_brick_wall", + "conversation": "Let's work together to craft an mossy_stone_brick_wall.", + "initial_inventory": { + "0": { + "stone_bricks": 1, + "moss_block": 1 + }, + "1": { + "stone_bricks": 1, + "moss_block": 2 + }, + "2": { + "stone_bricks": 1, + "moss_block": 1 + }, + "3": { + "stone_bricks": 2, + "moss_block": 1 + }, + "4": { + "stone_bricks": 1, + "moss_block": 1 + } + }, + "agent_count": 5, + "target": "mossy_stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lantern_4_with_plan_missing_torch_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an lantern", + "conversation": "Let's work together to craft an lantern.", + "initial_inventory": { + "0": { + "iron_nugget": 1 + }, + "1": { + "iron_nugget": 1 + }, + "2": { + "iron_nugget": 4 + }, + "3": { + "iron_nugget": 1 + }, + "4": { + "iron_nugget": 1 + } + }, + "agent_count": 5, + "target": "lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "torch" + ] + }, + "multiagent_crafting_orange_banner_3_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an orange_banner", + "conversation": "Let's work together to craft an orange_banner.", + "initial_inventory": { + "0": { + "orange_dye": 1, + "oak_planks": 2 + }, + "1": { + "orange_dye": 1, + "shears": 1 + }, + "2": { + "orange_dye": 1 + }, + "3": { + "orange_dye": 1 + }, + "4": { + "orange_dye": 2 + } + }, + "agent_count": 5, + "target": "orange_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_mossy_cobblestone_wall_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an mossy_cobblestone_wall", + "conversation": "Let's work together to craft an mossy_cobblestone_wall.", + "initial_inventory": { + "0": { + "mossy_cobblestone": 1 + }, + "1": { + "mossy_cobblestone": 1 + }, + "2": { + "mossy_cobblestone": 2 + }, + "3": { + "mossy_cobblestone": 1 + }, + "4": { + "mossy_cobblestone": 1 + } + }, + "agent_count": 5, + "target": "mossy_cobblestone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mossy_stone_brick_wall_1_with_plan_missing_stone_bricks_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an mossy_stone_brick_wall", + "conversation": "Let's work together to craft an mossy_stone_brick_wall.", + "initial_inventory": { + "0": { + "moss_block": 2 + }, + "1": { + "moss_block": 1 + }, + "2": { + "moss_block": 1 + }, + "3": { + "moss_block": 1 + }, + "4": { + "moss_block": 1 + } + }, + "agent_count": 5, + "target": "mossy_stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "stone_bricks" + ] + }, + "multiagent_crafting_nether_brick_wall_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an nether_brick_wall", + "conversation": "Let's work together to craft an nether_brick_wall.", + "initial_inventory": { + "0": { + "nether_bricks": 1 + }, + "1": { + "nether_bricks": 1 + }, + "2": { + "nether_bricks": 1 + }, + "3": { + "nether_bricks": 2 + }, + "4": { + "nether_bricks": 1 + } + }, + "agent_count": 5, + "target": "nether_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_orange_banner_2_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an orange_banner", + "conversation": "Let's work together to craft an orange_banner.", + "initial_inventory": { + "0": { + "orange_dye": 1, + "oak_planks": 2 + }, + "1": { + "orange_dye": 1, + "shears": 1 + }, + "2": { + "orange_dye": 1 + }, + "3": { + "orange_dye": 1 + }, + "4": { + "orange_dye": 2 + } + }, + "agent_count": 5, + "target": "orange_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_sandstone_wall_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an sandstone_wall", + "conversation": "Let's work together to craft an sandstone_wall.", + "initial_inventory": { + "0": { + "sandstone": 1 + }, + "1": { + "sandstone": 1 + }, + "2": { + "sandstone": 1 + }, + "3": { + "sandstone": 1 + }, + "4": { + "sandstone": 2 + } + }, + "agent_count": 5, + "target": "sandstone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_terracotta_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_terracotta", + "conversation": "Let's work together to craft an cyan_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 1, + "blue_dye": 1 + }, + "1": { + "terracotta": 4, + "green_dye": 1 + }, + "2": { + "terracotta": 1 + }, + "3": { + "terracotta": 1 + }, + "4": { + "terracotta": 1 + } + }, + "agent_count": 5, + "target": "cyan_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_golden_carrot_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an golden_carrot", + "conversation": "Let's work together to craft an golden_carrot.", + "initial_inventory": { + "0": { + "gold_nugget": 4, + "carrot": 1 + }, + "1": { + "gold_nugget": 1 + }, + "2": { + "gold_nugget": 1 + }, + "3": { + "gold_nugget": 1 + }, + "4": { + "gold_nugget": 1 + } + }, + "agent_count": 5, + "target": "golden_carrot", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_0_with_plan_missing_redstone_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "stick": 3 + }, + "1": { + "cobblestone": 3, + "string": 3 + }, + "2": { + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "3": { + "cobblestone": 1 + }, + "4": { + "cobblestone": 1 + } + }, + "agent_count": 5, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_light_gray_banner_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_gray_banner", + "conversation": "Let's work together to craft an light_gray_banner.", + "initial_inventory": { + "0": { + "light_gray_wool": 1, + "stick": 1 + }, + "1": { + "light_gray_wool": 1 + }, + "2": { + "light_gray_wool": 1 + }, + "3": { + "light_gray_wool": 1 + }, + "4": { + "light_gray_wool": 2 + } + }, + "agent_count": 5, + "target": "light_gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_gray_banner_2_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_gray_banner", + "conversation": "Let's work together to craft an light_gray_banner.", + "initial_inventory": { + "0": { + "light_gray_dye": 1, + "oak_planks": 2 + }, + "1": { + "light_gray_dye": 1, + "shears": 1 + }, + "2": { + "light_gray_dye": 1 + }, + "3": { + "light_gray_dye": 2 + }, + "4": { + "light_gray_dye": 1 + } + }, + "agent_count": 5, + "target": "light_gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_bamboo_raft_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an bamboo_raft", + "conversation": "Let's work together to craft an bamboo_raft.", + "initial_inventory": { + "0": { + "bamboo_planks": 1 + }, + "1": { + "bamboo_planks": 1 + }, + "2": { + "bamboo_planks": 1 + }, + "3": { + "bamboo_planks": 1 + }, + "4": { + "bamboo_planks": 1 + } + }, + "agent_count": 5, + "target": "bamboo_raft", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_blue_banner_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_blue_banner", + "conversation": "Let's work together to craft an light_blue_banner.", + "initial_inventory": { + "0": { + "light_blue_dye": 1, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "light_blue_dye": 2, + "black_wool": 1 + }, + "2": { + "light_blue_dye": 1, + "black_wool": 1 + }, + "3": { + "light_blue_dye": 1, + "black_wool": 1 + }, + "4": { + "light_blue_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "light_blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_brick_wall_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an deepslate_brick_wall", + "conversation": "Let's work together to craft an deepslate_brick_wall.", + "initial_inventory": { + "0": { + "deepslate_bricks": 1 + }, + "1": { + "deepslate_bricks": 1 + }, + "2": { + "deepslate_bricks": 1 + }, + "3": { + "deepslate_bricks": 2 + }, + "4": { + "deepslate_bricks": 1 + } + }, + "agent_count": 5, + "target": "deepslate_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_stained_glass_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an purple_stained_glass", + "conversation": "Let's work together to craft an purple_stained_glass.", + "initial_inventory": { + "0": { + "glass": 4, + "blue_dye": 1 + }, + "1": { + "glass": 1, + "red_dye": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 1 + }, + "4": { + "glass": 1 + } + }, + "agent_count": 5, + "target": "purple_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_deepslate_wall_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an polished_deepslate_wall", + "conversation": "Let's work together to craft an polished_deepslate_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 2 + }, + "1": { + "polished_deepslate": 1 + }, + "2": { + "polished_deepslate": 1 + }, + "3": { + "polished_deepslate": 1 + }, + "4": { + "polished_deepslate": 1 + } + }, + "agent_count": 5, + "target": "polished_deepslate_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_gray_banner_1_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_gray_banner", + "conversation": "Let's work together to craft an light_gray_banner.", + "initial_inventory": { + "0": { + "light_gray_dye": 1, + "oak_planks": 2 + }, + "1": { + "light_gray_dye": 1, + "shears": 1 + }, + "2": { + "light_gray_dye": 1 + }, + "3": { + "light_gray_dye": 2 + }, + "4": { + "light_gray_dye": 1 + } + }, + "agent_count": 5, + "target": "light_gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_recovery_compass_4_with_plan_missing_compass_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an recovery_compass", + "conversation": "Let's work together to craft an recovery_compass.", + "initial_inventory": { + "0": { + "echo_shard": 1 + }, + "1": { + "echo_shard": 1 + }, + "2": { + "echo_shard": 4 + }, + "3": { + "echo_shard": 1 + }, + "4": { + "echo_shard": 1 + } + }, + "agent_count": 5, + "target": "recovery_compass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "compass" + ] + }, + "multiagent_crafting_magenta_banner_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an magenta_banner", + "conversation": "Let's work together to craft an magenta_banner.", + "initial_inventory": { + "0": { + "magenta_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "magenta_dye": 1, + "black_wool": 1 + }, + "2": { + "magenta_dye": 1, + "black_wool": 1 + }, + "3": { + "magenta_dye": 1, + "black_wool": 1 + }, + "4": { + "magenta_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "magenta_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_detector_rail_3_with_plan_missing_stone_pressure_plate_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "redstone": 1 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "stone_pressure_plate" + ] + }, + "multiagent_crafting_orange_banner_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an orange_banner", + "conversation": "Let's work together to craft an orange_banner.", + "initial_inventory": { + "0": { + "orange_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "orange_dye": 1, + "black_wool": 1 + }, + "2": { + "orange_dye": 1, + "black_wool": 1 + }, + "3": { + "orange_dye": 2, + "black_wool": 2 + }, + "4": { + "orange_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "orange_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_respawn_anchor_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an respawn_anchor", + "conversation": "Let's work together to craft an respawn_anchor.", + "initial_inventory": { + "0": { + "crying_obsidian": 1, + "glowstone": 3 + }, + "1": { + "crying_obsidian": 1 + }, + "2": { + "crying_obsidian": 1 + }, + "3": { + "crying_obsidian": 2 + }, + "4": { + "crying_obsidian": 1 + } + }, + "agent_count": 5, + "target": "respawn_anchor", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_terracotta_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an purple_terracotta", + "conversation": "Let's work together to craft an purple_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 1, + "blue_dye": 1 + }, + "1": { + "terracotta": 1, + "red_dye": 1 + }, + "2": { + "terracotta": 1 + }, + "3": { + "terracotta": 4 + }, + "4": { + "terracotta": 1 + } + }, + "agent_count": 5, + "target": "purple_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_blue_banner_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_blue_banner", + "conversation": "Let's work together to craft an light_blue_banner.", + "initial_inventory": { + "0": { + "light_blue_wool": 1, + "stick": 1 + }, + "1": { + "light_blue_wool": 2 + }, + "2": { + "light_blue_wool": 1 + }, + "3": { + "light_blue_wool": 1 + }, + "4": { + "light_blue_wool": 1 + } + }, + "agent_count": 5, + "target": "light_blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_blue_banner_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_blue_banner", + "conversation": "Let's work together to craft an light_blue_banner.", + "initial_inventory": { + "0": { + "light_blue_dye": 1, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "light_blue_dye": 2, + "black_wool": 1 + }, + "2": { + "light_blue_dye": 1, + "black_wool": 1 + }, + "3": { + "light_blue_dye": 1, + "black_wool": 1 + }, + "4": { + "light_blue_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "light_blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lantern_3_with_plan_missing_torch_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an lantern", + "conversation": "Let's work together to craft an lantern.", + "initial_inventory": { + "0": { + "iron_nugget": 1 + }, + "1": { + "iron_nugget": 1 + }, + "2": { + "iron_nugget": 4 + }, + "3": { + "iron_nugget": 1 + }, + "4": { + "iron_nugget": 1 + } + }, + "agent_count": 5, + "target": "lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "torch" + ] + }, + "multiagent_crafting_rail_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an rail", + "conversation": "Let's work together to craft an rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_helmet_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an leather_helmet", + "conversation": "Let's work together to craft an leather_helmet.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 1 + }, + "4": { + "leather": 1 + } + }, + "agent_count": 5, + "target": "leather_helmet", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_3_with_plan_missing_redstone_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "stick": 3 + }, + "1": { + "cobblestone": 3, + "string": 3 + }, + "2": { + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "3": { + "cobblestone": 1 + }, + "4": { + "cobblestone": 1 + } + }, + "agent_count": 5, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_activator_rail_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "stick": 2 + }, + "1": { + "iron_ingot": 1, + "redstone_torch": 1 + }, + "2": { + "iron_ingot": 2 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_banner_0_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an magenta_banner", + "conversation": "Let's work together to craft an magenta_banner.", + "initial_inventory": { + "0": { + "magenta_dye": 1, + "oak_planks": 2 + }, + "1": { + "magenta_dye": 1, + "shears": 1 + }, + "2": { + "magenta_dye": 1 + }, + "3": { + "magenta_dye": 1 + }, + "4": { + "magenta_dye": 2 + } + }, + "agent_count": 5, + "target": "magenta_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_magenta_stained_glass_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an magenta_stained_glass", + "conversation": "Let's work together to craft an magenta_stained_glass.", + "initial_inventory": { + "0": { + "glass": 4, + "magenta_dye": 1 + }, + "1": { + "glass": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 1 + }, + "4": { + "glass": 1 + } + }, + "agent_count": 5, + "target": "magenta_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_cyan_terracotta_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_terracotta", + "conversation": "Let's work together to craft an cyan_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 1, + "blue_dye": 1 + }, + "1": { + "terracotta": 4, + "green_dye": 1 + }, + "2": { + "terracotta": 1 + }, + "3": { + "terracotta": 1 + }, + "4": { + "terracotta": 1 + } + }, + "agent_count": 5, + "target": "cyan_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_bone_block_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an bone_block", + "conversation": "Let's work together to craft an bone_block.", + "initial_inventory": { + "0": { + "bone_meal": 1 + }, + "1": { + "bone_meal": 1 + }, + "2": { + "bone_meal": 1 + }, + "3": { + "bone_meal": 1 + }, + "4": { + "bone_meal": 5 + } + }, + "agent_count": 5, + "target": "bone_block", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_terracotta_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an purple_terracotta", + "conversation": "Let's work together to craft an purple_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 1, + "blue_dye": 1 + }, + "1": { + "terracotta": 1, + "red_dye": 1 + }, + "2": { + "terracotta": 1 + }, + "3": { + "terracotta": 4 + }, + "4": { + "terracotta": 1 + } + }, + "agent_count": 5, + "target": "purple_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_map_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an map", + "conversation": "Let's work together to craft an map.", + "initial_inventory": { + "0": { + "paper": 1, + "compass": 1 + }, + "1": { + "paper": 1 + }, + "2": { + "paper": 4 + }, + "3": { + "paper": 1 + }, + "4": { + "paper": 1 + } + }, + "agent_count": 5, + "target": "map", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_gray_banner_4_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_gray_banner", + "conversation": "Let's work together to craft an light_gray_banner.", + "initial_inventory": { + "0": { + "light_gray_dye": 1, + "oak_planks": 2 + }, + "1": { + "light_gray_dye": 1, + "shears": 1 + }, + "2": { + "light_gray_dye": 1 + }, + "3": { + "light_gray_dye": 2 + }, + "4": { + "light_gray_dye": 1 + } + }, + "agent_count": 5, + "target": "light_gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_bamboo_raft_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an bamboo_raft", + "conversation": "Let's work together to craft an bamboo_raft.", + "initial_inventory": { + "0": { + "bamboo_planks": 1 + }, + "1": { + "bamboo_planks": 1 + }, + "2": { + "bamboo_planks": 1 + }, + "3": { + "bamboo_planks": 1 + }, + "4": { + "bamboo_planks": 1 + } + }, + "agent_count": 5, + "target": "bamboo_raft", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_4_with_plan_missing_redstone_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "stick": 3 + }, + "1": { + "cobblestone": 3, + "string": 3 + }, + "2": { + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "3": { + "cobblestone": 1 + }, + "4": { + "cobblestone": 1 + } + }, + "agent_count": 5, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_magenta_terracotta_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an magenta_terracotta", + "conversation": "Let's work together to craft an magenta_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 1, + "magenta_dye": 1 + }, + "1": { + "terracotta": 1 + }, + "2": { + "terracotta": 1 + }, + "3": { + "terracotta": 1 + }, + "4": { + "terracotta": 4 + } + }, + "agent_count": 5, + "target": "magenta_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_yellow_banner_4_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an yellow_banner", + "conversation": "Let's work together to craft an yellow_banner.", + "initial_inventory": { + "0": { + "yellow_dye": 1, + "oak_planks": 2 + }, + "1": { + "yellow_dye": 1, + "shears": 1 + }, + "2": { + "yellow_dye": 2 + }, + "3": { + "yellow_dye": 1 + }, + "4": { + "yellow_dye": 1 + } + }, + "agent_count": 5, + "target": "yellow_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_sandstone_wall_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an sandstone_wall", + "conversation": "Let's work together to craft an sandstone_wall.", + "initial_inventory": { + "0": { + "sandstone": 1 + }, + "1": { + "sandstone": 1 + }, + "2": { + "sandstone": 1 + }, + "3": { + "sandstone": 1 + }, + "4": { + "sandstone": 2 + } + }, + "agent_count": 5, + "target": "sandstone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_rail_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an rail", + "conversation": "Let's work together to craft an rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_andesite_wall_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an andesite_wall", + "conversation": "Let's work together to craft an andesite_wall.", + "initial_inventory": { + "0": { + "andesite": 1 + }, + "1": { + "andesite": 1 + }, + "2": { + "andesite": 1 + }, + "3": { + "andesite": 1 + }, + "4": { + "andesite": 2 + } + }, + "agent_count": 5, + "target": "andesite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_blue_banner_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_blue_banner", + "conversation": "Let's work together to craft an light_blue_banner.", + "initial_inventory": { + "0": { + "light_blue_dye": 1, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "light_blue_dye": 2, + "black_wool": 1 + }, + "2": { + "light_blue_dye": 1, + "black_wool": 1 + }, + "3": { + "light_blue_dye": 1, + "black_wool": 1 + }, + "4": { + "light_blue_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "light_blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blast_furnace_2_with_plan_missing_furnace_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "smooth_stone": 3 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "furnace" + ] + }, + "multiagent_crafting_cyan_terracotta_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_terracotta", + "conversation": "Let's work together to craft an cyan_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 1, + "blue_dye": 1 + }, + "1": { + "terracotta": 4, + "green_dye": 1 + }, + "2": { + "terracotta": 1 + }, + "3": { + "terracotta": 1 + }, + "4": { + "terracotta": 1 + } + }, + "agent_count": 5, + "target": "cyan_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_end_crystal_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an end_crystal", + "conversation": "Let's work together to craft an end_crystal.", + "initial_inventory": { + "0": { + "glass": 3, + "ender_eye": 1 + }, + "1": { + "glass": 1, + "ghast_tear": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 1 + }, + "4": { + "glass": 1 + } + }, + "agent_count": 5, + "target": "end_crystal", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "stick": 3 + }, + "1": { + "cobblestone": 3, + "string": 3 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1 + }, + "4": { + "cobblestone": 1 + } + }, + "agent_count": 5, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_green_banner_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an green_banner", + "conversation": "Let's work together to craft an green_banner.", + "initial_inventory": { + "0": { + "green_wool": 1, + "stick": 1 + }, + "1": { + "green_wool": 1 + }, + "2": { + "green_wool": 1 + }, + "3": { + "green_wool": 1 + }, + "4": { + "green_wool": 2 + } + }, + "agent_count": 5, + "target": "green_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_granite_wall_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an granite_wall", + "conversation": "Let's work together to craft an granite_wall.", + "initial_inventory": { + "0": { + "diorite": 1, + "quartz": 1 + }, + "1": { + "diorite": 2, + "quartz": 1 + }, + "2": { + "diorite": 1, + "quartz": 2 + }, + "3": { + "diorite": 1, + "quartz": 1 + }, + "4": { + "diorite": 1, + "quartz": 1 + } + }, + "agent_count": 5, + "target": "granite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blast_furnace_0_with_plan_missing_smooth_stone_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "furnace": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "smooth_stone" + ] + }, + "multiagent_crafting_magenta_banner_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an magenta_banner", + "conversation": "Let's work together to craft an magenta_banner.", + "initial_inventory": { + "0": { + "magenta_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "magenta_dye": 1, + "black_wool": 1 + }, + "2": { + "magenta_dye": 1, + "black_wool": 1 + }, + "3": { + "magenta_dye": 1, + "black_wool": 1 + }, + "4": { + "magenta_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "magenta_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_orange_banner_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an orange_banner", + "conversation": "Let's work together to craft an orange_banner.", + "initial_inventory": { + "0": { + "orange_wool": 1, + "stick": 1 + }, + "1": { + "orange_wool": 1 + }, + "2": { + "orange_wool": 2 + }, + "3": { + "orange_wool": 1 + }, + "4": { + "orange_wool": 1 + } + }, + "agent_count": 5, + "target": "orange_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_blue_banner_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_blue_banner", + "conversation": "Let's work together to craft an light_blue_banner.", + "initial_inventory": { + "0": { + "light_blue_dye": 1, + "black_wool": 2, + "oak_planks": 2 + }, + "1": { + "light_blue_dye": 2, + "black_wool": 1 + }, + "2": { + "light_blue_dye": 1, + "black_wool": 1 + }, + "3": { + "light_blue_dye": 1, + "black_wool": 1 + }, + "4": { + "light_blue_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "light_blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_stained_glass_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an purple_stained_glass", + "conversation": "Let's work together to craft an purple_stained_glass.", + "initial_inventory": { + "0": { + "glass": 1, + "purple_dye": 1 + }, + "1": { + "glass": 1 + }, + "2": { + "glass": 4 + }, + "3": { + "glass": 1 + }, + "4": { + "glass": 1 + } + }, + "agent_count": 5, + "target": "purple_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_rail_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an rail", + "conversation": "Let's work together to craft an rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "stick": 2 + }, + "1": { + "iron_ingot": 1, + "redstone_torch": 1 + }, + "2": { + "iron_ingot": 2 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_orange_banner_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an orange_banner", + "conversation": "Let's work together to craft an orange_banner.", + "initial_inventory": { + "0": { + "orange_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "orange_dye": 1, + "black_wool": 1 + }, + "2": { + "orange_dye": 1, + "black_wool": 1 + }, + "3": { + "orange_dye": 2, + "black_wool": 2 + }, + "4": { + "orange_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "orange_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_detector_rail_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "stone_pressure_plate": 1 + }, + "1": { + "iron_ingot": 1, + "redstone": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 2 + } + }, + "agent_count": 5, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_banner_3_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an magenta_banner", + "conversation": "Let's work together to craft an magenta_banner.", + "initial_inventory": { + "0": { + "magenta_dye": 1, + "oak_planks": 2 + }, + "1": { + "magenta_dye": 1, + "shears": 1 + }, + "2": { + "magenta_dye": 1 + }, + "3": { + "magenta_dye": 1 + }, + "4": { + "magenta_dye": 2 + } + }, + "agent_count": 5, + "target": "magenta_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_recovery_compass_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an recovery_compass", + "conversation": "Let's work together to craft an recovery_compass.", + "initial_inventory": { + "0": { + "echo_shard": 1, + "compass": 1 + }, + "1": { + "echo_shard": 1 + }, + "2": { + "echo_shard": 1 + }, + "3": { + "echo_shard": 1 + }, + "4": { + "echo_shard": 4 + } + }, + "agent_count": 5, + "target": "recovery_compass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_blue_banner_4_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_blue_banner", + "conversation": "Let's work together to craft an light_blue_banner.", + "initial_inventory": { + "0": { + "light_blue_dye": 1, + "oak_planks": 2 + }, + "1": { + "light_blue_dye": 1, + "shears": 1 + }, + "2": { + "light_blue_dye": 1 + }, + "3": { + "light_blue_dye": 2 + }, + "4": { + "light_blue_dye": 1 + } + }, + "agent_count": 5, + "target": "light_blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_golden_carrot_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an golden_carrot", + "conversation": "Let's work together to craft an golden_carrot.", + "initial_inventory": { + "0": { + "gold_nugget": 4, + "carrot": 1 + }, + "1": { + "gold_nugget": 1 + }, + "2": { + "gold_nugget": 1 + }, + "3": { + "gold_nugget": 1 + }, + "4": { + "gold_nugget": 1 + } + }, + "agent_count": 5, + "target": "golden_carrot", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_blackstone_brick_wall_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an polished_blackstone_brick_wall", + "conversation": "Let's work together to craft an polished_blackstone_brick_wall.", + "initial_inventory": { + "0": { + "polished_blackstone": 4 + }, + "1": { + "polished_blackstone": 1 + }, + "2": { + "polished_blackstone": 1 + }, + "3": { + "polished_blackstone": 1 + }, + "4": { + "polished_blackstone": 1 + } + }, + "agent_count": 5, + "target": "polished_blackstone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mossy_cobblestone_wall_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an mossy_cobblestone_wall", + "conversation": "Let's work together to craft an mossy_cobblestone_wall.", + "initial_inventory": { + "0": { + "mossy_cobblestone": 1 + }, + "1": { + "mossy_cobblestone": 1 + }, + "2": { + "mossy_cobblestone": 2 + }, + "3": { + "mossy_cobblestone": 1 + }, + "4": { + "mossy_cobblestone": 1 + } + }, + "agent_count": 5, + "target": "mossy_cobblestone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_2_with_plan_missing_redstone_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1, + "stick": 1 + }, + "2": { + "iron_ingot": 2, + "diamond_pickaxe": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_stone_brick_wall_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an stone_brick_wall", + "conversation": "Let's work together to craft an stone_brick_wall.", + "initial_inventory": { + "0": { + "stone_bricks": 1 + }, + "1": { + "stone_bricks": 2 + }, + "2": { + "stone_bricks": 1 + }, + "3": { + "stone_bricks": 1 + }, + "4": { + "stone_bricks": 1 + } + }, + "agent_count": 5, + "target": "stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_orange_banner_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an orange_banner", + "conversation": "Let's work together to craft an orange_banner.", + "initial_inventory": { + "0": { + "orange_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "orange_dye": 1, + "black_wool": 1 + }, + "2": { + "orange_dye": 1, + "black_wool": 1 + }, + "3": { + "orange_dye": 2, + "black_wool": 2 + }, + "4": { + "orange_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "orange_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_1_with_plan_missing_redstone_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "bow": 1 + }, + "1": { + "cobblestone": 3, + "diamond_pickaxe": 1 + }, + "2": { + "cobblestone": 1 + }, + "3": { + "cobblestone": 1 + }, + "4": { + "cobblestone": 1 + } + }, + "agent_count": 5, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_light_blue_banner_3_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_blue_banner", + "conversation": "Let's work together to craft an light_blue_banner.", + "initial_inventory": { + "0": { + "light_blue_dye": 1, + "oak_planks": 2 + }, + "1": { + "light_blue_dye": 1, + "shears": 1 + }, + "2": { + "light_blue_dye": 1 + }, + "3": { + "light_blue_dye": 2 + }, + "4": { + "light_blue_dye": 1 + } + }, + "agent_count": 5, + "target": "light_blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_red_nether_brick_wall_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an red_nether_brick_wall", + "conversation": "Let's work together to craft an red_nether_brick_wall.", + "initial_inventory": { + "0": { + "red_nether_bricks": 1 + }, + "1": { + "red_nether_bricks": 1 + }, + "2": { + "red_nether_bricks": 1 + }, + "3": { + "red_nether_bricks": 2 + }, + "4": { + "red_nether_bricks": 1 + } + }, + "agent_count": 5, + "target": "red_nether_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_banner_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an magenta_banner", + "conversation": "Let's work together to craft an magenta_banner.", + "initial_inventory": { + "0": { + "magenta_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "magenta_dye": 1, + "black_wool": 1 + }, + "2": { + "magenta_dye": 1, + "black_wool": 1 + }, + "3": { + "magenta_dye": 1, + "black_wool": 1 + }, + "4": { + "magenta_dye": 2, + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "magenta_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_detector_rail_1_with_plan_missing_redstone_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "stone_pressure_plate": 1 + }, + "1": { + "iron_ingot": 1, + "diamond_pickaxe": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 2 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_yellow_banner_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an yellow_banner", + "conversation": "Let's work together to craft an yellow_banner.", + "initial_inventory": { + "0": { + "yellow_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "yellow_dye": 2, + "black_wool": 1 + }, + "2": { + "yellow_dye": 1, + "black_wool": 2 + }, + "3": { + "yellow_dye": 1, + "black_wool": 1 + }, + "4": { + "yellow_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "yellow_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_magenta_banner_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an magenta_banner", + "conversation": "Let's work together to craft an magenta_banner.", + "initial_inventory": { + "0": { + "magenta_wool": 1, + "stick": 1 + }, + "1": { + "magenta_wool": 1 + }, + "2": { + "magenta_wool": 1 + }, + "3": { + "magenta_wool": 2 + }, + "4": { + "magenta_wool": 1 + } + }, + "agent_count": 5, + "target": "magenta_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_yellow_banner_1_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an yellow_banner", + "conversation": "Let's work together to craft an yellow_banner.", + "initial_inventory": { + "0": { + "yellow_dye": 1, + "oak_planks": 2 + }, + "1": { + "yellow_dye": 1, + "shears": 1 + }, + "2": { + "yellow_dye": 2 + }, + "3": { + "yellow_dye": 1 + }, + "4": { + "yellow_dye": 1 + } + }, + "agent_count": 5, + "target": "yellow_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_detector_rail_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "stone_pressure_plate": 1 + }, + "1": { + "iron_ingot": 1, + "redstone": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 2 + } + }, + "agent_count": 5, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_1_with_plan_missing_redstone_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "stick": 3 + }, + "1": { + "cobblestone": 3, + "string": 3 + }, + "2": { + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "3": { + "cobblestone": 1 + }, + "4": { + "cobblestone": 1 + } + }, + "agent_count": 5, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_blast_furnace_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "furnace": 1 + }, + "1": { + "iron_ingot": 1, + "smooth_stone": 3 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1, + "redstone": 1 + }, + "2": { + "iron_ingot": 2, + "stick": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_netherite_block_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an netherite_block", + "conversation": "Let's work together to craft an netherite_block.", + "initial_inventory": { + "0": { + "netherite_ingot": 1 + }, + "1": { + "netherite_ingot": 5 + }, + "2": { + "netherite_ingot": 1 + }, + "3": { + "netherite_ingot": 1 + }, + "4": { + "netherite_ingot": 1 + } + }, + "agent_count": 5, + "target": "netherite_block", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_yellow_banner_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an yellow_banner", + "conversation": "Let's work together to craft an yellow_banner.", + "initial_inventory": { + "0": { + "yellow_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "yellow_dye": 2, + "black_wool": 1 + }, + "2": { + "yellow_dye": 1, + "black_wool": 2 + }, + "3": { + "yellow_dye": 1, + "black_wool": 1 + }, + "4": { + "yellow_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "yellow_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_0_with_plan_missing_redstone_torch_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "stick": 2 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 2 + } + }, + "agent_count": 5, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone_torch" + ] + }, + "multiagent_crafting_activator_rail_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1, + "redstone": 1 + }, + "2": { + "iron_ingot": 2, + "stick": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mud_brick_wall_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an mud_brick_wall", + "conversation": "Let's work together to craft an mud_brick_wall.", + "initial_inventory": { + "0": { + "mud_bricks": 2 + }, + "1": { + "mud_bricks": 1 + }, + "2": { + "mud_bricks": 1 + }, + "3": { + "mud_bricks": 1 + }, + "4": { + "mud_bricks": 1 + } + }, + "agent_count": 5, + "target": "mud_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_yellow_banner_2_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an yellow_banner", + "conversation": "Let's work together to craft an yellow_banner.", + "initial_inventory": { + "0": { + "yellow_dye": 1, + "oak_planks": 2 + }, + "1": { + "yellow_dye": 1, + "shears": 1 + }, + "2": { + "yellow_dye": 2 + }, + "3": { + "yellow_dye": 1 + }, + "4": { + "yellow_dye": 1 + } + }, + "agent_count": 5, + "target": "yellow_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_end_stone_brick_wall_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an end_stone_brick_wall", + "conversation": "Let's work together to craft an end_stone_brick_wall.", + "initial_inventory": { + "0": { + "end_stone_bricks": 1 + }, + "1": { + "end_stone_bricks": 1 + }, + "2": { + "end_stone_bricks": 1 + }, + "3": { + "end_stone_bricks": 2 + }, + "4": { + "end_stone_bricks": 1 + } + }, + "agent_count": 5, + "target": "end_stone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_brick_wall_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an deepslate_brick_wall", + "conversation": "Let's work together to craft an deepslate_brick_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 4 + }, + "1": { + "polished_deepslate": 1 + }, + "2": { + "polished_deepslate": 1 + }, + "3": { + "polished_deepslate": 1 + }, + "4": { + "polished_deepslate": 1 + } + }, + "agent_count": 5, + "target": "deepslate_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_sandstone_wall_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an sandstone_wall", + "conversation": "Let's work together to craft an sandstone_wall.", + "initial_inventory": { + "0": { + "sandstone": 1 + }, + "1": { + "sandstone": 1 + }, + "2": { + "sandstone": 1 + }, + "3": { + "sandstone": 1 + }, + "4": { + "sandstone": 2 + } + }, + "agent_count": 5, + "target": "sandstone_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_blue_banner_1_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_blue_banner", + "conversation": "Let's work together to craft an light_blue_banner.", + "initial_inventory": { + "0": { + "light_blue_dye": 1, + "oak_planks": 2 + }, + "1": { + "light_blue_dye": 1, + "shears": 1 + }, + "2": { + "light_blue_dye": 1 + }, + "3": { + "light_blue_dye": 2 + }, + "4": { + "light_blue_dye": 1 + } + }, + "agent_count": 5, + "target": "light_blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_deepslate_tile_wall_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "deepslate_tiles": 1 + }, + "1": { + "deepslate_tiles": 1 + }, + "2": { + "deepslate_tiles": 1 + }, + "3": { + "deepslate_tiles": 1 + }, + "4": { + "deepslate_tiles": 2 + } + }, + "agent_count": 5, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_blue_banner_0_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_blue_banner", + "conversation": "Let's work together to craft an light_blue_banner.", + "initial_inventory": { + "0": { + "light_blue_dye": 1, + "oak_planks": 2 + }, + "1": { + "light_blue_dye": 1, + "shears": 1 + }, + "2": { + "light_blue_dye": 1 + }, + "3": { + "light_blue_dye": 2 + }, + "4": { + "light_blue_dye": 1 + } + }, + "agent_count": 5, + "target": "light_blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_andesite_wall_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an andesite_wall", + "conversation": "Let's work together to craft an andesite_wall.", + "initial_inventory": { + "0": { + "andesite": 1 + }, + "1": { + "andesite": 1 + }, + "2": { + "andesite": 1 + }, + "3": { + "andesite": 1 + }, + "4": { + "andesite": 2 + } + }, + "agent_count": 5, + "target": "andesite_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_blue_banner_2_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_blue_banner", + "conversation": "Let's work together to craft an light_blue_banner.", + "initial_inventory": { + "0": { + "light_blue_dye": 1, + "oak_planks": 2 + }, + "1": { + "light_blue_dye": 1, + "shears": 1 + }, + "2": { + "light_blue_dye": 1 + }, + "3": { + "light_blue_dye": 2 + }, + "4": { + "light_blue_dye": 1 + } + }, + "agent_count": 5, + "target": "light_blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_activator_rail_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "stick": 2 + }, + "1": { + "iron_ingot": 1, + "redstone_torch": 1 + }, + "2": { + "iron_ingot": 2 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_gray_banner_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_gray_banner", + "conversation": "Let's work together to craft an light_gray_banner.", + "initial_inventory": { + "0": { + "light_gray_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "light_gray_dye": 1, + "black_wool": 2 + }, + "2": { + "light_gray_dye": 1, + "black_wool": 1 + }, + "3": { + "light_gray_dye": 1, + "black_wool": 1 + }, + "4": { + "light_gray_dye": 2, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "light_gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_gray_banner_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_gray_banner", + "conversation": "Let's work together to craft an light_gray_banner.", + "initial_inventory": { + "0": { + "light_gray_wool": 1, + "stick": 1 + }, + "1": { + "light_gray_wool": 1 + }, + "2": { + "light_gray_wool": 1 + }, + "3": { + "light_gray_wool": 1 + }, + "4": { + "light_gray_wool": 2 + } + }, + "agent_count": 5, + "target": "light_gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "deepslate_bricks": 1 + }, + "1": { + "deepslate_bricks": 1 + }, + "2": { + "deepslate_bricks": 4 + }, + "3": { + "deepslate_bricks": 1 + }, + "4": { + "deepslate_bricks": 1 + } + }, + "agent_count": 5, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blast_furnace_2_with_plan_missing_furnace_smooth_stone_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "furnace", + "smooth_stone" + ] + }, + "multiagent_crafting_orange_banner_0_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an orange_banner", + "conversation": "Let's work together to craft an orange_banner.", + "initial_inventory": { + "0": { + "orange_dye": 1, + "oak_planks": 2 + }, + "1": { + "orange_dye": 1, + "shears": 1 + }, + "2": { + "orange_dye": 1 + }, + "3": { + "orange_dye": 1 + }, + "4": { + "orange_dye": 2 + } + }, + "agent_count": 5, + "target": "orange_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_green_banner_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an green_banner", + "conversation": "Let's work together to craft an green_banner.", + "initial_inventory": { + "0": { + "green_wool": 1, + "stick": 1 + }, + "1": { + "green_wool": 1 + }, + "2": { + "green_wool": 1 + }, + "3": { + "green_wool": 1 + }, + "4": { + "green_wool": 2 + } + }, + "agent_count": 5, + "target": "green_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_green_banner_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an green_banner", + "conversation": "Let's work together to craft an green_banner.", + "initial_inventory": { + "0": { + "green_dye": 2, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "green_dye": 1, + "black_wool": 1 + }, + "2": { + "green_dye": 1, + "black_wool": 2 + }, + "3": { + "green_dye": 1, + "black_wool": 1 + }, + "4": { + "green_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "green_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blast_furnace_4_with_plan_missing_furnace_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "smooth_stone": 3 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "furnace" + ] + }, + "multiagent_crafting_green_banner_0_with_plan_missing_black_wool_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an green_banner", + "conversation": "Let's work together to craft an green_banner.", + "initial_inventory": { + "0": { + "green_dye": 1, + "oak_planks": 2 + }, + "1": { + "green_dye": 1, + "shears": 1 + }, + "2": { + "green_dye": 1 + }, + "3": { + "green_dye": 2 + }, + "4": { + "green_dye": 1 + } + }, + "agent_count": 5, + "target": "green_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "black_wool" + ] + }, + "multiagent_crafting_cyan_terracotta_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an cyan_terracotta", + "conversation": "Let's work together to craft an cyan_terracotta.", + "initial_inventory": { + "0": { + "terracotta": 1, + "cyan_dye": 1 + }, + "1": { + "terracotta": 1 + }, + "2": { + "terracotta": 4 + }, + "3": { + "terracotta": 1 + }, + "4": { + "terracotta": 1 + } + }, + "agent_count": 5, + "target": "cyan_terracotta", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_1_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "stick": 3 + }, + "1": { + "cobblestone": 3, + "string": 3 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1 + }, + "4": { + "cobblestone": 1 + } + }, + "agent_count": 5, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_2_with_plan__depth_0_num_agents_5": { + "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": 1, + "stick": 1 + }, + "1": { + "purple_wool": 1 + }, + "2": { + "purple_wool": 1 + }, + "3": { + "purple_wool": 1 + }, + "4": { + "purple_wool": 2 + } + }, + "agent_count": 5, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_gray_banner_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_gray_banner", + "conversation": "Let's work together to craft an light_gray_banner.", + "initial_inventory": { + "0": { + "light_gray_dye": 1, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "light_gray_dye": 1, + "black_wool": 2 + }, + "2": { + "light_gray_dye": 1, + "black_wool": 1 + }, + "3": { + "light_gray_dye": 1, + "black_wool": 1 + }, + "4": { + "light_gray_dye": 2, + "black_wool": 1 + } + }, + "agent_count": 5, + "target": "light_gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_composter_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an composter", + "conversation": "Let's work together to craft an composter.", + "initial_inventory": { + "0": { + "oak_slab": 1 + }, + "1": { + "oak_slab": 1 + }, + "2": { + "oak_slab": 1 + }, + "3": { + "oak_slab": 1 + }, + "4": { + "oak_slab": 3 + } + }, + "agent_count": 5, + "target": "composter", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_3_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "purple_dye": 2, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "purple_dye": 1, + "black_wool": 1 + }, + "2": { + "purple_dye": 1, + "black_wool": 1 + }, + "3": { + "purple_dye": 1, + "black_wool": 1 + }, + "4": { + "purple_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_leather_chestplate_1_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an leather_chestplate", + "conversation": "Let's work together to craft an leather_chestplate.", + "initial_inventory": { + "0": { + "leather": 1 + }, + "1": { + "leather": 1 + }, + "2": { + "leather": 1 + }, + "3": { + "leather": 1 + }, + "4": { + "leather": 4 + } + }, + "agent_count": 5, + "target": "leather_chestplate", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "1": { + "iron_ingot": 1, + "redstone": 1 + }, + "2": { + "iron_ingot": 2, + "stick": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_mud_brick_wall_3_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an mud_brick_wall", + "conversation": "Let's work together to craft an mud_brick_wall.", + "initial_inventory": { + "0": { + "mud_bricks": 2 + }, + "1": { + "mud_bricks": 1 + }, + "2": { + "mud_bricks": 1 + }, + "3": { + "mud_bricks": 1 + }, + "4": { + "mud_bricks": 1 + } + }, + "agent_count": 5, + "target": "mud_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_end_crystal_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an end_crystal", + "conversation": "Let's work together to craft an end_crystal.", + "initial_inventory": { + "0": { + "glass": 1, + "ender_pearl": 1 + }, + "1": { + "glass": 1, + "blaze_powder": 1 + }, + "2": { + "glass": 1, + "ghast_tear": 1 + }, + "3": { + "glass": 3 + }, + "4": { + "glass": 1 + } + }, + "agent_count": 5, + "target": "end_crystal", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_detector_rail_0_with_plan_missing_stone_pressure_plate_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an detector_rail", + "conversation": "Let's work together to craft an detector_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "redstone": 1 + }, + "1": { + "iron_ingot": 2 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "detector_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "stone_pressure_plate" + ] + }, + "multiagent_crafting_purple_banner_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "purple_dye": 2, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "purple_dye": 1, + "black_wool": 1 + }, + "2": { + "purple_dye": 1, + "black_wool": 1 + }, + "3": { + "purple_dye": 1, + "black_wool": 1 + }, + "4": { + "purple_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lantern_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an lantern", + "conversation": "Let's work together to craft an lantern.", + "initial_inventory": { + "0": { + "iron_nugget": 4, + "torch": 1 + }, + "1": { + "iron_nugget": 1 + }, + "2": { + "iron_nugget": 1 + }, + "3": { + "iron_nugget": 1 + }, + "4": { + "iron_nugget": 1 + } + }, + "agent_count": 5, + "target": "lantern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_stained_glass_4_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an purple_stained_glass", + "conversation": "Let's work together to craft an purple_stained_glass.", + "initial_inventory": { + "0": { + "glass": 4, + "blue_dye": 1 + }, + "1": { + "glass": 1, + "red_dye": 1 + }, + "2": { + "glass": 1 + }, + "3": { + "glass": 1 + }, + "4": { + "glass": 1 + } + }, + "agent_count": 5, + "target": "purple_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_light_gray_banner_2_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an light_gray_banner", + "conversation": "Let's work together to craft an light_gray_banner.", + "initial_inventory": { + "0": { + "light_gray_wool": 1, + "stick": 1 + }, + "1": { + "light_gray_wool": 1 + }, + "2": { + "light_gray_wool": 1 + }, + "3": { + "light_gray_wool": 1 + }, + "4": { + "light_gray_wool": 2 + } + }, + "agent_count": 5, + "target": "light_gray_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_2_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "purple_dye": 2, + "black_wool": 1, + "oak_planks": 2 + }, + "1": { + "purple_dye": 1, + "black_wool": 1 + }, + "2": { + "purple_dye": 1, + "black_wool": 1 + }, + "3": { + "purple_dye": 1, + "black_wool": 1 + }, + "4": { + "purple_dye": 1, + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_blast_furnace_4_with_plan_missing_furnace_smooth_stone_depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an blast_furnace", + "conversation": "Let's work together to craft an blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 1 + }, + "1": { + "iron_ingot": 1 + }, + "2": { + "iron_ingot": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 270, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "furnace", + "smooth_stone" + ] + }, + "multiagent_crafting_polished_blackstone_brick_wall_0_with_plan__depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an polished_blackstone_brick_wall", + "conversation": "Let's work together to craft an polished_blackstone_brick_wall.", + "initial_inventory": { + "0": { + "polished_blackstone": 4 + }, + "1": { + "polished_blackstone": 1 + }, + "2": { + "polished_blackstone": 1 + }, + "3": { + "polished_blackstone": 1 + }, + "4": { + "polished_blackstone": 1 + } + }, + "agent_count": 5, + "target": "polished_blackstone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 240, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_polished_blackstone_brick_wall_0_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an polished_blackstone_brick_wall", + "conversation": "Let's work together to craft an polished_blackstone_brick_wall.", + "initial_inventory": { + "0": { + "polished_blackstone_bricks": 1 + }, + "1": { + "polished_blackstone_bricks": 1 + }, + "2": { + "polished_blackstone_bricks": 1 + }, + "3": { + "polished_blackstone_bricks": 1 + }, + "4": { + "polished_blackstone_bricks": 2 + } + }, + "agent_count": 5, + "target": "polished_blackstone_brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_2_with_plan_missing_redstone_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "stick": 3 + }, + "1": { + "cobblestone": 3, + "string": 3 + }, + "2": { + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "3": { + "cobblestone": 1 + }, + "4": { + "cobblestone": 1 + } + }, + "agent_count": 5, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_brick_wall_4_with_plan__depth_0_num_agents_5": { + "goal": "Collaborate with other agents to craft an brick_wall", + "conversation": "Let's work together to craft an brick_wall.", + "initial_inventory": { + "0": { + "bricks": 1 + }, + "1": { + "bricks": 1 + }, + "2": { + "bricks": 1 + }, + "3": { + "bricks": 1 + }, + "4": { + "bricks": 2 + } + }, + "agent_count": 5, + "target": "brick_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 180, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_0_with_plan_missing_gold_ingot_depth_1_num_agents_5": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_brick_slab": 3, + "netherite_scrap": 4 + }, + "1": { + "stone_brick_slab": 3, + "iron_pickaxe": 1 + }, + "2": { + "stone_brick_slab": 4, + "furnace": 1 + }, + "3": { + "stone_brick_slab": 3 + }, + "4": { + "stone_brick_slab": 3 + } + }, + "agent_count": 5, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 360, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_deepslate_tile_wall_0_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 1 + }, + "1": { + "polished_deepslate": 1 + }, + "2": { + "polished_deepslate": 1 + }, + "3": { + "polished_deepslate": 4 + }, + "4": { + "polished_deepslate": 1 + } + }, + "agent_count": 5, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_1_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 1 + }, + "1": { + "polished_deepslate": 1 + }, + "2": { + "polished_deepslate": 1 + }, + "3": { + "polished_deepslate": 4 + }, + "4": { + "polished_deepslate": 1 + } + }, + "agent_count": 5, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_2_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 1 + }, + "1": { + "polished_deepslate": 1 + }, + "2": { + "polished_deepslate": 1 + }, + "3": { + "polished_deepslate": 4 + }, + "4": { + "polished_deepslate": 1 + } + }, + "agent_count": 5, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_3_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 1 + }, + "1": { + "polished_deepslate": 1 + }, + "2": { + "polished_deepslate": 1 + }, + "3": { + "polished_deepslate": 4 + }, + "4": { + "polished_deepslate": 1 + } + }, + "agent_count": 5, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_deepslate_tile_wall_4_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an deepslate_tile_wall", + "conversation": "Let's work together to craft an deepslate_tile_wall.", + "initial_inventory": { + "0": { + "polished_deepslate": 1 + }, + "1": { + "polished_deepslate": 1 + }, + "2": { + "polished_deepslate": 1 + }, + "3": { + "polished_deepslate": 4 + }, + "4": { + "polished_deepslate": 1 + } + }, + "agent_count": 5, + "target": "deepslate_tile_wall", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_0_with_plan_missing_redstone_depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 3, + "oak_planks": 2 + }, + "1": { + "cobblestone": 1, + "string": 3 + }, + "2": { + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "3": { + "cobblestone": 1 + }, + "4": { + "cobblestone": 1 + } + }, + "agent_count": 5, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_dispenser_1_with_plan_missing_redstone_depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 3, + "oak_planks": 2 + }, + "1": { + "cobblestone": 1, + "string": 3 + }, + "2": { + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "3": { + "cobblestone": 1 + }, + "4": { + "cobblestone": 1 + } + }, + "agent_count": 5, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_dispenser_2_with_plan_missing_redstone_depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 3, + "oak_planks": 2 + }, + "1": { + "cobblestone": 1, + "string": 3 + }, + "2": { + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "3": { + "cobblestone": 1 + }, + "4": { + "cobblestone": 1 + } + }, + "agent_count": 5, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_dispenser_3_with_plan_missing_redstone_depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 3, + "oak_planks": 2 + }, + "1": { + "cobblestone": 1, + "string": 3 + }, + "2": { + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "3": { + "cobblestone": 1 + }, + "4": { + "cobblestone": 1 + } + }, + "agent_count": 5, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_dispenser_4_with_plan_missing_redstone_depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 3, + "oak_planks": 2 + }, + "1": { + "cobblestone": 1, + "string": 3 + }, + "2": { + "cobblestone": 1, + "diamond_pickaxe": 1 + }, + "3": { + "cobblestone": 1 + }, + "4": { + "cobblestone": 1 + } + }, + "agent_count": 5, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_dispenser_0_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "oak_planks": 2 + }, + "1": { + "cobblestone": 3, + "string": 3 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1 + }, + "4": { + "cobblestone": 1 + } + }, + "agent_count": 5, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_1_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "oak_planks": 2 + }, + "1": { + "cobblestone": 3, + "string": 3 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1 + }, + "4": { + "cobblestone": 1 + } + }, + "agent_count": 5, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_2_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "oak_planks": 2 + }, + "1": { + "cobblestone": 3, + "string": 3 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1 + }, + "4": { + "cobblestone": 1 + } + }, + "agent_count": 5, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_3_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "oak_planks": 2 + }, + "1": { + "cobblestone": 3, + "string": 3 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1 + }, + "4": { + "cobblestone": 1 + } + }, + "agent_count": 5, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_dispenser_4_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an dispenser", + "conversation": "Let's work together to craft an dispenser.", + "initial_inventory": { + "0": { + "cobblestone": 1, + "oak_planks": 2 + }, + "1": { + "cobblestone": 3, + "string": 3 + }, + "2": { + "cobblestone": 1, + "redstone": 1 + }, + "3": { + "cobblestone": 1 + }, + "4": { + "cobblestone": 1 + } + }, + "agent_count": 5, + "target": "dispenser", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_0_with_plan_missing_redstone_depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_log": 1 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 1, + "diamond_pickaxe": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 2 + } + }, + "agent_count": 5, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_activator_rail_1_with_plan_missing_redstone_depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_log": 1 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 1, + "diamond_pickaxe": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 2 + } + }, + "agent_count": 5, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_activator_rail_2_with_plan_missing_redstone_depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_log": 1 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 1, + "diamond_pickaxe": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 2 + } + }, + "agent_count": 5, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_activator_rail_3_with_plan_missing_redstone_depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_log": 1 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 1, + "diamond_pickaxe": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 2 + } + }, + "agent_count": 5, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_activator_rail_4_with_plan_missing_redstone_depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_log": 1 + }, + "1": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "2": { + "iron_ingot": 1, + "diamond_pickaxe": 1 + }, + "3": { + "iron_ingot": 1 + }, + "4": { + "iron_ingot": 2 + } + }, + "agent_count": 5, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "redstone" + ] + }, + "multiagent_crafting_activator_rail_0_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_log": 1 + }, + "1": { + "iron_ingot": 1, + "redstone": 1 + }, + "2": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "3": { + "iron_ingot": 2 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_1_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_log": 1 + }, + "1": { + "iron_ingot": 1, + "redstone": 1 + }, + "2": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "3": { + "iron_ingot": 2 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_2_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_log": 1 + }, + "1": { + "iron_ingot": 1, + "redstone": 1 + }, + "2": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "3": { + "iron_ingot": 2 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_3_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_log": 1 + }, + "1": { + "iron_ingot": 1, + "redstone": 1 + }, + "2": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "3": { + "iron_ingot": 2 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_activator_rail_4_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an activator_rail", + "conversation": "Let's work together to craft an activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 1, + "oak_log": 1 + }, + "1": { + "iron_ingot": 1, + "redstone": 1 + }, + "2": { + "iron_ingot": 1, + "oak_planks": 2 + }, + "3": { + "iron_ingot": 2 + }, + "4": { + "iron_ingot": 1 + } + }, + "agent_count": 5, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_0_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "blue_dye": 3, + "black_wool": 1 + }, + "1": { + "red_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_1_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "blue_dye": 3, + "black_wool": 1 + }, + "1": { + "red_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_2_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "blue_dye": 3, + "black_wool": 1 + }, + "1": { + "red_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_3_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "blue_dye": 3, + "black_wool": 1 + }, + "1": { + "red_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_purple_banner_4_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "blue_dye": 3, + "black_wool": 1 + }, + "1": { + "red_dye": 3, + "black_wool": 1 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + }, + "4": { + "black_wool": 2 + } + }, + "agent_count": 5, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_0_with_plan_missing_gold_ingot_depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 1, + "netherite_scrap": 4 + }, + "1": { + "stone_bricks": 5, + "iron_pickaxe": 1 + }, + "2": { + "stone_bricks": 1, + "furnace": 1 + }, + "3": { + "stone_bricks": 1 + }, + "4": { + "stone_bricks": 1 + } + }, + "agent_count": 5, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_1_with_plan_missing_gold_ingot_depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 1, + "netherite_scrap": 4 + }, + "1": { + "stone_bricks": 5, + "iron_pickaxe": 1 + }, + "2": { + "stone_bricks": 1, + "furnace": 1 + }, + "3": { + "stone_bricks": 1 + }, + "4": { + "stone_bricks": 1 + } + }, + "agent_count": 5, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_2_with_plan_missing_gold_ingot_depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 1, + "netherite_scrap": 4 + }, + "1": { + "stone_bricks": 5, + "iron_pickaxe": 1 + }, + "2": { + "stone_bricks": 1, + "furnace": 1 + }, + "3": { + "stone_bricks": 1 + }, + "4": { + "stone_bricks": 1 + } + }, + "agent_count": 5, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_3_with_plan_missing_gold_ingot_depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 1, + "netherite_scrap": 4 + }, + "1": { + "stone_bricks": 5, + "iron_pickaxe": 1 + }, + "2": { + "stone_bricks": 1, + "furnace": 1 + }, + "3": { + "stone_bricks": 1 + }, + "4": { + "stone_bricks": 1 + } + }, + "agent_count": 5, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_4_with_plan_missing_gold_ingot_depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 1, + "netherite_scrap": 4 + }, + "1": { + "stone_bricks": 5, + "iron_pickaxe": 1 + }, + "2": { + "stone_bricks": 1, + "furnace": 1 + }, + "3": { + "stone_bricks": 1 + }, + "4": { + "stone_bricks": 1 + } + }, + "agent_count": 5, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 450, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [ + "gold_ingot" + ] + }, + "multiagent_crafting_lodestone_0_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 5, + "netherite_scrap": 4 + }, + "1": { + "stone_bricks": 1, + "gold_ingot": 4 + }, + "2": { + "stone_bricks": 1 + }, + "3": { + "stone_bricks": 1 + }, + "4": { + "stone_bricks": 1 + } + }, + "agent_count": 5, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_1_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 5, + "netherite_scrap": 4 + }, + "1": { + "stone_bricks": 1, + "gold_ingot": 4 + }, + "2": { + "stone_bricks": 1 + }, + "3": { + "stone_bricks": 1 + }, + "4": { + "stone_bricks": 1 + } + }, + "agent_count": 5, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_2_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 5, + "netherite_scrap": 4 + }, + "1": { + "stone_bricks": 1, + "gold_ingot": 4 + }, + "2": { + "stone_bricks": 1 + }, + "3": { + "stone_bricks": 1 + }, + "4": { + "stone_bricks": 1 + } + }, + "agent_count": 5, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_3_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 5, + "netherite_scrap": 4 + }, + "1": { + "stone_bricks": 1, + "gold_ingot": 4 + }, + "2": { + "stone_bricks": 1 + }, + "3": { + "stone_bricks": 1 + }, + "4": { + "stone_bricks": 1 + } + }, + "agent_count": 5, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [], + "4": [] + }, + "missing_items": [] + }, + "multiagent_crafting_lodestone_4_with_plan__depth_2_num_agents_5": { + "goal": "Collaborate with other agents to craft an lodestone", + "conversation": "Let's work together to craft an lodestone.", + "initial_inventory": { + "0": { + "stone_bricks": 5, + "netherite_scrap": 4 + }, + "1": { + "stone_bricks": 1, + "gold_ingot": 4 + }, + "2": { + "stone_bricks": 1 + }, + "3": { + "stone_bricks": 1 + }, + "4": { + "stone_bricks": 1 + } + }, + "agent_count": 5, + "target": "lodestone", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [ + "!getCraftingPlan" + ], + "4": [] + }, + "missing_items": [] + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/train_tasks/tasks_5_agents_stats.txt b/tasks/crafting_tasks/train_tasks/tasks_5_agents_stats.txt new file mode 100644 index 0000000..97efadc --- /dev/null +++ b/tasks/crafting_tasks/train_tasks/tasks_5_agents_stats.txt @@ -0,0 +1,15 @@ +{ + "num_tasks": 240, + "avg_depth": 2.0166666666666666, + "std_depth": 0.7525881269917101, + "num_tasks_based_depth": { + "0": 100, + "1": 100, + "2": 40 + }, + "num_missing_resources": { + "0": 173, + "1": 64, + "2": 3 + } +} \ No newline at end of file From 19bedf059332e49c55a135242aaef2ebc62f15a7 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Sun, 16 Mar 2025 18:50:34 -0700 Subject: [PATCH 16/28] making eval script more robust to server randomly crashing --- evaluation_script.py | 70 +++++++++++++++++++++++++++++++++++++++----- 1 file changed, 63 insertions(+), 7 deletions(-) diff --git a/evaluation_script.py b/evaluation_script.py index 8c1194b..3389262 100644 --- a/evaluation_script.py +++ b/evaluation_script.py @@ -8,6 +8,8 @@ import re import sys import os import time +import filecmp +import json BLOCKED_ACTIONS_COOKING = [ '!activate', '!attackPlayer', '!checkBlueprint', '!checkBlueprintLevel', @@ -225,6 +227,8 @@ def launch_server_experiment(task_path, subprocess.run(['tmux', 'new-session', '-d', '-s', session_name], check=True) + + # set environment variables set_environment_variable_tmux_session(session_name, "MINECRAFT_PORT", server_port) set_environment_variable_tmux_session(session_name, "MINDSERVER_PORT", mindserver_port) @@ -233,13 +237,14 @@ def launch_server_experiment(task_path, set_environment_variable_tmux_session(session_name, "INSECURE_CODING", "true") # you need to add the bots to the world first before you can add them as op - cmd = f"node main.js --task_path example_tasks.json --task_id debug_{num_agents}_agent_timeout" + # cmd = f"node main.js --task_path example_tasks.json --task_id debug_{num_agents}_agent_timeout" - subprocess.run(["tmux", "send-keys", "-t", session_name, cmd, "C-m"]) + # subprocess.run(["tmux", "send-keys", "-t", session_name, cmd, "C-m"]) - time.sleep(40) + # time.sleep(40) - subprocess.run(["tmux", "send-keys", "-t", "server_" + session_name, f"/op {agent_names[0]}", "C-m"]) + # subprocess.run(["tmux", "send-keys", "-t", "server_" + session_name, f"/op @a", "C-m"]) + make_ops(agent_names, session_name) # add the bots as op # op_script_content = "sleep 5\n\op @p" * 20 @@ -252,6 +257,11 @@ def launch_server_experiment(task_path, elif task_type == "construction": set_environment_variable_tmux_session(session_name, "BLOCKED_ACTIONS", BLOCKED_ACTIONS_CONSTRUCTION) + split_task_path = task_path.split("/") + if len(split_task_path) > 1: + task_path_name = split_task_path[-2] + else: + task_path_name = "tasks" script_content = "" for task_id in task_ids: @@ -274,8 +284,7 @@ def launch_server_experiment(task_path, script_content += f"{cp_cmd}\n" script_content += "sleep 1\n" if s3: - s3_cmd = f"aws s3 cp {agent_file_path} s3://{bucket_name}/{task_type}/{model}/{exp_name}/{task_id}/{agent}_{_}.json" - s3_upload_experiment = f"aws s3 cp {agent_file_path} s3://{bucket_name}/{task_type}/{model}/{exp_name}/{task_id}/{agent}_{_}.json" + s3_cmd = f"aws s3 cp {agent_file_path} s3://{bucket_name}/{task_type}/{model}/{task_path_name}/{exp_name}/{task_id}/{agent}_{_}.json" script_content += f"echo 'Uploading {agent_file_path} to S3'\n" script_content += f"echo '{s3_cmd}'\n" script_content += f"{s3_cmd}\n" @@ -283,12 +292,42 @@ def launch_server_experiment(task_path, script_content += f"sleep 10\n" if s3: for agent in agent_names: - script_content += f"aws s3 cp bots/{agent} s3://{bucket_name}/{task_type}/{model}/{exp_name}/bots/{agent} --recursive\n" + script_content += f"aws s3 cp bots/{agent} s3://{bucket_name}/{task_type}/{model}/{task_path_name}/{exp_name}/bots/{agent} --recursive\n" # Create a temporary shell script file script_file = f"./tmp/experiment_script_{session_name}.sh" make_script_file_and_run(script_content, session_name, script_file) +def make_ops(agent_names, session_name): + """Make the agents operators in the Minecraft world.""" + print('Making agents operators...') + + cmd = f"node main.js --task_path example_tasks.json --task_id debug_{len(agent_names)}_agent_timeout" + + subprocess.run(["tmux", "send-keys", "-t", session_name, cmd, "C-m"]) + + time.sleep(30) + + subprocess.run(["tmux", "send-keys", "-t", "server_" + session_name, f"/op @a", "C-m"]) + + agents_op = check_agent_ops(agent_names, ops_file=f"./server_data_{session_name}/ops.json") + if agents_op: + print("Agents are operators! You are good to go :D") + else: + print("Agents are not operators! Something went wrong :(") + make_ops(agent_names, session_name) + +def check_agent_ops(agent_names, ops_file="ops.json"): + with open(ops_file, "r") as f: + ops_data = json.load(f) + + ops_names = [op["name"] for op in ops_data] + + for agent in agent_names: + if agent not in ops_names: + return False + return True + def make_script_file_and_run(script_content, session_name, file_name): script_dir = os.path.dirname(file_name) os.makedirs(script_dir, exist_ok=True) @@ -372,6 +411,23 @@ def copy_server_files(source_path, dest_path): print(f"Server files copied to {dest_path}") except Exception as e: print(f"Error copying server files: {e}") + time.sleep(10) + + same_files = check_same_files(source_path, dest_path) + if not same_files: + copy_server_files(source_path, dest_path) + print("The destination path does not contain all the same files as the source path.") + else: + print("The destination path contains all the same files as the source path.") + +def check_same_files(d1, d2): + + items1 = set(os.listdir(d1)) + items2 = set(os.listdir(d2)) + + if items1 != items2: + return False + return True def delete_server_files(dest_path): """Delete server files from the specified location.""" From 192d92bc06255c959649a83af390f8a32ccfbcb1 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Sun, 16 Mar 2025 20:31:30 -0700 Subject: [PATCH 17/28] fix restart and the issue where the server sometimes doesn't get deleted properly --- evaluation_script.py | 103 ++++++++++++++++++++++++++++++++++++++++--- src/agent/agent.js | 23 +++++++--- src/agent/history.js | 1 + src/agent/tasks.js | 11 +++-- 4 files changed, 125 insertions(+), 13 deletions(-) diff --git a/evaluation_script.py b/evaluation_script.py index 3389262..2f247d8 100644 --- a/evaluation_script.py +++ b/evaluation_script.py @@ -10,6 +10,9 @@ import os import time import filecmp import json +import glob + +from tqdm import tqdm BLOCKED_ACTIONS_COOKING = [ '!activate', '!attackPlayer', '!checkBlueprint', '!checkBlueprintLevel', @@ -35,6 +38,83 @@ BLOCKED_ACTIONS_CONSTRUCTION = [ '!stop', '!takeFromChest', '!viewChest' ] +def analyze_json_file(file_path): + """ + Analyzes a single JSON file to extract the task outcome. + + Args: + file_path (str): Path to the JSON file. + + Returns: + str or None: The task outcome string if found, otherwise None. + """ + try: + with open(file_path, 'r') as f: + data = json.load(f) + if 'turns' in data and isinstance(data['turns'], list): + for turn in reversed(data['turns']): # Check turns from the end + if turn.get('role') == 'system' and isinstance(turn.get('content'), str): + if "Task successful ended with code : 2" in turn['content'] or "Task ended with score : 1" in turn["content"] or "Task ended in score: 1" in turn["content"]: + return True + return False + except FileNotFoundError: + print(f"Error: File not found: {file_path}") + return None + except json.JSONDecodeError: + print(f"Error: Invalid JSON format in: {file_path}") + return None + except Exception as e: + print(f"An unexpected error occurred while processing {file_path}: {e}") + return None + +def extract_result(folder_path): + folder_name = os.path.basename(folder_path) + json_files = glob.glob(os.path.join(folder_path, "*.json")) + # assert len(json_files) == 2, f"Expected 2 json files in {folder_name}, found {len(json_files)}" + + if not json_files: + print(f"No JSON files found in {folder_name}") + return None + else: + outcome = False + for json_file in json_files: + outcome = analyze_json_file(json_file) + if outcome: + return True + return False + +def aggregate_results(local_folders): + """ + Aggregates the analysis results for each folder. + + Args: + local_folders (list): List of local folder paths containing the JSON files. + + Returns: + dict: A dictionary where keys are folder names and values are the aggregated outcomes. + """ + aggregated_data = {} + + total = 0 + successful = 0 + for folder_path in tqdm(local_folders): + folder_name = os.path.basename(folder_path) + + try: + result = extract_result(folder_path) + if result is not None: + total += 1 + successful += int(result) + success = int(extract_result(folder_path)) + successful += success + except Exception as e: + print(f"Error processing {folder_name}: {e}") + + return { + "total": total, + "successful": successful, + } + def read_settings(file_path): """Read and parse the settings.js file to get agent profiles.""" with open(file_path, 'r', encoding='utf-8') as file: @@ -155,11 +235,15 @@ def launch_parallel_experiments(task_path, task_type=task_type) time.sleep(5) - for i in range(20): - for i in range(len(servers)): - session_name = str(servers[i][1] - 55916) - subprocess.run(["tmux", "send-keys", "-t", "server_" + session_name, f"/op @a", "C-m"]) - time.sleep(10) + # total_num_tasks = len(task_ids) + # total_num_experiments = total_num_tasks * num_exp + # total_run = 0 + # while total_run < total_num_experiments: + # results = aggregate_results([f"{experiments_folder}/{task_id}" for task_id in task_ids]) + # total_run = results["total"] + # print(f"Total tasks run: {total_run}/{total_num_experiments}") + # print(results) + # time.sleep(15) def launch_server_experiment(task_path, task_ids, @@ -403,6 +487,8 @@ def clean_up_server_files(num_copies): for i in range(num_copies): dest_path = f"./server_data_{i}/" delete_server_files(dest_path) + + def copy_server_files(source_path, dest_path): """Copy server files to the specified location.""" @@ -436,6 +522,13 @@ def delete_server_files(dest_path): print(f"Server files deleted from {dest_path}") except Exception as e: print(f"Error deleting server files: {e}") + delete_server_files(dest_path) + if not os.path.exists(dest_path): + print("Server files deleted successfully.") + else: + print("Error deleting server files.") + delete_server_files(dest_path) + def launch_world(server_path="./server_data/", agent_names=["andy", "jill"], session_name="server"): """Launch the Minecraft world.""" diff --git a/src/agent/agent.js b/src/agent/agent.js index ccc15fc..bfa9c53 100644 --- a/src/agent/agent.js +++ b/src/agent/agent.js @@ -24,6 +24,8 @@ export class Agent { } console.log('Starting agent initialization with profile:', profile_fp); + + // Initialize components with more detailed error handling console.log('Initializing action manager...'); @@ -45,7 +47,21 @@ export class Agent { console.log('Initializing examples...'); await this.prompter.initExamples(); console.log('Initializing task...'); - this.task = new Task(this, task_path, task_id); + + // load mem first before doing task + let save_data = null; + if (load_mem) { + save_data = this.history.load(); + } + console.log(save_data); + let taskStart = null; + if (save_data) { + taskStart = save_data.taskStart; + } else { + taskStart = Date.now(); + } + // incorporate new restart time into task + this.task = new Task(this, task_path, task_id, taskStart); this.blocked_actions = settings.blocked_actions.concat(this.task.blocked_actions || []); blacklistCommands(this.blocked_actions); @@ -56,10 +72,7 @@ export class Agent { initModes(this); - let save_data = null; - if (load_mem) { - save_data = this.history.load(); - } + this.bot.on('login', () => { console.log(this.name, 'logged in!'); diff --git a/src/agent/history.js b/src/agent/history.js index 4ef0c37..13b9c79 100644 --- a/src/agent/history.js +++ b/src/agent/history.js @@ -86,6 +86,7 @@ export class History { turns: this.turns, self_prompting_state: this.agent.self_prompter.state, self_prompt: this.agent.self_prompter.isStopped() ? null : this.agent.self_prompter.prompt, + taskStart: this.agent.task.taskStartTime, last_sender: this.agent.last_sender }; writeFileSync(this.memory_fp, JSON.stringify(data, null, 2)); diff --git a/src/agent/tasks.js b/src/agent/tasks.js index 9e5c9bb..141d1a4 100644 --- a/src/agent/tasks.js +++ b/src/agent/tasks.js @@ -149,11 +149,16 @@ class CookingCraftingTaskValidator { } export class Task { - constructor(agent, task_path, task_id) { + constructor(agent, task_path, task_id, taskStartTime = null) { this.agent = agent; this.data = null; - this.taskTimeout = 300; - this.taskStartTime = Date.now(); + console.log("task start time", taskStartTime); + if (taskStartTime !== null) + this.taskStartTime = taskStartTime; + else + this.taskStartTime = Date.now(); + + console.log(this.taskStartTime); this.validator = null; this.reset_function = null; this.blocked_actions = []; From 2e4974ddd819f2029a5eab5568f884ed903c6c91 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Sun, 16 Mar 2025 21:56:08 -0700 Subject: [PATCH 18/28] dynamic logging --- evaluation_script.py | 52 +++++++++++++++++++++++++++----------------- 1 file changed, 32 insertions(+), 20 deletions(-) diff --git a/evaluation_script.py b/evaluation_script.py index 2f247d8..96edbc3 100644 --- a/evaluation_script.py +++ b/evaluation_script.py @@ -13,6 +13,7 @@ import json import glob from tqdm import tqdm +import boto3 BLOCKED_ACTIONS_COOKING = [ '!activate', '!attackPlayer', '!checkBlueprint', '!checkBlueprintLevel', @@ -105,8 +106,6 @@ def aggregate_results(local_folders): if result is not None: total += 1 successful += int(result) - success = int(extract_result(folder_path)) - successful += success except Exception as e: print(f"Error processing {folder_name}: {e}") @@ -215,6 +214,14 @@ def launch_parallel_experiments(task_path, experiments_folder = f"experiments/{exp_name}_{date_time}" exp_name = f"{exp_name}_{date_time}" + split_task_path = task_path.split("/") + if len(split_task_path) > 1: + task_path_name = split_task_path[-2] + else: + task_path_name = "tasks" + + s3_path = f"{bucket_name}/{task_type}/{model}/{task_path_name}/{exp_name}/" + # start wandb os.makedirs(experiments_folder, exist_ok=True) for i, server in enumerate(servers): @@ -232,18 +239,25 @@ def launch_parallel_experiments(task_path, insecure_coding=insecure_coding, num_agents=num_agents, url=url, - task_type=task_type) + task_type=task_type, + s3_path=s3_path) time.sleep(5) - # total_num_tasks = len(task_ids) - # total_num_experiments = total_num_tasks * num_exp - # total_run = 0 - # while total_run < total_num_experiments: - # results = aggregate_results([f"{experiments_folder}/{task_id}" for task_id in task_ids]) - # total_run = results["total"] - # print(f"Total tasks run: {total_run}/{total_num_experiments}") - # print(results) - # time.sleep(15) + total_num_tasks = len(task_ids) + total_num_experiments = total_num_tasks * num_exp + total_run = 0 + while total_run < total_num_experiments: + results = aggregate_results([f"{experiments_folder}/{task_id}" for task_id in task_ids]) + total_run = results["total"] + print(f"Total tasks run: {total_run}/{total_num_experiments}") + print(results) + with open(f"{experiments_folder}/results.txt", "w") as file: + file.write(str(results)) + if s3: + s3 = boto3.client('s3') + s3.upload_file(f"{experiments_folder}/results.txt", bucket_name, s3_path) + + time.sleep(15) def launch_server_experiment(task_path, task_ids, @@ -259,7 +273,8 @@ def launch_server_experiment(task_path, template_profile="profiles/tasks/collab_profile.json", insecure_coding=False, url="http://127.0.0.1:8000/v1", - task_type="techtree"): + task_type="techtree", + s3_path=""): """ Launch a Minecraft server and run experiments on it. @param task_path: Path to the task file @@ -341,11 +356,8 @@ def launch_server_experiment(task_path, elif task_type == "construction": set_environment_variable_tmux_session(session_name, "BLOCKED_ACTIONS", BLOCKED_ACTIONS_CONSTRUCTION) - split_task_path = task_path.split("/") - if len(split_task_path) > 1: - task_path_name = split_task_path[-2] - else: - task_path_name = "tasks" + + script_content = "" for task_id in task_ids: @@ -368,7 +380,7 @@ def launch_server_experiment(task_path, script_content += f"{cp_cmd}\n" script_content += "sleep 1\n" if s3: - s3_cmd = f"aws s3 cp {agent_file_path} s3://{bucket_name}/{task_type}/{model}/{task_path_name}/{exp_name}/{task_id}/{agent}_{_}.json" + s3_cmd = f"aws s3 cp {agent_file_path} s3://{s3_path}/{task_id}/{agent}_{_}.json" script_content += f"echo 'Uploading {agent_file_path} to S3'\n" script_content += f"echo '{s3_cmd}'\n" script_content += f"{s3_cmd}\n" @@ -376,7 +388,7 @@ def launch_server_experiment(task_path, script_content += f"sleep 10\n" if s3: for agent in agent_names: - script_content += f"aws s3 cp bots/{agent} s3://{bucket_name}/{task_type}/{model}/{task_path_name}/{exp_name}/bots/{agent} --recursive\n" + script_content += f"aws s3 cp bots/{agent} s3://{s3_path}/bots/{agent} --recursive\n" # Create a temporary shell script file script_file = f"./tmp/experiment_script_{session_name}.sh" From fe4e75612d489617994ccb4637d2adb61f2db836 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Sun, 16 Mar 2025 22:10:32 -0700 Subject: [PATCH 19/28] one more try catch block around starting the server --- evaluation_script.py | 29 ++++++++++++++++++++++------- 1 file changed, 22 insertions(+), 7 deletions(-) diff --git a/evaluation_script.py b/evaluation_script.py index 96edbc3..6495e50 100644 --- a/evaluation_script.py +++ b/evaluation_script.py @@ -11,6 +11,7 @@ import time import filecmp import json import glob +import socket from tqdm import tqdm import boto3 @@ -322,7 +323,7 @@ def launch_server_experiment(task_path, agent_profiles_str += f'\"{agent}\", ' agent_profiles_str += f"\"{agent_profiles[-1]}\"]'" print(agent_profiles_str) - launch_world(server_path, session_name="server_" + session_name, agent_names=agent_names) + launch_world(server_path, session_name="server_" + session_name, agent_names=agent_names, port=server_port) subprocess.run(['tmux', 'new-session', '-d', '-s', session_name], check=True) @@ -542,16 +543,30 @@ def delete_server_files(dest_path): delete_server_files(dest_path) -def launch_world(server_path="./server_data/", agent_names=["andy", "jill"], session_name="server"): +def launch_world(server_path="./server_data/", agent_names=["andy", "jill"], session_name="server", port=55916): """Launch the Minecraft world.""" - print(server_path) + print(f"Launching Minecraft world with port {port}...") cmd = f"cd {server_path} && java -jar server.jar" subprocess.run(['tmux', 'new-session', '-d', '-s', session_name], check=True) subprocess.run(["tmux", "send-keys", "-t", session_name, cmd, "C-m"]) - # for agent in agent_names: - # print(f"\n\n/op {agent}\n\n") - # subprocess.run(["tmux", "send-keys", "-t", session_name, f"/op {agent}", "C-m"]) - time.sleep(5) + time.sleep(10) + if not test_server_running(port): + print("Server failed to start. Retrying...") + launch_world(server_path, agent_names, session_name, port) + +def test_server_running(port=55916): + host = 'localhost' + + with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s: + try: + s.connect((host, port)) + print("Server is running on port 55916") + return True + except ConnectionRefusedError: + print("Server is not running on port 55916") + return False + + def kill_world(session_name="server"): """Kill the Minecraft world.""" From 0dea3c0720333e5fce250e4c6e0e947a0c1fc94e Mon Sep 17 00:00:00 2001 From: Isadora White Date: Sun, 16 Mar 2025 22:17:31 -0700 Subject: [PATCH 20/28] group project tasks --- tasks/cse291/multi_agent.json | 703 +++++++++++++++++++++++++++++++++ tasks/cse291/single_agent.json | 291 ++++++++++++++ 2 files changed, 994 insertions(+) create mode 100644 tasks/cse291/multi_agent.json create mode 100644 tasks/cse291/single_agent.json diff --git a/tasks/cse291/multi_agent.json b/tasks/cse291/multi_agent.json new file mode 100644 index 0000000..c7e91cf --- /dev/null +++ b/tasks/cse291/multi_agent.json @@ -0,0 +1,703 @@ +{ + "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": 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 + }, + "1": { + "black_wool": 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 + }, + "1": { + "purple_wool": 3, + "crafting_table": 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 + }, + "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.", + "initial_inventory": { + "0": { + "oak_planks": 4, + "book": 2 + }, + "1": { + "oak_planks": 2, + "book": 1, + "crafting_table": 1 + } + }, + "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 + }, + "1": { + "iron_ingot": 2, + "redstone": 1, + "crafting_table": 1 + } + }, + "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 + }, + "1": { + "string": 1, + "crafting_table": 1 + } + }, + "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 + }, + "1": { + "wheat": 1, + "milk_bucket": 2, + "crafting_table": 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 + }, + "1": { + "gold_nugget": 3, + "crafting_table": 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 + }, + "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.", + "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, + "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, + "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": 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 + }, + "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 + }, + "1": { + "birch_log": 2, + "book": 3 + } + }, + "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 + }, + "1": { + "gold_ingot": 2, + "redstone": 1, + "crafting_table": 1 + } + }, + "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 + }, + "1": { + "gunpowder": 3 + } + }, + "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 + }, + "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.", + "initial_inventory": { + "0": { + "black_dye": 1 + }, + "1": { + "white_wool": 1, + "white_dye": 2 + } + }, + "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": { + "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.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "oak_planks": 6 + }, + "1": { + "redstone": 1, + "iron_ingot": 3, + "crafting_table": 1 + } + }, + "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 + }, + "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.", + "initial_inventory": { + "0": { + "oak_planks": 8, + "iron_ingot": 2 + }, + "1": { + "string": 2, + "crafting_table": 1 + } + }, + "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 diff --git a/tasks/cse291/single_agent.json b/tasks/cse291/single_agent.json new file mode 100644 index 0000000..164ebd4 --- /dev/null +++ b/tasks/cse291/single_agent.json @@ -0,0 +1,291 @@ +{ + "crafting_iron_pickaxe": { + "goal": "Craft an iron pickaxe.", + "initial_inventory": { + "stone_pickaxe": 1 + }, + "agent_count": 1, + "target": "iron_pickaxe", + "number_of_target": 1, + "type": "techtree", + "timeout": 500 + }, + "crafting_stick": { + "goal": "Craft sticks.", + "initial_inventory": {}, + "agent_count": 1, + "target": "stick", + "number_of_target": 4, + "type": "techtree", + "timeout": 300 + }, + "crafting_oak_log": { + "goal": "Get oak logs.", + "initial_inventory": {}, + "agent_count": 1, + "target": "oak_log", + "number_of_target": 1, + "type": "techtree", + "timeout": 300 + }, + "crafting_wooden_pickaxe": { + "goal": "Craft a wooden pickaxe.", + "initial_inventory": {}, + "agent_count": 1, + "target": "wooden_pickaxe", + "number_of_target": 1, + "type": "techtree", + "timeout": 300 + }, + "crafting_stone_pickaxe": { + "goal": "Craft a stone pickaxe.", + "initial_inventory": {}, + "agent_count": 1, + "target": "stone_pickaxe", + "number_of_target": 1, + "type": "techtree", + "timeout": 300 + }, + "crafting_shears": { + "goal": "Craft shears.", + "initial_inventory": { + "iron_pickaxe": 1 + }, + "agent_count": 1, + "target": "shears", + "number_of_target": 1, + "type": "techtree", + "timeout": 500 + }, + "crafting_redstone": { + "goal": "Get redstone.", + "initial_inventory": { + "iron_pickaxe": 1 + }, + "agent_count": 1, + "target": "redstone", + "number_of_target": 1, + "type": "techtree", + "timeout": 300 + }, + "crafting_gold_ingot": { + "goal": "Get gold ingot.", + "initial_inventory": { + "iron_pickaxe": 1 + }, + "agent_count": 1, + "target": "gold_ingot", + "number_of_target": 1, + "type": "techtree", + "timeout": 500 + }, + "crafting_copper_ingot": { + "goal": "Get copper ingot.", + "initial_inventory": { + "iron_pickaxe": 1 + }, + "agent_count": 1, + "target": "copper_ingot", + "number_of_target": 1, + "type": "techtree", + "timeout": 500 + }, + "crafting_diamond": { + "goal": "Get diamond.", + "initial_inventory": { + "iron_pickaxe": 1 + }, + "agent_count": 1, + "target": "diamond", + "number_of_target": 1, + "type": "techtree", + "timeout": 500 + }, + "crafting_pink_wool_missing_wool": { + "goal": "Craft a pink wool.", + "initial_inventory": { + "pink_dye": 1, + "shears": 1 + }, + "agent_count": 1, + "target": "pink_wool", + "number_of_target": 1, + "type": "techtree", + "timeout": 500 + }, + "crafting_light_gray_banner": { + "goal": "Craft a light gray banner.", + "initial_inventory": { + "shears": 1, + "light_gray_dye": 7, + "oak_planks": 1, + "wool": 5 + }, + "agent_count": 1, + "target": "light_gray_banner", + "number_of_target": 1, + "type": "techtree", + "timeout": 500 + }, + "crafting_brush_missing_copper_ingot_": { + "goal": "Craft a brush.", + "initial_inventory": { + "feather": 1, + "diamond_pickaxe": 1 + }, + "agent_count": 1, + "target": "brush", + "number_of_target": 1, + "type": "techtree", + "timeout": 500 + }, + "crafting_shield_missing_planks": { + "goal": "Craft a shield.", + "initial_inventory": { + "iron_ingot": 6 + }, + "agent_count": 1, + "target": "shield", + "number_of_target": 1, + "type": "techtree", + "timeout": 300 + }, + "crafting_shield_missing_iron_ingot": { + "goal": "Craft a shield.", + "initial_inventory": { + "oak_planks": 7 + }, + "agent_count": 1, + "target": "shield", + "number_of_target": 1, + "type": "techtree", + "timeout": 500 + }, + "crafting_chest_minecart": { + "goal": "Craft a chest minecart.", + "agent_count": 1, + "initial_inventory":{ + "chest": 1, + "minecart": 1 + }, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "timeout": 300 + }, + "crafting_stone_hoe": { + "goal": "Craft a stone hoe.", + "initial_inventory": { + "wooden_pickaxe": 1 + }, + "agent_count": 1, + "target": "stone_hoe", + "number_of_target": 1, + "type": "techtree", + "timeout": 300 + }, + "crafting_wooden_axe": { + "goal": "Craft a wooden axe.", + "initial_inventory": {}, + "agent_count": 1, + "target": "wooden_axe", + "number_of_target": 1, + "type": "techtree", + "timeout": 300 + }, + "crafting_wooden_shovel": { + "goal": "Craft a wooden shovel.", + "initial_inventory": {}, + "agent_count": 1, + "target": "wooden_shovel", + "number_of_target": 1, + "type": "techtree", + "timeout": 300 + }, + "crafting_crafting_table": { + "goal": "Craft a crafting table.", + "initial_inventory": {}, + "agent_count": 1, + "target": "crafting_table", + "number_of_target": 1, + "type": "techtree", + "timeout": 300 + }, + "crafting_furnace": { + "goal": "Craft a furnace.", + "initial_inventory": { + "wooden_pickaxe": 1 + }, + "agent_count": 1, + "target": "furnace", + "number_of_target": 1, + "type": "techtree", + "timeout": 300 + }, + "crafting_torch": { + "goal": "Craft torches.", + "initial_inventory": { + "wooden_pickaxe": 1 + }, + "agent_count": 1, + "target": "torch", + "number_of_target": 4, + "type": "techtree", + "timeout": 300 + }, + "crafting_iron_ingot": { + "goal": "Get iron ingot.", + "initial_inventory": { + "stone_pickaxe": 1 + }, + "agent_count": 1, + "target": "iron_ingot", + "number_of_target": 1, + "type": "techtree", + "timeout": 500 + }, + "crafting_diamond_from_stone_pickaxe": { + "goal": "Get a diamond using only a stone pickaxe.", + "initial_inventory": { + "stone_pickaxe": 1 + }, + "agent_count": 1, + "target": "diamond", + "number_of_target": 1, + "type": "techtree", + "timeout": 500 + }, + "crafting_diamond_pickaxe": { + "goal": "Craft a diamond pickaxe.", + "initial_inventory": { + "iron_pickaxe": 1 + }, + "agent_count": 1, + "target": "diamond_pickaxe", + "number_of_target": 1, + "type": "techtree", + "timeout": 500 + }, + "crafting_compass": { + "goal": "Craft a compass.", + "initial_inventory": { + "stone_pickaxe": 1 + }, + "agent_count": 1, + "target": "compass", + "number_of_target": 1, + "type": "techtree", + "timeout": 500 + }, + "mining_lapis_lazuli": { + "goal": "Mine lapis lazuli.", + "initial_inventory": { + "iron_pickaxe": 1 + }, + "agent_count": 1, + "target": "lapis_lazuli", + "number_of_target": 1, + "type": "techtree", + "timeout": 300 + } +} \ No newline at end of file From 5a230e707e0f1345dfa95967993fe9857c3b295d Mon Sep 17 00:00:00 2001 From: hlillemark Date: Mon, 17 Mar 2025 11:53:31 -0700 Subject: [PATCH 21/28] Edit eval script to work with ollama model --- evaluation_script.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/evaluation_script.py b/evaluation_script.py index 2f247d8..e9f6025 100644 --- a/evaluation_script.py +++ b/evaluation_script.py @@ -446,6 +446,12 @@ def make_profiles(agent_names, models, apis, template_profile="profiles/collab_p "model": models[index], "url": url } + elif apis[index] == "ollama": + profile["model"] = { + "api": "ollama", + "model": models[index], + "embedding": "ollama" + } else: profile["model"] = models[index] From 15ef88aa61a962f21272d7fd78d3db55ce117653 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Mon, 17 Mar 2025 13:11:14 -0700 Subject: [PATCH 22/28] silly deletion issue --- evaluation_script.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/evaluation_script.py b/evaluation_script.py index 6495e50..341f156 100644 --- a/evaluation_script.py +++ b/evaluation_script.py @@ -500,8 +500,6 @@ def clean_up_server_files(num_copies): for i in range(num_copies): dest_path = f"./server_data_{i}/" delete_server_files(dest_path) - - def copy_server_files(source_path, dest_path): """Copy server files to the specified location.""" @@ -535,7 +533,6 @@ def delete_server_files(dest_path): print(f"Server files deleted from {dest_path}") except Exception as e: print(f"Error deleting server files: {e}") - delete_server_files(dest_path) if not os.path.exists(dest_path): print("Server files deleted successfully.") else: From 44bbde9badc119f4385ffa6fd449a3c57a9404a7 Mon Sep 17 00:00:00 2001 From: Ayush Maniar Date: Wed, 19 Mar 2025 20:36:27 -0700 Subject: [PATCH 23/28] Modified base cooking tasks and added 3+ agent tasks for cooking --- tasks/cooking_tasks/test_tasks.json | 1064 ----- .../hells_kitchen_test_tasks.json | 0 .../cooking_tasks/test_tasks/test_tasks.json | 1051 +++++ .../test_tasks/test_tasks_3_agents.json | 1255 ++++++ .../test_tasks/test_tasks_4_agents.json | 1425 +++++++ .../test_tasks/test_tasks_5_agents.json | 1408 ++++++ tasks/cooking_tasks/train_tasks.json | 2433 ----------- .../hells_kitchen_train_tasks.json | 0 .../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 +++++++++++++++++ 12 files changed, 17537 insertions(+), 3497 deletions(-) delete mode 100644 tasks/cooking_tasks/test_tasks.json rename tasks/cooking_tasks/{ => test_tasks}/hells_kitchen_test_tasks.json (100%) create mode 100644 tasks/cooking_tasks/test_tasks/test_tasks.json create mode 100644 tasks/cooking_tasks/test_tasks/test_tasks_3_agents.json create mode 100644 tasks/cooking_tasks/test_tasks/test_tasks_4_agents.json create mode 100644 tasks/cooking_tasks/test_tasks/test_tasks_5_agents.json delete mode 100644 tasks/cooking_tasks/train_tasks.json rename tasks/cooking_tasks/{ => train_tasks}/hells_kitchen_train_tasks.json (100%) create mode 100644 tasks/cooking_tasks/train_tasks/train_tasks.json create mode 100644 tasks/cooking_tasks/train_tasks/train_tasks_3_agents.json create mode 100644 tasks/cooking_tasks/train_tasks/train_tasks_4_agents.json create mode 100644 tasks/cooking_tasks/train_tasks/train_tasks_5_agents.json diff --git a/tasks/cooking_tasks/test_tasks.json b/tasks/cooking_tasks/test_tasks.json deleted file mode 100644 index 27708c2..0000000 --- a/tasks/cooking_tasks/test_tasks.json +++ /dev/null @@ -1,1064 +0,0 @@ -{ - "multiagent_cooking_1_golden_apple_blocked_access_0": { - "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": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 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": 1, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "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_cooked_chicken_1_cooked_rabbit": { - "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": [], - "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." - }, - "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_rabbit_1_golden_apple": { - "conversation": "Let's collaborate to make golden_apple and cooked_rabbit.", - "agent_count": 2, - "target": { - "golden_apple": 1, - "cooked_rabbit": 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." - ], - "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_apple, 1 cooked_rabbit. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold 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_rabbit:\nStep 1: Kill 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_apple, 1 cooked_rabbit. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold 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_rabbit:\nStep 1: Kill 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": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_cooked_chicken_1_golden_apple": { - "conversation": "Let's collaborate to make cooked_chicken and golden_apple.", - "agent_count": 2, - "target": { - "cooked_chicken": 1, - "golden_apple": 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." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple 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_chicken, 1 golden_apple. \n\nRecipe for cooked_chicken:\nStep 1: Kill a 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_apple:\nStep 1: Go to the chest and collect 1 apple 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_chicken, 1 golden_apple. \n\nRecipe for cooked_chicken:\nStep 1: Kill a 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_apple:\nStep 1: Go to the chest and collect 1 apple 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_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_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_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, and 1 egg.", - "Step 2: Go to the chest and grab a milk bucket.", - "Step 3: Go to the crafting table and craft the sugarcane into sugar.", - "Step 4: 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, and 1 egg.\nStep 2: Go to the chest and grab a milk bucket.\nStep 3: Go to the crafting table and craft the sugarcane into sugar.\nStep 4: 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": 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_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_cooked_chicken_1_golden_apple_blocked_access_1": { - "conversation": "Let's collaborate to make golden_apple and cooked_chicken.", - "agent_count": 2, - "target": { - "golden_apple": 1, - "cooked_chicken": 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." - ], - "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 golden_apple, 1 cooked_chicken. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold 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_chicken:\nStep 1: Kill 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_apple, 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_rabbit_stew_blocked_access_0": { - "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.", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab oak_planks.", - "Step 4: Go to the crafting table and make a bowl using the oak_planks.", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw 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 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.\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab oak_planks.\nStep 4: Go to the crafting table and make a bowl using the oak_planks.\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw 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": 7, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 4, - "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_cake_blocked_access_0_1": { - "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, and 1 egg.", - "Step 2: Go to the chest and grab a milk bucket.", - "Step 3: Go to the crafting table and craft the sugarcane into sugar.", - "Step 4: 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", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cake. ", - "1": "Collaborate with agents around you to make 1 cake. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 2, - "unique_target_items": 1, - "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_cake_1_cooked_chicken": { - "conversation": "Let's collaborate to make cooked_chicken and cake.", - "agent_count": 2, - "target": { - "cooked_chicken": 1, - "cake": 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." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane, and 1 egg.", - "Step 2: Go to the chest and grab a milk bucket.", - "Step 3: Go to the crafting table and craft the sugarcane into sugar.", - "Step 4: 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_chicken, 1 cake. \n\nRecipe for cooked_chicken:\nStep 1: Kill a 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane, and 1 egg.\nStep 2: Go to the chest and grab a milk bucket.\nStep 3: Go to the crafting table and craft the sugarcane into sugar.\nStep 4: 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_chicken, 1 cake. \n\nRecipe for cooked_chicken:\nStep 1: Kill a 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane, and 1 egg.\nStep 2: Go to the chest and grab a milk bucket.\nStep 3: Go to the crafting table and craft the sugarcane into sugar.\nStep 4: 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": 6, - "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_blocked_access_0_1": { - "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", - "1" - ], - "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. " - }, - "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_rabbit_1_golden_apple_blocked_access_1": { - "conversation": "Let's collaborate to make golden_apple and cooked_rabbit.", - "agent_count": 2, - "target": { - "golden_apple": 1, - "cooked_rabbit": 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." - ], - "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 golden_apple, 1 cooked_rabbit. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold 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_rabbit:\nStep 1: Kill 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_apple, 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_porkchop_blocked_access_0_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": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop. ", - "1": "Collaborate with agents around you to make 1 cooked_porkchop. " - }, - "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_cake_1_cooked_chicken_blocked_access_0": { - "conversation": "Let's collaborate to make cake and cooked_chicken.", - "agent_count": 2, - "target": { - "cake": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane, and 1 egg.", - "Step 2: Go to the chest and grab a milk bucket.", - "Step 3: Go to the crafting table and craft the sugarcane into sugar.", - "Step 4: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "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 cake, 1 cooked_chicken. ", - "1": "Collaborate with agents around you to make 1 cake, 1 cooked_chicken. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane, and 1 egg.\nStep 2: Go to the chest and grab a milk bucket.\nStep 3: Go to the crafting table and craft the sugarcane into sugar.\nStep 4: Go 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_chicken:\nStep 1: Kill 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": 6, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_chicken_1_rabbit_stew_blocked_access_0": { - "conversation": "Let's collaborate to make cooked_chicken and rabbit_stew.", - "agent_count": 2, - "target": { - "cooked_chicken": 1, - "rabbit_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." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom.", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab oak_planks.", - "Step 4: Go to the crafting table and make a bowl using the oak_planks.", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw 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 cooked_chicken, 1 rabbit_stew. ", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 rabbit_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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom.\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab oak_planks.\nStep 4: Go to the crafting table and make a bowl using the oak_planks.\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw 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": 9, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_cooked_rabbit_1_rabbit_stew_blocked_access_0_1": { - "conversation": "Let's collaborate to make rabbit_stew and cooked_rabbit.", - "agent_count": 2, - "target": { - "rabbit_stew": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom.", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab oak_planks.", - "Step 4: Go to the crafting table and make a bowl using the oak_planks.", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw 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": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_rabbit. ", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_rabbit. " - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_cooked_chicken_1_rabbit_stew_blocked_access_0_1": { - "conversation": "Let's collaborate to make cooked_chicken and rabbit_stew.", - "agent_count": 2, - "target": { - "cooked_chicken": 1, - "rabbit_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." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom.", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab oak_planks.", - "Step 4: Go to the crafting table and make a bowl using the oak_planks.", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw 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 cooked_chicken, 1 rabbit_stew. ", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 rabbit_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_cake_1_rabbit_stew_blocked_access_0_1": { - "conversation": "Let's collaborate to make rabbit_stew and cake.", - "agent_count": 2, - "target": { - "rabbit_stew": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom.", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab oak_planks.", - "Step 4: Go to the crafting table and make a bowl using the oak_planks.", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: 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, and 1 egg.", - "Step 2: Go to the chest and grab a milk bucket.", - "Step 3: Go to the crafting table and craft the sugarcane into sugar.", - "Step 4: 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", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 cake. ", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 cake. " - }, - "difficulty_metrics": { - "total_recipe_steps": 11, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 7, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_cooked_chicken_1_rabbit_stew_blocked_access_1": { - "conversation": "Let's collaborate to make rabbit_stew and cooked_chicken.", - "agent_count": 2, - "target": { - "rabbit_stew": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom.", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab oak_planks.", - "Step 4: Go to the crafting table and make a bowl using the oak_planks.", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw 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": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_chicken. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom.\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab oak_planks.\nStep 4: Go to the crafting table and make a bowl using the oak_planks.\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: 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_chicken:\nStep 1: Kill 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 cooked_chicken. " - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_cooked_porkchop_1_rabbit_stew_blocked_access_0": { - "conversation": "Let's collaborate to make cooked_porkchop and rabbit_stew.", - "agent_count": 2, - "target": { - "cooked_porkchop": 1, - "rabbit_stew": 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." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom.", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab oak_planks.", - "Step 4: Go to the crafting table and make a bowl using the oak_planks.", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw 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 cooked_porkchop, 1 rabbit_stew. ", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 rabbit_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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom.\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab oak_planks.\nStep 4: Go to the crafting table and make a bowl using the oak_planks.\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw 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": 9, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_golden_apple_1_rabbit_stew_blocked_access_1": { - "conversation": "Let's collaborate to make rabbit_stew and golden_apple.", - "agent_count": 2, - "target": { - "rabbit_stew": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom.", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab oak_planks.", - "Step 4: Go to the crafting table and make a bowl using the oak_planks.", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw 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": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom.\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab oak_planks.\nStep 4: Go to the crafting table and make a bowl using the oak_planks.\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go 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.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple. " - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_cake_1_cooked_chicken_blocked_access_0_1": { - "conversation": "Let's collaborate to make cooked_chicken and cake.", - "agent_count": 2, - "target": { - "cooked_chicken": 1, - "cake": 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." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane, and 1 egg.", - "Step 2: Go to the chest and grab a milk bucket.", - "Step 3: Go to the crafting table and craft the sugarcane into sugar.", - "Step 4: 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", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cake. ", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cake. " - }, - "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_rabbit_stew_blocked_access_1": { - "conversation": "Let's collaborate to make cooked_porkchop and rabbit_stew.", - "agent_count": 2, - "target": { - "cooked_porkchop": 1, - "rabbit_stew": 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." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom.", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab oak_planks.", - "Step 4: Go to the crafting table and make a bowl using the oak_planks.", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw 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 cooked_porkchop, 1 rabbit_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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom.\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab oak_planks.\nStep 4: Go to the crafting table and make a bowl using the oak_planks.\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw 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_porkchop, 1 rabbit_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 9, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_cake_1_cooked_porkchop_blocked_access_0_1": { - "conversation": "Let's collaborate to make cake and cooked_porkchop.", - "agent_count": 2, - "target": { - "cake": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane, and 1 egg.", - "Step 2: Go to the chest and grab a milk bucket.", - "Step 3: Go to the crafting table and craft the sugarcane into sugar.", - "Step 4: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "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 cake, 1 cooked_porkchop. ", - "1": "Collaborate with agents around you to make 1 cake, 1 cooked_porkchop. " - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/hells_kitchen_test_tasks.json b/tasks/cooking_tasks/test_tasks/hells_kitchen_test_tasks.json similarity index 100% rename from tasks/cooking_tasks/hells_kitchen_test_tasks.json rename to tasks/cooking_tasks/test_tasks/hells_kitchen_test_tasks.json diff --git a/tasks/cooking_tasks/test_tasks/test_tasks.json b/tasks/cooking_tasks/test_tasks/test_tasks.json new file mode 100644 index 0000000..665ede2 --- /dev/null +++ b/tasks/cooking_tasks/test_tasks/test_tasks.json @@ -0,0 +1,1051 @@ +{ + "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_3_agents.json b/tasks/cooking_tasks/test_tasks/test_tasks_3_agents.json new file mode 100644 index 0000000..c68e19d --- /dev/null +++ b/tasks/cooking_tasks/test_tasks/test_tasks_3_agents.json @@ -0,0 +1,1255 @@ +{ + "multiagent_cooking_3_1_baked_potato_1_bread_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, baked_potato, bread.", + "agent_count": 3, + "target": { + "golden_apple": 1, + "baked_potato": 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." + ], + "baked_potato": [ + "Step 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": "Collaborate with agents around you to make 1 golden_apple, 1 baked_potato, 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 baked_potato:\nStep 1: Go to 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.", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 baked_potato, 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 baked_potato:\nStep 1: Go to 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.", + "2": "Collaborate with agents around you to make 1 golden_apple, 1 baked_potato, 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 baked_potato:\nStep 1: Go to 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." + }, + "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_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": 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": [], + "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.", + "2": "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." + }, + "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_cake_1_rabbit_stew": { + "conversation": "Let's work together to make cake, rabbit_stew.", + "agent_count": 3, + "target": { + "cake": 1, + "rabbit_stew": 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." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw 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 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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw 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 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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw 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 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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw 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": 11, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_3_1_bread_1_cake_1_cooked_beef_blocked_access_0": { + "conversation": "Let's work together to make cake, bread, cooked_beef.", + "agent_count": 3, + "target": { + "cake": 1, + "bread": 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." + ], + "bread": [ + "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 agents around you to make 1 cake, 1 bread, 1 cooked_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." + }, + "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_bread_1_cake_1_rabbit_stew_blocked_access_1": { + "conversation": "Let's work together to make cake, bread, rabbit_stew.", + "agent_count": 3, + "target": { + "cake": 1, + "bread": 1, + "rabbit_stew": 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." + ], + "bread": [ + "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." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread, 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 bread:\nStep 1: Go 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.", + "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 rabbit_stew. ", + "2": "Collaborate with agents around you to make 1 cake, 1 bread, 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 bread:\nStep 1: Go 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." + }, + "difficulty_metrics": { + "total_recipe_steps": 13, + "blocked_agents_count": 1, + "unique_target_items": 3, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_3_1_baked_potato_1_bread_1_rabbit_stew": { + "conversation": "Let's work together to make rabbit_stew, bread, baked_potato.", + "agent_count": 3, + "target": { + "rabbit_stew": 1, + "bread": 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." + ], + "bread": [ + "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 rabbit_stew, 1 bread, 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 bread:\nStep 1: Go 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 rabbit_stew, 1 bread, 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 bread:\nStep 1: Go 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.", + "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 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 bread:\nStep 1: Go 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." + }, + "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_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": 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." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple 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." + }, + "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_baked_potato_1_bread_1_cooked_beef_blocked_access_0": { + "conversation": "Let's work together to make baked_potato, bread, cooked_beef.", + "agent_count": 3, + "target": { + "baked_potato": 1, + "bread": 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." + ], + "bread": [ + "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 agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef. ", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 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 bread:\nStep 1: Go 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 baked_potato, 1 bread, 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 bread:\nStep 1: Go 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": 6, + "blocked_agents_count": 1, + "unique_target_items": 3, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_3_1_baked_potato_1_cooked_beef_1_rabbit_stew": { + "conversation": "Let's work together to make cooked_beef, baked_potato, rabbit_stew.", + "agent_count": 3, + "target": { + "cooked_beef": 1, + "baked_potato": 1, + "rabbit_stew": 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." + ], + "baked_potato": [ + "Step 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 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 baked_potato:\nStep 1: Go to 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 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 baked_potato:\nStep 1: Go to 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 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 baked_potato:\nStep 1: Go to 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": 10, + "blocked_agents_count": 0, + "unique_target_items": 3, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_3_1_baked_potato_1_cooked_beef": { + "conversation": "Let's work together to make baked_potato, cooked_beef.", + "agent_count": 3, + "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.", + "2": "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_3_1_bread_1_cake": { + "conversation": "Let's work together to make bread, cake.", + "agent_count": 3, + "target": { + "bread": 1, + "cake": 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." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "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 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\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 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\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 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\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_3_1_cake_1_cooked_beef_1_golden_apple_blocked_access_1": { + "conversation": "Let's work together to make cooked_beef, golden_apple, cake.", + "agent_count": 3, + "target": { + "cooked_beef": 1, + "golden_apple": 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." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple 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 cooked_beef, 1 golden_apple, 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\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 cake. ", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\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": 9, + "blocked_agents_count": 1, + "unique_target_items": 3, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_3_1_cake_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make cake, golden_apple, rabbit_stew.", + "agent_count": 3, + "target": { + "cake": 1, + "golden_apple": 1, + "rabbit_stew": 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." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw 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 golden_apple, 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 golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold 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 cake, 1 golden_apple, 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 golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold 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.", + "2": "Collaborate with agents around you to make 1 cake, 1 golden_apple, 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 golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold 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": 13, + "blocked_agents_count": 0, + "unique_target_items": 3, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_3_1_bread_1_cake_1_rabbit_stew_blocked_access_2": { + "conversation": "Let's work together to make rabbit_stew, bread, cake.", + "agent_count": 3, + "target": { + "rabbit_stew": 1, + "bread": 1, + "cake": 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." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "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": [ + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 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 bread:\nStep 1: Go 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 rabbit_stew, 1 bread, 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 bread:\nStep 1: Go 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 rabbit_stew, 1 bread, 1 cake. " + }, + "difficulty_metrics": { + "total_recipe_steps": 13, + "blocked_agents_count": 1, + "unique_target_items": 3, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_3_1_baked_potato_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make rabbit_stew, baked_potato, golden_apple.", + "agent_count": 3, + "target": { + "rabbit_stew": 1, + "baked_potato": 1, + "golden_apple": 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." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple 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 baked_potato, 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 baked_potato:\nStep 1: Go to 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 rabbit_stew, 1 baked_potato, 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 baked_potato:\nStep 1: Go to 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.", + "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato, 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 baked_potato:\nStep 1: Go to 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": 10, + "blocked_agents_count": 0, + "unique_target_items": 3, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_3_1_bread_1_cake_1_cooked_beef": { + "conversation": "Let's work together to make cake, cooked_beef, bread.", + "agent_count": 3, + "target": { + "cake": 1, + "cooked_beef": 1, + "bread": 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." + ], + "bread": [ + "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_beef, 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_beef:\nStep 1: Kill a 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 cake, 1 cooked_beef, 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_beef:\nStep 1: Kill a 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 cake, 1 cooked_beef, 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_beef:\nStep 1: Kill a 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." + }, + "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_baked_potato_1_bread_blocked_access_1": { + "conversation": "Let's work together to make baked_potato, bread.", + "agent_count": 3, + "target": { + "baked_potato": 1, + "bread": 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." + ], + "bread": [ + "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 baked_potato, 1 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 bread:\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 baked_potato, 1 bread. ", + "2": "Collaborate with agents around you to make 1 baked_potato, 1 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 bread:\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": 4, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_3_1_cooked_beef_1_rabbit_stew": { + "conversation": "Let's work together to make cooked_beef, rabbit_stew.", + "agent_count": 3, + "target": { + "cooked_beef": 1, + "rabbit_stew": 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." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw 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 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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw 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 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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw 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 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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw 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_3_1_cake_1_rabbit_stew_blocked_access_1": { + "conversation": "Let's work together to make rabbit_stew, cake.", + "agent_count": 3, + "target": { + "rabbit_stew": 1, + "cake": 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." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "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 rabbit_stew, 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\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 cake. ", + "2": "Collaborate with agents around you to make 1 rabbit_stew, 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\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": 11, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_3_1_baked_potato_1_bread_1_golden_apple_blocked_access_0_1_2": { + "conversation": "Let's work together to make bread, baked_potato, golden_apple.", + "agent_count": 3, + "target": { + "bread": 1, + "baked_potato": 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." + ], + "baked_potato": [ + "Step 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": [ + "0", + "1", + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 golden_apple. ", + "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 golden_apple. ", + "2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 golden_apple. " + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 3, + "unique_target_items": 3, + "overall_difficulty_score": 8, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_3_1_baked_potato_1_cake_1_rabbit_stew_blocked_access_2": { + "conversation": "Let's work together to make baked_potato, cake, rabbit_stew.", + "agent_count": 3, + "target": { + "baked_potato": 1, + "cake": 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." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "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": [ + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake, 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go 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 baked_potato, 1 cake, 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go 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 baked_potato, 1 cake, 1 rabbit_stew. " + }, + "difficulty_metrics": { + "total_recipe_steps": 13, + "blocked_agents_count": 1, + "unique_target_items": 3, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_3_1_baked_potato_1_bread_1_cake_blocked_access_0": { + "conversation": "Let's work together to make baked_potato, cake, bread.", + "agent_count": 3, + "target": { + "baked_potato": 1, + "cake": 1, + "bread": 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." + ], + "bread": [ + "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 baked_potato, 1 cake, 1 bread. ", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake, 1 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.\n\nRecipe for bread:\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 baked_potato, 1 cake, 1 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.\n\nRecipe for bread:\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": 9, + "blocked_agents_count": 1, + "unique_target_items": 3, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_3_1_bread_1_cake_1_golden_apple_blocked_access_0": { + "conversation": "Let's work together to make cake, golden_apple, bread.", + "agent_count": 3, + "target": { + "cake": 1, + "golden_apple": 1, + "bread": 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." + ], + "bread": [ + "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 cake, 1 golden_apple, 1 bread. ", + "1": "Collaborate with agents around you to make 1 cake, 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 golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold 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 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 golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold 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." + }, + "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_baked_potato_1_cooked_beef_blocked_access_2": { + "conversation": "Let's work together to make cooked_beef, baked_potato.", + "agent_count": 3, + "target": { + "cooked_beef": 1, + "baked_potato": 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." + ], + "baked_potato": [ + "Step 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": [ + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_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 baked_potato:\nStep 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 cooked_beef, 1 baked_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 baked_potato:\nStep 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 cooked_beef, 1 baked_potato. " + }, + "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_3_1_baked_potato_1_cooked_beef_blocked_access_1": { + "conversation": "Let's work together to make cooked_beef, baked_potato.", + "agent_count": 3, + "target": { + "cooked_beef": 1, + "baked_potato": 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." + ], + "baked_potato": [ + "Step 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 cooked_beef, 1 baked_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 baked_potato:\nStep 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 cooked_beef, 1 baked_potato. ", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_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 baked_potato:\nStep 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": 4, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_3_1_bread_1_golden_apple_blocked_access_0_1_2": { + "conversation": "Let's work together to make golden_apple, bread.", + "agent_count": 3, + "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": [ + "0", + "1", + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. ", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. ", + "2": "Collaborate with agents around you to make 1 golden_apple, 1 bread. " + }, + "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_bread_1_cake_1_golden_apple_blocked_access_0_1_2": { + "conversation": "Let's work together to make bread, golden_apple, cake.", + "agent_count": 3, + "target": { + "bread": 1, + "golden_apple": 1, + "cake": 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." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "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", + "1", + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 golden_apple, 1 cake. ", + "1": "Collaborate with agents around you to make 1 bread, 1 golden_apple, 1 cake. ", + "2": "Collaborate with agents around you to make 1 bread, 1 golden_apple, 1 cake. " + }, + "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_baked_potato_1_cooked_beef_blocked_access_0_1_2": { + "conversation": "Let's work together to make baked_potato, cooked_beef.", + "agent_count": 3, + "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", + "2" + ], + "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. ", + "2": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. " + }, + "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_baked_potato_1_golden_apple_1_rabbit_stew_blocked_access_0_1_2": { + "conversation": "Let's work together to make golden_apple, rabbit_stew, baked_potato.", + "agent_count": 3, + "target": { + "golden_apple": 1, + "rabbit_stew": 1, + "baked_potato": 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." + ], + "baked_potato": [ + "Step 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", + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew, 1 baked_potato. ", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew, 1 baked_potato. ", + "2": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew, 1 baked_potato. " + }, + "difficulty_metrics": { + "total_recipe_steps": 10, + "blocked_agents_count": 3, + "unique_target_items": 3, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_3_1_cake_1_cooked_beef_1_golden_apple_blocked_access_0_1_2": { + "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": 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." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple 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", + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. ", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. ", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. " + }, + "difficulty_metrics": { + "total_recipe_steps": 9, + "blocked_agents_count": 3, + "unique_target_items": 3, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard" + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/test_tasks/test_tasks_4_agents.json b/tasks/cooking_tasks/test_tasks/test_tasks_4_agents.json new file mode 100644 index 0000000..3059a25 --- /dev/null +++ b/tasks/cooking_tasks/test_tasks/test_tasks_4_agents.json @@ -0,0 +1,1425 @@ +{ + "multiagent_cooking_4_1_cake_1_golden_apple_1_rabbit_stew_blocked_access_0_1_2_3": { + "conversation": "Let's work together to make cake, golden_apple, rabbit_stew.", + "agent_count": 4, + "target": { + "cake": 1, + "golden_apple": 1, + "rabbit_stew": 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." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw 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", + "2", + "3" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 golden_apple, 1 rabbit_stew. ", + "1": "Collaborate with agents around you to make 1 cake, 1 golden_apple, 1 rabbit_stew. ", + "2": "Collaborate with agents around you to make 1 cake, 1 golden_apple, 1 rabbit_stew. ", + "3": "Collaborate with agents around you to make 1 cake, 1 golden_apple, 1 rabbit_stew. " + }, + "difficulty_metrics": { + "total_recipe_steps": 13, + "blocked_agents_count": 4, + "unique_target_items": 3, + "overall_difficulty_score": 10, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_4_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew": { + "conversation": "Let's work together to make cake, cooked_beef, rabbit_stew, baked_potato.", + "agent_count": 4, + "target": { + "cake": 1, + "cooked_beef": 1, + "rabbit_stew": 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." + ], + "cooked_beef": [ + "Step 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 cake, 1 cooked_beef, 1 rabbit_stew, 1 baked_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 cooked_beef:\nStep 1: Kill a 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 cake, 1 cooked_beef, 1 rabbit_stew, 1 baked_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 cooked_beef:\nStep 1: Kill a 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 cake, 1 cooked_beef, 1 rabbit_stew, 1 baked_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 cooked_beef:\nStep 1: Kill a 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 cake, 1 cooked_beef, 1 rabbit_stew, 1 baked_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 cooked_beef:\nStep 1: Kill a 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." + }, + "difficulty_metrics": { + "total_recipe_steps": 15, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_4_1_bread_1_cake_1_cooked_beef": { + "conversation": "Let's work together to make cooked_beef, bread, cake.", + "agent_count": 4, + "target": { + "cooked_beef": 1, + "bread": 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." + ], + "bread": [ + "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 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 bread:\nStep 1: Go 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 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 bread:\nStep 1: Go 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 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 bread:\nStep 1: Go 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 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 bread:\nStep 1: Go 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." + }, + "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_bread_1_cake_1_cooked_beef_1_rabbit_stew_blocked_access_1_3": { + "conversation": "Let's work together to make cake, rabbit_stew, bread, cooked_beef.", + "agent_count": 4, + "target": { + "cake": 1, + "rabbit_stew": 1, + "bread": 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." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw 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." + ], + "cooked_beef": [ + "Step 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": [ + "1", + "3" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: 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 cooked_beef:\nStep 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 rabbit_stew, 1 bread, 1 cooked_beef. ", + "2": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: 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 cooked_beef:\nStep 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 rabbit_stew, 1 bread, 1 cooked_beef. " + }, + "difficulty_metrics": { + "total_recipe_steps": 15, + "blocked_agents_count": 2, + "unique_target_items": 4, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_4_1_baked_potato_1_bread_1_cake_blocked_access_0_1_2_3": { + "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": 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." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "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", + "1", + "2", + "3" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. ", + "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. ", + "2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. ", + "3": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. " + }, + "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_cake_1_cooked_beef_1_rabbit_stew_blocked_access_0_1": { + "conversation": "Let's work together to make rabbit_stew, cake, cooked_beef.", + "agent_count": 4, + "target": { + "rabbit_stew": 1, + "cake": 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." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "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 rabbit_stew, 1 cake, 1 cooked_beef. ", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 cake, 1 cooked_beef. ", + "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 cake, 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go 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_beef:\nStep 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 cake, 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go 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_beef:\nStep 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": 13, + "blocked_agents_count": 2, + "unique_target_items": 3, + "overall_difficulty_score": 8, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_4_1_baked_potato_1_bread_1_cake_1_cooked_beef": { + "conversation": "Let's work together to make baked_potato, cooked_beef, cake, bread.", + "agent_count": 4, + "target": { + "baked_potato": 1, + "cooked_beef": 1, + "cake": 1, + "bread": 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." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "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 baked_potato, 1 cooked_beef, 1 cake, 1 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.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go 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 baked_potato, 1 cooked_beef, 1 cake, 1 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.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go 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 baked_potato, 1 cooked_beef, 1 cake, 1 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.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go 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 baked_potato, 1 cooked_beef, 1 cake, 1 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.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go 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." + }, + "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_bread_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make bread, golden_apple, cooked_beef.", + "agent_count": 4, + "target": { + "bread": 1, + "golden_apple": 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." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple 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 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 golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold 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 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 golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold 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 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 golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold 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 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 golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold 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." + }, + "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_4_1_baked_potato_1_cake_1_rabbit_stew": { + "conversation": "Let's work together to make baked_potato, cake, rabbit_stew.", + "agent_count": 4, + "target": { + "baked_potato": 1, + "cake": 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." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "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 baked_potato, 1 cake, 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go 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 baked_potato, 1 cake, 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go 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 baked_potato, 1 cake, 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go 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 baked_potato, 1 cake, 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go 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." + }, + "difficulty_metrics": { + "total_recipe_steps": 13, + "blocked_agents_count": 0, + "unique_target_items": 3, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_4_1_cake_1_cooked_beef_1_rabbit_stew": { + "conversation": "Let's work together to make cooked_beef, rabbit_stew, cake.", + "agent_count": 4, + "target": { + "cooked_beef": 1, + "rabbit_stew": 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." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: 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: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "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 rabbit_stew, 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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make 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.", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 rabbit_stew, 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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make 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.", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 rabbit_stew, 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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make 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.", + "3": "Collaborate with agents around you to make 1 cooked_beef, 1 rabbit_stew, 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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make 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." + }, + "difficulty_metrics": { + "total_recipe_steps": 13, + "blocked_agents_count": 0, + "unique_target_items": 3, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_4_1_baked_potato_1_bread_1_rabbit_stew_blocked_access_1_3": { + "conversation": "Let's work together to make baked_potato, rabbit_stew, bread.", + "agent_count": 4, + "target": { + "baked_potato": 1, + "rabbit_stew": 1, + "bread": 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." + ], + "bread": [ + "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", + "3" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew, 1 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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: 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 baked_potato, 1 rabbit_stew, 1 bread. ", + "2": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew, 1 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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: 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 baked_potato, 1 rabbit_stew, 1 bread. " + }, + "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_bread_1_cake_1_golden_apple": { + "conversation": "Let's work together to make bread, golden_apple, cake.", + "agent_count": 4, + "target": { + "bread": 1, + "golden_apple": 1, + "cake": 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." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "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 golden_apple, 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 golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold 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 bread, 1 golden_apple, 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 golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold 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 bread, 1 golden_apple, 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 golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold 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.", + "3": "Collaborate with agents around you to make 1 bread, 1 golden_apple, 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 golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold 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": 9, + "blocked_agents_count": 0, + "unique_target_items": 3, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_4_1_baked_potato_1_bread_1_golden_apple_blocked_access_1_3": { + "conversation": "Let's work together to make golden_apple, baked_potato, bread.", + "agent_count": 4, + "target": { + "golden_apple": 1, + "baked_potato": 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." + ], + "baked_potato": [ + "Step 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": [ + "1", + "3" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 baked_potato, 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 baked_potato:\nStep 1: Go to 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.", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 baked_potato, 1 bread. ", + "2": "Collaborate with agents around you to make 1 golden_apple, 1 baked_potato, 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 baked_potato:\nStep 1: Go to 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.", + "3": "Collaborate with agents around you to make 1 golden_apple, 1 baked_potato, 1 bread. " + }, + "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_baked_potato_1_bread_1_rabbit_stew_blocked_access_2_3": { + "conversation": "Let's work together to make rabbit_stew, baked_potato, bread.", + "agent_count": 4, + "target": { + "rabbit_stew": 1, + "baked_potato": 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." + ], + "baked_potato": [ + "Step 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": [ + "3", + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato, 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 baked_potato:\nStep 1: Go to 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.", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato, 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 baked_potato:\nStep 1: Go to 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.", + "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato, 1 bread. ", + "3": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato, 1 bread. " + }, + "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_bread_1_golden_apple_1_rabbit_stew_blocked_access_2_3": { + "conversation": "Let's work together to make rabbit_stew, golden_apple, bread.", + "agent_count": 4, + "target": { + "rabbit_stew": 1, + "golden_apple": 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." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple 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": [ + "3", + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 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 golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold 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 rabbit_stew, 1 golden_apple, 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 golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold 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 rabbit_stew, 1 golden_apple, 1 bread. ", + "3": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 bread. " + }, + "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_baked_potato_1_golden_apple_1_rabbit_stew_blocked_access_0_1_2_3": { + "conversation": "Let's work together to make golden_apple, rabbit_stew, baked_potato.", + "agent_count": 4, + "target": { + "golden_apple": 1, + "rabbit_stew": 1, + "baked_potato": 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." + ], + "baked_potato": [ + "Step 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", + "2", + "3" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew, 1 baked_potato. ", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew, 1 baked_potato. ", + "2": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew, 1 baked_potato. ", + "3": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew, 1 baked_potato. " + }, + "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_baked_potato_1_cake_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, baked_potato, cake.", + "agent_count": 4, + "target": { + "golden_apple": 1, + "baked_potato": 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." + ], + "baked_potato": [ + "Step 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 golden_apple, 1 baked_potato, 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 baked_potato:\nStep 1: Go to 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 golden_apple, 1 baked_potato, 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 baked_potato:\nStep 1: Go to 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 golden_apple, 1 baked_potato, 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 baked_potato:\nStep 1: Go to 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.", + "3": "Collaborate with agents around you to make 1 golden_apple, 1 baked_potato, 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 baked_potato:\nStep 1: Go to 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": 9, + "blocked_agents_count": 0, + "unique_target_items": 3, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_4_1_baked_potato_1_bread_1_cake_1_rabbit_stew": { + "conversation": "Let's work together to make baked_potato, cake, rabbit_stew, bread.", + "agent_count": 4, + "target": { + "baked_potato": 1, + "cake": 1, + "rabbit_stew": 1, + "bread": 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." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw 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 baked_potato, 1 cake, 1 rabbit_stew, 1 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.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: 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 baked_potato, 1 cake, 1 rabbit_stew, 1 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.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: 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 baked_potato, 1 cake, 1 rabbit_stew, 1 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.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: 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 baked_potato, 1 cake, 1 rabbit_stew, 1 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.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: 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": 15, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_4_1_bread_1_cooked_beef_1_golden_apple_blocked_access_0_1_2_3": { + "conversation": "Let's work together to make bread, golden_apple, cooked_beef.", + "agent_count": 4, + "target": { + "bread": 1, + "golden_apple": 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." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple 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", + "1", + "2", + "3" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 golden_apple, 1 cooked_beef. ", + "1": "Collaborate with agents around you to make 1 bread, 1 golden_apple, 1 cooked_beef. ", + "2": "Collaborate with agents around you to make 1 bread, 1 golden_apple, 1 cooked_beef. ", + "3": "Collaborate with agents around you to make 1 bread, 1 golden_apple, 1 cooked_beef. " + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 4, + "unique_target_items": 3, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_4_1_bread_1_cooked_beef_1_golden_apple_blocked_access_0_1": { + "conversation": "Let's work together to make golden_apple, cooked_beef, bread.", + "agent_count": 4, + "target": { + "golden_apple": 1, + "cooked_beef": 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." + ], + "cooked_beef": [ + "Step 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": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 bread. ", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 bread. ", + "2": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 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 cooked_beef:\nStep 1: Kill a 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.", + "3": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 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 cooked_beef:\nStep 1: Kill a 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." + }, + "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_cake_1_cooked_beef_1_rabbit_stew_blocked_access_2_3": { + "conversation": "Let's work together to make cake, rabbit_stew, cooked_beef.", + "agent_count": 4, + "target": { + "cake": 1, + "rabbit_stew": 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." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw 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": [ + "2", + "3" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: 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 cake, 1 rabbit_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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: 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.", + "2": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 cooked_beef. ", + "3": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 cooked_beef. " + }, + "difficulty_metrics": { + "total_recipe_steps": 13, + "blocked_agents_count": 2, + "unique_target_items": 3, + "overall_difficulty_score": 8, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_4_1_baked_potato_1_bread_1_cooked_beef": { + "conversation": "Let's work together to make baked_potato, bread, cooked_beef.", + "agent_count": 4, + "target": { + "baked_potato": 1, + "bread": 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." + ], + "bread": [ + "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 baked_potato, 1 bread, 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 bread:\nStep 1: Go 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 baked_potato, 1 bread, 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 bread:\nStep 1: Go 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 baked_potato, 1 bread, 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 bread:\nStep 1: Go 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 baked_potato, 1 bread, 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 bread:\nStep 1: Go 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": 6, + "blocked_agents_count": 0, + "unique_target_items": 3, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_4_1_cooked_beef_1_golden_apple_1_rabbit_stew_blocked_access_0_2": { + "conversation": "Let's work together to make cooked_beef, rabbit_stew, golden_apple.", + "agent_count": 4, + "target": { + "cooked_beef": 1, + "rabbit_stew": 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." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw 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": [ + "0", + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 rabbit_stew, 1 golden_apple. ", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 rabbit_stew, 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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go 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.", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 rabbit_stew, 1 golden_apple. ", + "3": "Collaborate with agents around you to make 1 cooked_beef, 1 rabbit_stew, 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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go 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." + }, + "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_cake_1_cooked_beef_1_golden_apple_blocked_access_0_3": { + "conversation": "Let's work together to make cake, golden_apple, cooked_beef.", + "agent_count": 4, + "target": { + "cake": 1, + "golden_apple": 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." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple 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", + "3" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 golden_apple, 1 cooked_beef. ", + "1": "Collaborate with agents around you to make 1 cake, 1 golden_apple, 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 golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold 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 cake, 1 golden_apple, 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 golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold 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 cake, 1 golden_apple, 1 cooked_beef. " + }, + "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_cake_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make golden_apple, rabbit_stew, cake.", + "agent_count": 4, + "target": { + "golden_apple": 1, + "rabbit_stew": 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." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: 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: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "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 rabbit_stew, 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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make 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.", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew, 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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make 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.", + "2": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew, 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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make 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.", + "3": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew, 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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make 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." + }, + "difficulty_metrics": { + "total_recipe_steps": 13, + "blocked_agents_count": 0, + "unique_target_items": 3, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_4_1_baked_potato_1_bread_1_cake_1_rabbit_stew_blocked_access_0_1_2_3": { + "conversation": "Let's work together to make cake, bread, baked_potato, rabbit_stew.", + "agent_count": 4, + "target": { + "cake": 1, + "bread": 1, + "baked_potato": 1, + "rabbit_stew": 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." + ], + "bread": [ + "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." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw 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", + "2", + "3" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 baked_potato, 1 rabbit_stew. ", + "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 baked_potato, 1 rabbit_stew. ", + "2": "Collaborate with agents around you to make 1 cake, 1 bread, 1 baked_potato, 1 rabbit_stew. ", + "3": "Collaborate with agents around you to make 1 cake, 1 bread, 1 baked_potato, 1 rabbit_stew. " + }, + "difficulty_metrics": { + "total_recipe_steps": 15, + "blocked_agents_count": 4, + "unique_target_items": 4, + "overall_difficulty_score": 11, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_4_1_cake_1_cooked_beef_1_rabbit_stew_blocked_access_0_1_2_3": { + "conversation": "Let's work together to make cooked_beef, rabbit_stew, cake.", + "agent_count": 4, + "target": { + "cooked_beef": 1, + "rabbit_stew": 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." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: 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: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "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", + "1", + "2", + "3" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 rabbit_stew, 1 cake. ", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 rabbit_stew, 1 cake. ", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 rabbit_stew, 1 cake. ", + "3": "Collaborate with agents around you to make 1 cooked_beef, 1 rabbit_stew, 1 cake. " + }, + "difficulty_metrics": { + "total_recipe_steps": 13, + "blocked_agents_count": 4, + "unique_target_items": 3, + "overall_difficulty_score": 10, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_4_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_blocked_access_2_3": { + "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": 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." + ], + "baked_potato": [ + "Step 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": [ + "2", + "3" + ], + "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. ", + "3": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 baked_potato, 1 cooked_beef. " + }, + "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_baked_potato_1_bread_1_rabbit_stew_blocked_access_0_3": { + "conversation": "Let's work together to make bread, rabbit_stew, baked_potato.", + "agent_count": 4, + "target": { + "bread": 1, + "rabbit_stew": 1, + "baked_potato": 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." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw 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": [ + "3", + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 baked_potato. ", + "1": "Collaborate with agents around you to make 1 bread, 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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: 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 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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: 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 rabbit_stew, 1 baked_potato. " + }, + "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_baked_potato_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make golden_apple, baked_potato, rabbit_stew.", + "agent_count": 4, + "target": { + "golden_apple": 1, + "baked_potato": 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." + ], + "baked_potato": [ + "Step 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 golden_apple, 1 baked_potato, 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 baked_potato:\nStep 1: Go to 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 golden_apple, 1 baked_potato, 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 baked_potato:\nStep 1: Go to 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 golden_apple, 1 baked_potato, 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 baked_potato:\nStep 1: Go to 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 golden_apple, 1 baked_potato, 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 baked_potato:\nStep 1: Go to 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": 10, + "blocked_agents_count": 0, + "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/test_tasks/test_tasks_5_agents.json b/tasks/cooking_tasks/test_tasks/test_tasks_5_agents.json new file mode 100644 index 0000000..e73fb65 --- /dev/null +++ b/tasks/cooking_tasks/test_tasks/test_tasks_5_agents.json @@ -0,0 +1,1408 @@ +{ + "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_blocked_access_2_4": { + "conversation": "Let's work together to make golden_apple, rabbit_stew, bread, cooked_beef.", + "agent_count": 5, + "target": { + "golden_apple": 1, + "rabbit_stew": 1, + "bread": 1, + "cooked_beef": 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." + ], + "bread": [ + "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": [ + "4", + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew, 1 bread, 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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: 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 cooked_beef:\nStep 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 rabbit_stew, 1 bread, 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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: 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 cooked_beef:\nStep 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 golden_apple, 1 rabbit_stew, 1 bread, 1 cooked_beef. ", + "3": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew, 1 bread, 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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: 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 cooked_beef:\nStep 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 golden_apple, 1 rabbit_stew, 1 bread, 1 cooked_beef. " + }, + "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_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_blocked_access_0_1": { + "conversation": "Let's work together to make golden_apple, rabbit_stew, cooked_beef, cake.", + "agent_count": 5, + "target": { + "golden_apple": 1, + "rabbit_stew": 1, + "cooked_beef": 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." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw 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": [ + "1", + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew, 1 cooked_beef, 1 cake. ", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew, 1 cooked_beef, 1 cake. ", + "2": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew, 1 cooked_beef, 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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: 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 golden_apple, 1 rabbit_stew, 1 cooked_beef, 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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: 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.", + "4": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew, 1 cooked_beef, 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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: 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." + }, + "difficulty_metrics": { + "total_recipe_steps": 15, + "blocked_agents_count": 2, + "unique_target_items": 4, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple_blocked_access_0_1_2_3_4": { + "conversation": "Let's work together to make bread, cooked_beef, golden_apple, baked_potato.", + "agent_count": 5, + "target": { + "bread": 1, + "cooked_beef": 1, + "golden_apple": 1, + "baked_potato": 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." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple 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." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2", + "3", + "4" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 golden_apple, 1 baked_potato. ", + "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 golden_apple, 1 baked_potato. ", + "2": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 golden_apple, 1 baked_potato. ", + "3": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 golden_apple, 1 baked_potato. ", + "4": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 golden_apple, 1 baked_potato. " + }, + "difficulty_metrics": { + "total_recipe_steps": 8, + "blocked_agents_count": 5, + "unique_target_items": 4, + "overall_difficulty_score": 11, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_blocked_access_2_4": { + "conversation": "Let's work together to make golden_apple, bread, cooked_beef, cake.", + "agent_count": 5, + "target": { + "golden_apple": 1, + "bread": 1, + "cooked_beef": 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." + ], + "bread": [ + "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." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "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": [ + "4", + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 bread, 1 cooked_beef, 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 bread:\nStep 1: Go 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\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 bread, 1 cooked_beef, 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 bread:\nStep 1: Go 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\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 bread, 1 cooked_beef, 1 cake. ", + "3": "Collaborate with agents around you to make 1 golden_apple, 1 bread, 1 cooked_beef, 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 bread:\nStep 1: Go 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\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 golden_apple, 1 bread, 1 cooked_beef, 1 cake. " + }, + "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_baked_potato_1_bread_1_cake_1_golden_apple_blocked_access_0_1_2_3_4": { + "conversation": "Let's work together to make golden_apple, cake, baked_potato, bread.", + "agent_count": 5, + "target": { + "golden_apple": 1, + "cake": 1, + "baked_potato": 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." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "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." + ], + "bread": [ + "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", + "1", + "2", + "3", + "4" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cake, 1 baked_potato, 1 bread. ", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cake, 1 baked_potato, 1 bread. ", + "2": "Collaborate with agents around you to make 1 golden_apple, 1 cake, 1 baked_potato, 1 bread. ", + "3": "Collaborate with agents around you to make 1 golden_apple, 1 cake, 1 baked_potato, 1 bread. ", + "4": "Collaborate with agents around you to make 1 golden_apple, 1 cake, 1 baked_potato, 1 bread. " + }, + "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_baked_potato_1_bread_1_cake_1_golden_apple_blocked_access_0_3": { + "conversation": "Let's work together to make cake, baked_potato, bread, golden_apple.", + "agent_count": 5, + "target": { + "cake": 1, + "baked_potato": 1, + "bread": 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." + ], + "baked_potato": [ + "Step 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." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple 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": [ + "3", + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 baked_potato, 1 bread, 1 golden_apple. ", + "1": "Collaborate with agents around you to make 1 cake, 1 baked_potato, 1 bread, 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 baked_potato:\nStep 1: Go to 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 golden_apple:\nStep 1: Go to the chest and collect 1 apple 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 cake, 1 baked_potato, 1 bread, 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 baked_potato:\nStep 1: Go to 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 golden_apple:\nStep 1: Go to the chest and collect 1 apple 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 cake, 1 baked_potato, 1 bread, 1 golden_apple. ", + "4": "Collaborate with agents around you to make 1 cake, 1 baked_potato, 1 bread, 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 baked_potato:\nStep 1: Go to 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 golden_apple:\nStep 1: Go to the chest and collect 1 apple 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": 11, + "blocked_agents_count": 2, + "unique_target_items": 4, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_blocked_access_1_4": { + "conversation": "Let's work together to make bread, golden_apple, cake, baked_potato.", + "agent_count": 5, + "target": { + "bread": 1, + "golden_apple": 1, + "cake": 1, + "baked_potato": 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." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "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": [ + "4", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 bread, 1 golden_apple, 1 cake, 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go 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 bread, 1 golden_apple, 1 cake, 1 baked_potato. ", + "2": "Collaborate with agents around you to make 1 bread, 1 golden_apple, 1 cake, 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go 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 bread, 1 golden_apple, 1 cake, 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go 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 bread, 1 golden_apple, 1 cake, 1 baked_potato. " + }, + "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_baked_potato_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_blocked_access_0_1_2_3_4": { + "conversation": "Let's work together to make baked_potato, cooked_beef, rabbit_stew, golden_apple, bread.", + "agent_count": 5, + "target": { + "baked_potato": 1, + "cooked_beef": 1, + "rabbit_stew": 1, + "golden_apple": 1, + "bread": 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." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw 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": [ + "0", + "1", + "2", + "3", + "4" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef, 1 rabbit_stew, 1 golden_apple, 1 bread. ", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef, 1 rabbit_stew, 1 golden_apple, 1 bread. ", + "2": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef, 1 rabbit_stew, 1 golden_apple, 1 bread. ", + "3": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef, 1 rabbit_stew, 1 golden_apple, 1 bread. ", + "4": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef, 1 rabbit_stew, 1 golden_apple, 1 bread. " + }, + "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_baked_potato_1_bread_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make baked_potato, cooked_beef, bread, golden_apple.", + "agent_count": 5, + "target": { + "baked_potato": 1, + "cooked_beef": 1, + "bread": 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." + ], + "cooked_beef": [ + "Step 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 baked_potato, 1 cooked_beef, 1 bread, 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 cooked_beef:\nStep 1: Kill a 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 baked_potato, 1 cooked_beef, 1 bread, 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 cooked_beef:\nStep 1: Kill a 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 baked_potato, 1 cooked_beef, 1 bread, 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 cooked_beef:\nStep 1: Kill a 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.", + "3": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef, 1 bread, 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 cooked_beef:\nStep 1: Kill a 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.", + "4": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef, 1 bread, 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 cooked_beef:\nStep 1: Kill a 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." + }, + "difficulty_metrics": { + "total_recipe_steps": 8, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make golden_apple, cake, baked_potato, rabbit_stew, cooked_beef.", + "agent_count": 5, + "target": { + "golden_apple": 1, + "cake": 1, + "baked_potato": 1, + "rabbit_stew": 1, + "cooked_beef": 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." + ], + "baked_potato": [ + "Step 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." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew, 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go 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.\n\nRecipe for cooked_beef:\nStep 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 cake, 1 baked_potato, 1 rabbit_stew, 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go 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.\n\nRecipe for cooked_beef:\nStep 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 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew, 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go 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.\n\nRecipe for cooked_beef:\nStep 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 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew, 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go 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.\n\nRecipe for cooked_beef:\nStep 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 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew, 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go 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.\n\nRecipe for cooked_beef:\nStep 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": 17, + "blocked_agents_count": 0, + "unique_target_items": 5, + "overall_difficulty_score": 8, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_blocked_access_2_4": { + "conversation": "Let's work together to make baked_potato, rabbit_stew, cooked_beef, bread.", + "agent_count": 5, + "target": { + "baked_potato": 1, + "rabbit_stew": 1, + "cooked_beef": 1, + "bread": 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." + ], + "cooked_beef": [ + "Step 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": [ + "2", + "4" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew, 1 cooked_beef, 1 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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: 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 bread:\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 baked_potato, 1 rabbit_stew, 1 cooked_beef, 1 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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: 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 bread:\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 baked_potato, 1 rabbit_stew, 1 cooked_beef, 1 bread. ", + "3": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew, 1 cooked_beef, 1 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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: 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 bread:\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 baked_potato, 1 rabbit_stew, 1 cooked_beef, 1 bread. " + }, + "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_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew_blocked_access_1_2": { + "conversation": "Let's work together to make rabbit_stew, cooked_beef, cake, baked_potato.", + "agent_count": 5, + "target": { + "rabbit_stew": 1, + "cooked_beef": 1, + "cake": 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." + ], + "cooked_beef": [ + "Step 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." + ], + "baked_potato": [ + "Step 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", + "2" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef, 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 cooked_beef:\nStep 1: Kill a 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 baked_potato:\nStep 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 cake, 1 baked_potato. ", + "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef, 1 cake, 1 baked_potato. ", + "3": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef, 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 cooked_beef:\nStep 1: Kill a 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 baked_potato:\nStep 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 cooked_beef, 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 cooked_beef:\nStep 1: Kill a 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 baked_potato:\nStep 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": 15, + "blocked_agents_count": 2, + "unique_target_items": 4, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_blocked_access_1_3": { + "conversation": "Let's work together to make cake, baked_potato, cooked_beef, bread.", + "agent_count": 5, + "target": { + "cake": 1, + "baked_potato": 1, + "cooked_beef": 1, + "bread": 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." + ], + "cooked_beef": [ + "Step 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": [ + "3", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 baked_potato, 1 cooked_beef, 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 baked_potato:\nStep 1: Go to 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 bread:\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 baked_potato, 1 cooked_beef, 1 bread. ", + "2": "Collaborate with agents around you to make 1 cake, 1 baked_potato, 1 cooked_beef, 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 baked_potato:\nStep 1: Go to 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 bread:\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 baked_potato, 1 cooked_beef, 1 bread. ", + "4": "Collaborate with agents around you to make 1 cake, 1 baked_potato, 1 cooked_beef, 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 baked_potato:\nStep 1: Go to 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 bread:\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": 11, + "blocked_agents_count": 2, + "unique_target_items": 4, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew_blocked_access_0_1_2_3_4": { + "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": 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." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "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", + "2", + "3", + "4" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. ", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. ", + "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. ", + "3": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. ", + "4": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. " + }, + "difficulty_metrics": { + "total_recipe_steps": 15, + "blocked_agents_count": 5, + "unique_target_items": 4, + "overall_difficulty_score": 12, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew_blocked_access_0_2": { + "conversation": "Let's work together to make rabbit_stew, cake, golden_apple, baked_potato.", + "agent_count": 5, + "target": { + "rabbit_stew": 1, + "cake": 1, + "golden_apple": 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." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "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." + ] + }, + "blocked_access_to_recipe": [ + "2", + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 cake, 1 golden_apple, 1 baked_potato. ", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 cake, 1 golden_apple, 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go 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.", + "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 cake, 1 golden_apple, 1 baked_potato. ", + "3": "Collaborate with agents around you to make 1 rabbit_stew, 1 cake, 1 golden_apple, 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go 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.", + "4": "Collaborate with agents around you to make 1 rabbit_stew, 1 cake, 1 golden_apple, 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go 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." + }, + "difficulty_metrics": { + "total_recipe_steps": 15, + "blocked_agents_count": 2, + "unique_target_items": 4, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew_blocked_access_0_4": { + "conversation": "Let's work together to make cooked_beef, cake, rabbit_stew, baked_potato.", + "agent_count": 5, + "target": { + "cooked_beef": 1, + "cake": 1, + "rabbit_stew": 1, + "baked_potato": 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." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw 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": [ + "0", + "4" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 rabbit_stew, 1 baked_potato. ", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 rabbit_stew, 1 baked_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.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: 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 cooked_beef, 1 cake, 1 rabbit_stew, 1 baked_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.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: 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 cooked_beef, 1 cake, 1 rabbit_stew, 1 baked_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.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: 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 cooked_beef, 1 cake, 1 rabbit_stew, 1 baked_potato. " + }, + "difficulty_metrics": { + "total_recipe_steps": 15, + "blocked_agents_count": 2, + "unique_target_items": 4, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_rabbit_stew_blocked_access_1_4": { + "conversation": "Let's work together to make cake, baked_potato, rabbit_stew, bread.", + "agent_count": 5, + "target": { + "cake": 1, + "baked_potato": 1, + "rabbit_stew": 1, + "bread": 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." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw 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": [ + "4", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 baked_potato, 1 rabbit_stew, 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 baked_potato:\nStep 1: Go to 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 bread:\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 baked_potato, 1 rabbit_stew, 1 bread. ", + "2": "Collaborate with agents around you to make 1 cake, 1 baked_potato, 1 rabbit_stew, 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 baked_potato:\nStep 1: Go to 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 bread:\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 baked_potato, 1 rabbit_stew, 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 baked_potato:\nStep 1: Go to 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 bread:\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 baked_potato, 1 rabbit_stew, 1 bread. " + }, + "difficulty_metrics": { + "total_recipe_steps": 15, + "blocked_agents_count": 2, + "unique_target_items": 4, + "overall_difficulty_score": 9, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew": { + "conversation": "Let's work together to make rabbit_stew, cake, cooked_beef, baked_potato.", + "agent_count": 5, + "target": { + "rabbit_stew": 1, + "cake": 1, + "cooked_beef": 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." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "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." + ], + "baked_potato": [ + "Step 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 cake, 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go 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_beef:\nStep 1: Kill a 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 cake, 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go 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_beef:\nStep 1: Kill a 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 cake, 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go 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_beef:\nStep 1: Kill a 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 cake, 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go 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_beef:\nStep 1: Kill a 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.", + "4": "Collaborate with agents around you to make 1 rabbit_stew, 1 cake, 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go 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_beef:\nStep 1: Kill a 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." + }, + "difficulty_metrics": { + "total_recipe_steps": 15, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_5_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make cooked_beef, cake, rabbit_stew, golden_apple.", + "agent_count": 5, + "target": { + "cooked_beef": 1, + "cake": 1, + "rabbit_stew": 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." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "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." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 rabbit_stew, 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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go 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.", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 rabbit_stew, 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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go 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.", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 rabbit_stew, 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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go 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.", + "3": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 rabbit_stew, 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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go 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.", + "4": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 rabbit_stew, 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 rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go 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." + }, + "difficulty_metrics": { + "total_recipe_steps": 15, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_blocked_access_0_1_2_3_4": { + "conversation": "Let's work together to make baked_potato, cooked_beef, golden_apple, cake.", + "agent_count": 5, + "target": { + "baked_potato": 1, + "cooked_beef": 1, + "golden_apple": 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." + ], + "cooked_beef": [ + "Step 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." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1", + "2", + "3", + "4" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef, 1 golden_apple, 1 cake. ", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef, 1 golden_apple, 1 cake. ", + "2": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef, 1 golden_apple, 1 cake. ", + "3": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef, 1 golden_apple, 1 cake. ", + "4": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef, 1 golden_apple, 1 cake. " + }, + "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_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_blocked_access_3_4": { + "conversation": "Let's work together to make golden_apple, baked_potato, rabbit_stew, cooked_beef, cake.", + "agent_count": 5, + "target": { + "golden_apple": 1, + "baked_potato": 1, + "rabbit_stew": 1, + "cooked_beef": 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." + ], + "baked_potato": [ + "Step 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": [ + "4", + "3" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 baked_potato, 1 rabbit_stew, 1 cooked_beef, 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 baked_potato:\nStep 1: Go to 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 golden_apple, 1 baked_potato, 1 rabbit_stew, 1 cooked_beef, 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 baked_potato:\nStep 1: Go to 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 golden_apple, 1 baked_potato, 1 rabbit_stew, 1 cooked_beef, 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 baked_potato:\nStep 1: Go to 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 golden_apple, 1 baked_potato, 1 rabbit_stew, 1 cooked_beef, 1 cake. ", + "4": "Collaborate with agents around you to make 1 golden_apple, 1 baked_potato, 1 rabbit_stew, 1 cooked_beef, 1 cake. " + }, + "difficulty_metrics": { + "total_recipe_steps": 17, + "blocked_agents_count": 2, + "unique_target_items": 5, + "overall_difficulty_score": 10, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_5_1_baked_potato_1_cooked_beef_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make rabbit_stew, cooked_beef, baked_potato, golden_apple.", + "agent_count": 5, + "target": { + "rabbit_stew": 1, + "cooked_beef": 1, + "baked_potato": 1, + "golden_apple": 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." + ], + "baked_potato": [ + "Step 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 rabbit_stew, 1 cooked_beef, 1 baked_potato, 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 baked_potato:\nStep 1: Go to 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 rabbit_stew, 1 cooked_beef, 1 baked_potato, 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 baked_potato:\nStep 1: Go to 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.", + "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef, 1 baked_potato, 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 baked_potato:\nStep 1: Go to 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.", + "3": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef, 1 baked_potato, 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 baked_potato:\nStep 1: Go to 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.", + "4": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef, 1 baked_potato, 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 baked_potato:\nStep 1: Go to 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": 12, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make golden_apple, cooked_beef, bread, baked_potato, rabbit_stew.", + "agent_count": 5, + "target": { + "golden_apple": 1, + "cooked_beef": 1, + "bread": 1, + "baked_potato": 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." + ], + "cooked_beef": [ + "Step 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." + ], + "baked_potato": [ + "Step 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 golden_apple, 1 cooked_beef, 1 bread, 1 baked_potato, 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 cooked_beef:\nStep 1: Kill a 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 baked_potato:\nStep 1: Go to 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 golden_apple, 1 cooked_beef, 1 bread, 1 baked_potato, 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 cooked_beef:\nStep 1: Kill a 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 baked_potato:\nStep 1: Go to 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 golden_apple, 1 cooked_beef, 1 bread, 1 baked_potato, 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 cooked_beef:\nStep 1: Kill a 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 baked_potato:\nStep 1: Go to 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 golden_apple, 1 cooked_beef, 1 bread, 1 baked_potato, 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 cooked_beef:\nStep 1: Kill a 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 baked_potato:\nStep 1: Go to 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 golden_apple, 1 cooked_beef, 1 bread, 1 baked_potato, 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 cooked_beef:\nStep 1: Kill a 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 baked_potato:\nStep 1: Go to 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": 14, + "blocked_agents_count": 0, + "unique_target_items": 5, + "overall_difficulty_score": 8, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_blocked_access_0_1_2_3_4": { + "conversation": "Let's work together to make cooked_beef, baked_potato, bread, rabbit_stew.", + "agent_count": 5, + "target": { + "cooked_beef": 1, + "baked_potato": 1, + "bread": 1, + "rabbit_stew": 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." + ], + "baked_potato": [ + "Step 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." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw 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", + "2", + "3", + "4" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 bread, 1 rabbit_stew. ", + "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 bread, 1 rabbit_stew. ", + "2": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 bread, 1 rabbit_stew. ", + "3": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 bread, 1 rabbit_stew. ", + "4": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 bread, 1 rabbit_stew. " + }, + "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_baked_potato_1_cake_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make cooked_beef, baked_potato, golden_apple, cake.", + "agent_count": 5, + "target": { + "cooked_beef": 1, + "baked_potato": 1, + "golden_apple": 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." + ], + "baked_potato": [ + "Step 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." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "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 baked_potato, 1 golden_apple, 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 baked_potato:\nStep 1: Go to 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.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\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 baked_potato, 1 golden_apple, 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 baked_potato:\nStep 1: Go to 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.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\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 baked_potato, 1 golden_apple, 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 baked_potato:\nStep 1: Go to 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.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\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 baked_potato, 1 golden_apple, 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 baked_potato:\nStep 1: Go to 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.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\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 baked_potato, 1 golden_apple, 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 baked_potato:\nStep 1: Go to 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.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\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": 11, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard" + }, + "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef": { + "conversation": "Let's work together to make bread, baked_potato, cake, cooked_beef.", + "agent_count": 5, + "target": { + "bread": 1, + "baked_potato": 1, + "cake": 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." + ], + "baked_potato": [ + "Step 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." + ], + "cooked_beef": [ + "Step 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 cake, 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go 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_beef:\nStep 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 cake, 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go 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_beef:\nStep 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 cake, 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go 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_beef:\nStep 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 baked_potato, 1 cake, 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go 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_beef:\nStep 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 baked_potato, 1 cake, 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 cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go 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_beef:\nStep 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": 11, + "blocked_agents_count": 0, + "unique_target_items": 4, + "overall_difficulty_score": 7, + "difficulty_category": "hard" + }, + "difficulty": "hard" + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/train_tasks.json b/tasks/cooking_tasks/train_tasks.json deleted file mode 100644 index 9795989..0000000 --- a/tasks/cooking_tasks/train_tasks.json +++ /dev/null @@ -1,2433 +0,0 @@ -{ - "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 and 1 cocoa bean from the chest.", - "Step 2: 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 and 1 cocoa bean from the chest.\nStep 2: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - }, - "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_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, 1 egg, and 1 sugar cane.", - "Step 2: Go to the crafting table and craft the sugar cane into sugar.", - "Step 3: 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, 1 egg, and 1 sugar cane.\nStep 2: Go to the crafting table and craft the sugar cane into sugar.\nStep 3: 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": 3, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_golden_carrot_blocked_access_1": { - "conversation": "Let's work together to make golden_carrot.", - "agent_count": 2, - "target": { - "golden_carrot": 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." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and 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 golden_carrot. " - }, - "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_mushroom_stew_blocked_access_0": { - "conversation": "Let's work together to make mushroom_stew.", - "agent_count": 2, - "target": { - "mushroom_stew": 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 oak_planks.", - "Step 3: Go to the crafting table and make a bowl using the oak_planks.", - "Step 4: Go to the crafting table and combine the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew. ", - "1": "Collaborate with agents around you to make 1 mushroom_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 oak_planks.\nStep 3: Go to the crafting table and make a bowl using the oak_planks.\nStep 4: Go to the crafting table and combine the mushrooms and bowl to make mushroom stew." - }, - "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_golden_carrot": { - "conversation": "Let's work together to make golden_carrot.", - "agent_count": 2, - "target": { - "golden_carrot": 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." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and 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 golden_carrot. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and 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": 3, - "blocked_agents_count": 0, - "unique_target_items": 1, - "overall_difficulty_score": 2, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_bread_1_cooked_mutton": { - "conversation": "Let's collaborate to make bread and cooked_mutton.", - "agent_count": 2, - "target": { - "bread": 1, - "cooked_mutton": 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_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 bread, 1 cooked_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.\n\nRecipe for cooked_mutton:\nStep 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 bread, 1 cooked_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.\n\nRecipe for cooked_mutton:\nStep 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_baked_potato_blocked_access_1": { - "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.", - "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 baked_potato. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato.\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 baked_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_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.", - "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.\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.\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_cooked_beef": { - "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": [], - "goal": { - "0": "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.", - "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": 0, - "unique_target_items": 1, - "overall_difficulty_score": 2, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "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 and 1 cocoa bean from the chest.", - "Step 2: 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 and 1 cocoa bean from the chest.\nStep 2: 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 and 1 cocoa bean from the chest.\nStep 2: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - }, - "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_mutton": { - "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": [], - "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. \n\nRecipe for cooked_mutton:\nStep 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": 0, - "unique_target_items": 1, - "overall_difficulty_score": 2, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "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 oak_planks.", - "Step 3: Go to the crafting table and make a bowl using the oak_planks.", - "Step 4: Go to the crafting table and combine the beetroot and 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 oak_planks.\nStep 3: Go to the crafting table and make a bowl using the oak_planks.\nStep 4: Go to the crafting table and combine the beetroot and bowl to make beetroot soup." - }, - "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_bread": { - "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": [], - "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. \n\nRecipe for bread:\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": 2, - "blocked_agents_count": 0, - "unique_target_items": 1, - "overall_difficulty_score": 2, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "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.", - "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.\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_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_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, and 1 dandelion.", - "Step 2: Go to the chest and grab oak_planks.", - "Step 3: Go to the crafting table and make a bowl using the oak_planks.", - "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, and 1 dandelion.\nStep 2: Go to the chest and grab oak_planks.\nStep 3: Go to the crafting table and make a bowl using the oak_planks.\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": 4, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_beetroot_soup_blocked_access_1": { - "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 oak_planks.", - "Step 3: Go to the crafting table and make a bowl using the oak_planks.", - "Step 4: Go to the crafting table and combine the beetroot and bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "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 oak_planks.\nStep 3: Go to the crafting table and make a bowl using the oak_planks.\nStep 4: Go to the crafting table and combine the beetroot and bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 beetroot_soup. " - }, - "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_golden_carrot_blocked_access_0": { - "conversation": "Let's work together to make golden_carrot.", - "agent_count": 2, - "target": { - "golden_carrot": 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." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot. ", - "1": "Collaborate with agents around you to make 1 golden_carrot. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and 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": 3, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "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_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_cooked_beef_blocked_access_1": { - "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": [ - "1" - ], - "goal": { - "0": "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.", - "1": "Collaborate with agents around you to make 1 cooked_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_bread_1_cookie": { - "conversation": "Let's collaborate to make bread and cookie.", - "agent_count": 2, - "target": { - "bread": 1, - "cookie": 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." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat and 1 cocoa bean from the chest.", - "Step 2: 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 bread, 1 cookie. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat and 1 cocoa bean from the chest.\nStep 2: 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 bread, 1 cookie. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat and 1 cocoa bean from the chest.\nStep 2: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - }, - "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_pumpkin_pie": { - "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, 1 egg, and 1 sugar cane.", - "Step 2: Go to the crafting table and craft the sugar cane into sugar.", - "Step 3: 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 pumpkin_pie. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin, 1 egg, and 1 sugar cane.\nStep 2: Go to the crafting table and craft the sugar cane into sugar.\nStep 3: 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. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin, 1 egg, and 1 sugar cane.\nStep 2: Go to the crafting table and craft the sugar cane into sugar.\nStep 3: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - }, - "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_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_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 and 1 cocoa bean from the chest.", - "Step 2: 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 oak_planks.", - "Step 3: Go to the crafting table and make a bowl using the oak_planks.", - "Step 4: Go to the crafting table and combine 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 and 1 cocoa bean from the chest.\nStep 2: 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 oak_planks.\nStep 3: Go to the crafting table and make a bowl using the oak_planks.\nStep 4: Go to the crafting table and combine 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 and 1 cocoa bean from the chest.\nStep 2: 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 oak_planks.\nStep 3: Go to the crafting table and make a bowl using the oak_planks.\nStep 4: Go to the crafting table and combine 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_mushroom_stew_blocked_access_0_1": { - "conversation": "Let's work together to make mushroom_stew.", - "agent_count": 2, - "target": { - "mushroom_stew": 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 oak_planks.", - "Step 3: Go to the crafting table and make a bowl using the oak_planks.", - "Step 4: Go to the crafting table and combine the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew. ", - "1": "Collaborate with agents around you to make 1 mushroom_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 2, - "unique_target_items": 1, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_beetroot_soup_1_mushroom_stew_blocked_access_0": { - "conversation": "Let's collaborate to make beetroot_soup and mushroom_stew.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "mushroom_stew": 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 oak_planks.", - "Step 3: Go to the crafting table and make a bowl using the oak_planks.", - "Step 4: Go to the crafting table and combine the beetroot and 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 oak_planks.", - "Step 3: Go to the crafting table and make a bowl using the oak_planks.", - "Step 4: Go to the crafting table and combine the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 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 oak_planks.\nStep 3: Go to the crafting table and make a bowl using the oak_planks.\nStep 4: Go to the crafting table and combine the beetroot and 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 oak_planks.\nStep 3: Go to the crafting table and make a bowl using the oak_planks.\nStep 4: Go to the crafting table and combine the mushrooms and bowl to make mushroom stew." - }, - "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_cooked_mutton_1_mushroom_stew_blocked_access_1": { - "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 oak_planks.", - "Step 3: Go to the crafting table and make a bowl using the oak_planks.", - "Step 4: Go to the crafting table and combine 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": [ - "1" - ], - "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 oak_planks.\nStep 3: Go to the crafting table and make a bowl using the oak_planks.\nStep 4: Go to the crafting table and combine 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. " - }, - "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_suspicious_stew_blocked_access_0": { - "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, and 1 dandelion.", - "Step 2: Go to the chest and grab oak_planks.", - "Step 3: Go to the crafting table and make a bowl using the oak_planks.", - "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 oak_planks.", - "Step 3: Go to the crafting table and make a bowl using the oak_planks.", - "Step 4: Go to the crafting table and combine the beetroot and bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "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. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom, and 1 dandelion.\nStep 2: Go to the chest and grab oak_planks.\nStep 3: Go to the crafting table and make a bowl using the oak_planks.\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 oak_planks.\nStep 3: Go to the crafting table and make a bowl using the oak_planks.\nStep 4: Go to the crafting table and combine the beetroot and bowl to make beetroot soup." - }, - "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_cooked_mutton_1_golden_carrot_blocked_access_0": { - "conversation": "Let's collaborate to make golden_carrot and cooked_mutton.", - "agent_count": 2, - "target": { - "golden_carrot": 1, - "cooked_mutton": 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_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 golden_carrot, 1 cooked_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." - }, - "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_bread_1_pumpkin_pie_blocked_access_0": { - "conversation": "Let's collaborate to make bread and pumpkin_pie.", - "agent_count": 2, - "target": { - "bread": 1, - "pumpkin_pie": 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." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin, 1 egg, and 1 sugar cane.", - "Step 2: Go to the crafting table and craft the sugar cane into sugar.", - "Step 3: 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 bread, 1 pumpkin_pie. ", - "1": "Collaborate with agents around you to make 1 bread, 1 pumpkin_pie. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin, 1 egg, and 1 sugar cane.\nStep 2: Go to the crafting table and craft the sugar cane into sugar.\nStep 3: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - }, - "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_pumpkin_pie_blocked_access_0": { - "conversation": "Let's collaborate to make cooked_mutton and pumpkin_pie.", - "agent_count": 2, - "target": { - "cooked_mutton": 1, - "pumpkin_pie": 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." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin, 1 egg, and 1 sugar cane.", - "Step 2: Go to the crafting table and craft the sugar cane into sugar.", - "Step 3: 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 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, 1 egg, and 1 sugar cane.\nStep 2: Go to the crafting table and craft the sugar cane into sugar.\nStep 3: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - }, - "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_cooked_beef": { - "conversation": "Let's collaborate to make beetroot_soup and cooked_beef.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "cooked_beef": 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 oak_planks.", - "Step 3: Go to the crafting table and make a bowl using the oak_planks.", - "Step 4: Go to the crafting table and combine the beetroot and 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": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_beef. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab oak_planks.\nStep 3: Go to the crafting table and make a bowl using the oak_planks.\nStep 4: Go to the crafting table and combine the beetroot and bowl to make beetroot soup.\n\nRecipe for cooked_beef:\nStep 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 beetroot_soup, 1 cooked_beef. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab oak_planks.\nStep 3: Go to the crafting table and make a bowl using the oak_planks.\nStep 4: Go to the crafting table and combine the beetroot and bowl to make beetroot soup.\n\nRecipe for cooked_beef:\nStep 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": 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_mutton_blocked_access_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 oak_planks.", - "Step 3: Go to the crafting table and make a bowl using the oak_planks.", - "Step 4: Go to the crafting table and combine the beetroot and bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "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 oak_planks.\nStep 3: Go to the crafting table and make a bowl using the oak_planks.\nStep 4: Go to the crafting table and combine the beetroot and bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. " - }, - "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_pumpkin_pie_1_suspicious_stew_blocked_access_0": { - "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, 1 egg, and 1 sugar cane.", - "Step 2: Go to the crafting table and craft the sugar cane into sugar.", - "Step 3: 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, and 1 dandelion.", - "Step 2: Go to the chest and grab oak_planks.", - "Step 3: Go to the crafting table and make a bowl using the oak_planks.", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 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, 1 egg, and 1 sugar cane.\nStep 2: Go to the crafting table and craft the sugar cane into sugar.\nStep 3: 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, and 1 dandelion.\nStep 2: Go to the chest and grab oak_planks.\nStep 3: Go to the crafting table and make a bowl using the oak_planks.\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": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_beef_1_suspicious_stew": { - "conversation": "Let's collaborate to make suspicious_stew and cooked_beef.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom, and 1 dandelion.", - "Step 2: Go to the chest and grab oak_planks.", - "Step 3: Go to the crafting table and make a bowl using the oak_planks.", - "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 suspicious_stew, 1 cooked_beef. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom, and 1 dandelion.\nStep 2: Go to the chest and grab oak_planks.\nStep 3: Go to the crafting table and make a bowl using the oak_planks.\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 suspicious_stew, 1 cooked_beef. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom, and 1 dandelion.\nStep 2: Go to the chest and grab oak_planks.\nStep 3: Go to the crafting table and make a bowl using the oak_planks.\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." - }, - "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_beef_1_pumpkin_pie": { - "conversation": "Let's collaborate to make pumpkin_pie and cooked_beef.", - "agent_count": 2, - "target": { - "pumpkin_pie": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin, 1 egg, and 1 sugar cane.", - "Step 2: Go to the crafting table and craft the sugar cane into sugar.", - "Step 3: 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": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_beef. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin, 1 egg, and 1 sugar cane.\nStep 2: Go to the crafting table and craft the sugar cane into sugar.\nStep 3: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_beef:\nStep 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 pumpkin_pie, 1 cooked_beef. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin, 1 egg, and 1 sugar cane.\nStep 2: Go to the crafting table and craft the sugar cane into sugar.\nStep 3: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_beef:\nStep 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": 5, - "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 oak_planks.", - "Step 3: Go to the crafting table and make a bowl using the oak_planks.", - "Step 4: Go to the crafting table and combine the beetroot and 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 oak_planks.\nStep 3: Go to the crafting table and make a bowl using the oak_planks.\nStep 4: Go to the crafting table and combine the beetroot and 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": 7, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_bread_blocked_access_0_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": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 bread. ", - "1": "Collaborate with agents around you to make 1 bread. " - }, - "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_baked_potato_1_suspicious_stew_blocked_access_0": { - "conversation": "Let's collaborate to make suspicious_stew and baked_potato.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom, and 1 dandelion.", - "Step 2: Go to the chest and grab oak_planks.", - "Step 3: Go to the crafting table and make a bowl using the oak_planks.", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 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 suspicious_stew, 1 baked_potato. ", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 baked_potato. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom, and 1 dandelion.\nStep 2: Go to the chest and grab oak_planks.\nStep 3: Go to the crafting table and make a bowl using the oak_planks.\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato.\nStep 2: Go to the furnace and bake the potato." - }, - "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_pumpkin_pie_1_suspicious_stew_blocked_access_1": { - "conversation": "Let's collaborate to make suspicious_stew and pumpkin_pie.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom, and 1 dandelion.", - "Step 2: Go to the chest and grab oak_planks.", - "Step 3: Go to the crafting table and make a bowl using the oak_planks.", - "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, 1 egg, and 1 sugar cane.", - "Step 2: Go to the crafting table and craft the sugar cane into sugar.", - "Step 3: 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 suspicious_stew, 1 pumpkin_pie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom, and 1 dandelion.\nStep 2: Go to the chest and grab oak_planks.\nStep 3: Go to the crafting table and make a bowl using the oak_planks.\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, 1 egg, and 1 sugar cane.\nStep 2: Go to the crafting table and craft the sugar cane into sugar.\nStep 3: 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. " - }, - "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_golden_carrot_blocked_access_0": { - "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 oak_planks.", - "Step 3: Go to the crafting table and make a bowl using the oak_planks.", - "Step 4: Go to the crafting table and combine the beetroot and 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" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 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 oak_planks.\nStep 3: Go to the crafting table and make a bowl using the oak_planks.\nStep 4: Go to the crafting table and combine the beetroot and 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." - }, - "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_bread_1_mushroom_stew": { - "conversation": "Let's collaborate to make mushroom_stew and bread.", - "agent_count": 2, - "target": { - "mushroom_stew": 1, - "bread": 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 oak_planks.", - "Step 3: Go to the crafting table and make a bowl using the oak_planks.", - "Step 4: Go to the crafting table and combine 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": "Collaborate with agents around you to make 1 mushroom_stew, 1 bread. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab oak_planks.\nStep 3: Go to the crafting table and make a bowl using the oak_planks.\nStep 4: Go to the crafting table and combine the mushrooms and bowl to make mushroom 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 mushroom_stew, 1 bread. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab oak_planks.\nStep 3: Go to the crafting table and make a bowl using the oak_planks.\nStep 4: Go to the crafting table and combine the mushrooms and bowl to make mushroom 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": 6, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_bread_1_pumpkin_pie": { - "conversation": "Let's collaborate to make pumpkin_pie and bread.", - "agent_count": 2, - "target": { - "pumpkin_pie": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin, 1 egg, and 1 sugar cane.", - "Step 2: Go to the crafting table and craft the sugar cane into sugar.", - "Step 3: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "bread": [ - "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 pumpkin_pie, 1 bread. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin, 1 egg, and 1 sugar cane.\nStep 2: Go to the crafting table and craft the sugar cane into sugar.\nStep 3: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for bread:\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 pumpkin_pie, 1 bread. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin, 1 egg, and 1 sugar cane.\nStep 2: Go to the crafting table and craft the sugar cane into sugar.\nStep 3: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for bread:\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": 5, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "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 and 1 cocoa bean from the chest.", - "Step 2: 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": 2, - "blocked_agents_count": 2, - "unique_target_items": 1, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cookie_1_suspicious_stew_blocked_access_0": { - "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 and 1 cocoa bean from the chest.", - "Step 2: 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, and 1 dandelion.", - "Step 2: Go to the chest and grab oak_planks.", - "Step 3: Go to the crafting table and make a bowl using the oak_planks.", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 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 and 1 cocoa bean from the chest.\nStep 2: 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, and 1 dandelion.\nStep 2: Go to the chest and grab oak_planks.\nStep 3: Go to the crafting table and make a bowl using the oak_planks.\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_1_bread_1_mushroom_stew_blocked_access_1": { - "conversation": "Let's collaborate to make bread and mushroom_stew.", - "agent_count": 2, - "target": { - "bread": 1, - "mushroom_stew": 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." - ], - "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 oak_planks.", - "Step 3: Go to the crafting table and make a bowl using the oak_planks.", - "Step 4: Go to the crafting table and combine the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 mushroom_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 mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab oak_planks.\nStep 3: Go to the crafting table and make a bowl using the oak_planks.\nStep 4: Go to the crafting table and combine the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 bread, 1 mushroom_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_1_cooked_beef_1_golden_carrot_blocked_access_0_1": { - "conversation": "Let's collaborate to make cooked_beef and golden_carrot.", - "agent_count": 2, - "target": { - "cooked_beef": 1, - "golden_carrot": 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_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and 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 cooked_beef, 1 golden_carrot. ", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_carrot. " - }, - "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_baked_potato_1_beetroot_soup_blocked_access_0_1": { - "conversation": "Let's collaborate to make beetroot_soup and baked_potato.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "baked_potato": 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 oak_planks.", - "Step 3: Go to the crafting table and make a bowl using the oak_planks.", - "Step 4: Go to the crafting table and combine the beetroot and bowl to make beetroot soup." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 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 beetroot_soup, 1 baked_potato. ", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 baked_potato. " - }, - "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_bread_1_golden_carrot_blocked_access_0_1": { - "conversation": "Let's collaborate to make golden_carrot and bread.", - "agent_count": 2, - "target": { - "golden_carrot": 1, - "bread": 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." - ], - "bread": [ - "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", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 bread. ", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 bread. " - }, - "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_bread_1_suspicious_stew_blocked_access_0_1": { - "conversation": "Let's collaborate to make bread and suspicious_stew.", - "agent_count": 2, - "target": { - "bread": 1, - "suspicious_stew": 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." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom, and 1 dandelion.", - "Step 2: Go to the chest and grab oak_planks.", - "Step 3: Go to the crafting table and make a bowl using the oak_planks.", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 suspicious_stew. ", - "1": "Collaborate with agents around you to make 1 bread, 1 suspicious_stew. " - }, - "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_baked_potato_1_pumpkin_pie_blocked_access_0_1": { - "conversation": "Let's collaborate to make pumpkin_pie and baked_potato.", - "agent_count": 2, - "target": { - "pumpkin_pie": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin, 1 egg, and 1 sugar cane.", - "Step 2: Go to the crafting table and craft the sugar cane into sugar.", - "Step 3: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 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 pumpkin_pie, 1 baked_potato. ", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 baked_potato. " - }, - "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_bread_blocked_access_0_1": { - "conversation": "Let's collaborate to make beetroot_soup and bread.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "bread": 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 oak_planks.", - "Step 3: Go to the crafting table and make a bowl using the oak_planks.", - "Step 4: Go to the crafting table and combine the beetroot and 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." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 bread. ", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 bread. " - }, - "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_baked_potato_1_suspicious_stew_blocked_access_0_1": { - "conversation": "Let's collaborate to make suspicious_stew and baked_potato.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom, and 1 dandelion.", - "Step 2: Go to the chest and grab oak_planks.", - "Step 3: Go to the crafting table and make a bowl using the oak_planks.", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 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 suspicious_stew, 1 baked_potato. ", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 baked_potato. " - }, - "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_baked_potato_1_mushroom_stew_blocked_access_0_1": { - "conversation": "Let's collaborate to make baked_potato and mushroom_stew.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 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 oak_planks.", - "Step 3: Go to the crafting table and make a bowl using the oak_planks.", - "Step 4: Go to the crafting table and combine the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 mushroom_stew. ", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 mushroom_stew. " - }, - "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_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, and 1 dandelion.", - "Step 2: Go to the chest and grab oak_planks.", - "Step 3: Go to the crafting table and make a bowl using the oak_planks.", - "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": 7, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_cooked_beef_1_suspicious_stew_blocked_access_0_1": { - "conversation": "Let's collaborate to make cooked_beef and suspicious_stew.", - "agent_count": 2, - "target": { - "cooked_beef": 1, - "suspicious_stew": 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." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom, and 1 dandelion.", - "Step 2: Go to the chest and grab oak_planks.", - "Step 3: Go to the crafting table and make a bowl using the oak_planks.", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 suspicious_stew. ", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 suspicious_stew. " - }, - "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_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, and 1 dandelion.", - "Step 2: Go to the chest and grab oak_planks.", - "Step 3: Go to the crafting table and make a bowl using the oak_planks.", - "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 oak_planks.", - "Step 3: Go to the crafting table and make a bowl using the oak_planks.", - "Step 4: Go to the crafting table and combine the beetroot and 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": 8, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_cooked_mutton_1_suspicious_stew_blocked_access_0_1": { - "conversation": "Let's collaborate to make cooked_mutton and suspicious_stew.", - "agent_count": 2, - "target": { - "cooked_mutton": 1, - "suspicious_stew": 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." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom, and 1 dandelion.", - "Step 2: Go to the chest and grab oak_planks.", - "Step 3: Go to the crafting table and make a bowl using the oak_planks.", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew. ", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew. " - }, - "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_mushroom_stew_1_suspicious_stew_blocked_access_0_1": { - "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, and 1 dandelion.", - "Step 2: Go to the chest and grab oak_planks.", - "Step 3: Go to the crafting table and make a bowl using the oak_planks.", - "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 oak_planks.", - "Step 3: Go to the crafting table and make a bowl using the oak_planks.", - "Step 4: Go to the crafting table and combine the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew. ", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_cooked_mutton_1_golden_carrot_blocked_access_0_1": { - "conversation": "Let's collaborate to make cooked_mutton and golden_carrot.", - "agent_count": 2, - "target": { - "cooked_mutton": 1, - "golden_carrot": 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." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and 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 cooked_mutton, 1 golden_carrot. ", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 golden_carrot. " - }, - "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_golden_carrot_blocked_access_0_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 oak_planks.", - "Step 3: Go to the crafting table and make a bowl using the oak_planks.", - "Step 4: Go to the crafting table and combine the beetroot and 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" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. ", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. " - }, - "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_cookie_1_pumpkin_pie_blocked_access_0_1": { - "conversation": "Let's collaborate to make pumpkin_pie and cookie.", - "agent_count": 2, - "target": { - "pumpkin_pie": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin, 1 egg, and 1 sugar cane.", - "Step 2: Go to the crafting table and craft the sugar cane into sugar.", - "Step 3: 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 and 1 cocoa bean from the chest.", - "Step 2: 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 pumpkin_pie, 1 cookie. ", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 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_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 oak_planks.", - "Step 3: Go to the crafting table and make a bowl using the oak_planks.", - "Step 4: Go to the crafting table and combine 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 oak_planks.", - "Step 3: Go to the crafting table and make a bowl using the oak_planks.", - "Step 4: Go to the crafting table and combine the beetroot and 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": 8, - "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_1": { - "conversation": "Let's collaborate to make pumpkin_pie and beetroot_soup.", - "agent_count": 2, - "target": { - "pumpkin_pie": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin, 1 egg, and 1 sugar cane.", - "Step 2: Go to the crafting table and craft the sugar cane into sugar.", - "Step 3: 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 oak_planks.", - "Step 3: Go to the crafting table and make a bowl using the oak_planks.", - "Step 4: Go to the crafting table and combine the beetroot and bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup. ", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup. " - }, - "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_golden_carrot_1_mushroom_stew_blocked_access_0_1": { - "conversation": "Let's collaborate to make mushroom_stew and golden_carrot.", - "agent_count": 2, - "target": { - "mushroom_stew": 1, - "golden_carrot": 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 oak_planks.", - "Step 3: Go to the crafting table and make a bowl using the oak_planks.", - "Step 4: Go to the crafting table and combine 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": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot. ", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot. " - }, - "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_cooked_mutton_1_pumpkin_pie_blocked_access_0_1": { - "conversation": "Let's collaborate to make cooked_mutton and pumpkin_pie.", - "agent_count": 2, - "target": { - "cooked_mutton": 1, - "pumpkin_pie": 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." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin, 1 egg, and 1 sugar cane.", - "Step 2: Go to the crafting table and craft the sugar cane into sugar.", - "Step 3: 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_mutton, 1 pumpkin_pie. ", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. " - }, - "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_beef_1_pumpkin_pie_blocked_access_0_1": { - "conversation": "Let's collaborate to make cooked_beef and pumpkin_pie.", - "agent_count": 2, - "target": { - "cooked_beef": 1, - "pumpkin_pie": 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." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin, 1 egg, and 1 sugar cane.", - "Step 2: Go to the crafting table and craft the sugar cane into sugar.", - "Step 3: 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_beef, 1 pumpkin_pie. ", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 pumpkin_pie. " - }, - "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_1_suspicious_stew_blocked_access_0_1": { - "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 and 1 cocoa bean from the chest.", - "Step 2: 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, and 1 dandelion.", - "Step 2: Go to the chest and grab oak_planks.", - "Step 3: Go to the crafting table and make a bowl using the oak_planks.", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew. ", - "1": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew. " - }, - "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_golden_carrot_1_pumpkin_pie_blocked_access_0_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, 1 egg, and 1 sugar cane.", - "Step 2: Go to the crafting table and craft the sugar cane into sugar.", - "Step 3: 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", - "1" - ], - "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. " - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/hells_kitchen_train_tasks.json b/tasks/cooking_tasks/train_tasks/hells_kitchen_train_tasks.json similarity index 100% rename from tasks/cooking_tasks/hells_kitchen_train_tasks.json rename to tasks/cooking_tasks/train_tasks/hells_kitchen_train_tasks.json diff --git a/tasks/cooking_tasks/train_tasks/train_tasks.json b/tasks/cooking_tasks/train_tasks/train_tasks.json new file mode 100644 index 0000000..dc8350e --- /dev/null +++ b/tasks/cooking_tasks/train_tasks/train_tasks.json @@ -0,0 +1,2417 @@ +{ + "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 new file mode 100644 index 0000000..aeb364c --- /dev/null +++ b/tasks/cooking_tasks/train_tasks/train_tasks_3_agents.json @@ -0,0 +1,2864 @@ +{ + "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": 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." + ], + "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": 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." + ], + "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": 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": [ + "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": 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: 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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and 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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and 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": 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: 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": 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": [ + "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": 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_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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and 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": 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_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": 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_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": 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", + "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": 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": [ + "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": 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." + ], + "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": 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": "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": 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": [ + "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": 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." + ], + "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": 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: 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": 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." + ], + "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": 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." + ], + "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": 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": [ + "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": 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." + ], + "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": 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." + ], + "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": 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.", + "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": 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." + ], + "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": 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": "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": 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." + ], + "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": 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." + ], + "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": 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", + "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": 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." + ], + "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": 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.", + "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": 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." + ], + "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": 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": [ + "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": 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: 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": 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." + ], + "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": 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": [ + "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": 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_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": 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": [ + "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": 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." + ], + "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": 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_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and 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": 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." + ], + "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": 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." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and 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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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: 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": 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." + ], + "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": 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." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and 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": 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": "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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": "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": 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": [], + "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": 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." + ], + "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": 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_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and 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 new file mode 100644 index 0000000..422a4db --- /dev/null +++ b/tasks/cooking_tasks/train_tasks/train_tasks_4_agents.json @@ -0,0 +1,3345 @@ +{ + "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": 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: 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": 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_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and 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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and 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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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_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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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: 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": 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." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and 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": 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." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and 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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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: 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": 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_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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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: 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": 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." + ], + "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": 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." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and 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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and 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": 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." + ], + "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": 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." + ], + "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": 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: 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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and 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 new file mode 100644 index 0000000..b918c5a --- /dev/null +++ b/tasks/cooking_tasks/train_tasks/train_tasks_5_agents.json @@ -0,0 +1,3772 @@ +{ + "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": 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." + ], + "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": 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." + ], + "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": 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_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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and 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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and 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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and 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": 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_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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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_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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and 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": 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." + ], + "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": 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." + ], + "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": 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_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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and 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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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_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": 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." + ], + "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": 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." + ], + "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": 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_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and 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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and 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": 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." + ], + "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": 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." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and 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": 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." + ], + "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": 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." + ], + "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": 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_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": 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_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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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." + ], + "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": 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_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": 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_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and 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": 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." + ], + "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": 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_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and 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 bb50486e81b07cf5cd94865e3ecab287d983be33 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Wed, 19 Mar 2025 23:29:11 -0500 Subject: [PATCH 24/28] add new options and better logging --- evaluation_script.py | 70 ++++++++++++++++++++++++++------------------ 1 file changed, 42 insertions(+), 28 deletions(-) diff --git a/evaluation_script.py b/evaluation_script.py index 076b3da..6720055 100644 --- a/evaluation_script.py +++ b/evaluation_script.py @@ -75,7 +75,6 @@ def extract_result(folder_path): # assert len(json_files) == 2, f"Expected 2 json files in {folder_name}, found {len(json_files)}" if not json_files: - print(f"No JSON files found in {folder_name}") return None else: outcome = False @@ -193,9 +192,10 @@ def launch_parallel_experiments(task_path, s3=False, bucket_name="mindcraft-experiments", template_profile="profiles/tasks/collab_profile.json", - world_name="Forest", insecure_coding=False, - url="http://127.0.0.1:8000/v1"): + url="http://127.0.0.1:8000/v1", + max_messages=15, + num_examples=2): with open(task_path, 'r', encoding='utf-8') as file: content = file.read() @@ -210,6 +210,13 @@ def launch_parallel_experiments(task_path, task_ids = list(task_ids) task_ids_split = [task_ids[i::num_parallel] for i in range(num_parallel)] + if task_type == "cooking": + world_name = "Superflat" + elif task_type == "techtree": + world_name = "Forest" + elif task_type == "construction": + world_name = "Superflat" + servers = create_server_files("./server_data/", num_parallel, world_name=world_name) date_time = datetime.now().strftime("%m-%d_%H-%M") experiments_folder = f"experiments/{exp_name}_{date_time}" @@ -221,7 +228,7 @@ def launch_parallel_experiments(task_path, else: task_path_name = "tasks" - s3_path = f"{bucket_name}/{task_type}/{model}/{task_path_name}/{exp_name}/" + s3_path = f"{bucket_name}/{task_type}/{model}/{task_path_name}/{exp_name}" # start wandb os.makedirs(experiments_folder, exist_ok=True) @@ -241,7 +248,9 @@ def launch_parallel_experiments(task_path, num_agents=num_agents, url=url, task_type=task_type, - s3_path=s3_path) + s3_path=s3_path, + max_messages=max_messages, + num_examples=num_examples) time.sleep(5) total_num_tasks = len(task_ids) @@ -255,10 +264,11 @@ def launch_parallel_experiments(task_path, with open(f"{experiments_folder}/results.txt", "w") as file: file.write(str(results)) if s3: - s3 = boto3.client('s3') - s3.upload_file(f"{experiments_folder}/results.txt", bucket_name, s3_path) + cmd = f"aws s3 cp {experiments_folder}/results.txt s3://{s3_path}/results.txt" + print(cmd) + subprocess.run(cmd.split()) - time.sleep(15) + time.sleep(60) def launch_server_experiment(task_path, task_ids, @@ -275,7 +285,10 @@ def launch_server_experiment(task_path, insecure_coding=False, url="http://127.0.0.1:8000/v1", task_type="techtree", - s3_path=""): + s3_path="", + max_messages=15, + num_examples=2): + """ Launch a Minecraft server and run experiments on it. @param task_path: Path to the task file @@ -333,6 +346,8 @@ def launch_server_experiment(task_path, set_environment_variable_tmux_session(session_name, "MINECRAFT_PORT", server_port) set_environment_variable_tmux_session(session_name, "MINDSERVER_PORT", mindserver_port) set_environment_variable_tmux_session(session_name, "PROFILES", agent_profiles_str) + set_environment_variable_tmux_session(session_name, "MAX_MESSAGES", str(max_messages)) + set_environment_variable_tmux_session(session_name, "NUM_EXAMPLES", str(num_examples)) if insecure_coding: set_environment_variable_tmux_session(session_name, "INSECURE_CODING", "true") @@ -569,8 +584,6 @@ def test_server_running(port=55916): print("Server is not running on port 55916") return False - - def kill_world(session_name="server"): """Kill the Minecraft world.""" subprocess.run(["tmux", "send-keys", "-t", session_name, "stop", "C-m"]) @@ -615,7 +628,6 @@ def main(): parser = argparse.ArgumentParser(description='Run Minecraft AI agent experiments') parser.add_argument('--task_path', default="multiagent_crafting_tasks.json", help='Path to the task file') - parser.add_argument('--task_id', default=None, help='ID of the task to run') parser.add_argument('--num_agents', default=2, type=int, help='Number of agents to run') parser.add_argument('--num_exp', default=1, type=int, help='Number of experiments to run') parser.add_argument('--num_parallel', default=1, type=int, help='Number of parallel servers to run') @@ -626,9 +638,11 @@ def main(): parser.add_argument('--template_profile', default="profiles/tasks/collab_profile.json", help='Model to use for the agents') parser.add_argument('--model', default="gpt-4o-mini", help='Model to use for the agents') parser.add_argument('--api', default="openai", help='API to use for the agents') - parser.add_argument('--world_name', default="Forest", help='Name of the world') + # parser.add_argument('--world_name', default="Forest", help='Name of the world') parser.add_argument('--insecure_coding', action='store_true', help='Enable insecure coding') parser.add_argument('--url', default="http://127.0.0.1:8000/v1") + parser.add_argument('--max_messages', default=15, type=int, help='Maximum number of messages before summarizing') + parser.add_argument('--num_examples', default=2, type=int, help='Maximum number of turns before summarizing') args = parser.parse_args() print(args) @@ -642,21 +656,21 @@ def main(): clean_up_server_files(args.num_parallel) if args.add_keys: update_keys_json() - if args.task_id is None: - launch_parallel_experiments(args.task_path, - num_exp=args.num_exp, - exp_name=args.exp_name, - num_parallel=args.num_parallel, - s3=args.s3, - bucket_name=args.bucket_name, - template_profile=args.template_profile, - model=args.model, - api=args.api, - world_name=args.world_name, - insecure_coding=args.insecure_coding, - num_agents=args.num_agents, - url=args.url) - cmd = "aws s3" + + launch_parallel_experiments(args.task_path, + num_exp=args.num_exp, + exp_name=args.exp_name, + num_parallel=args.num_parallel, + s3=args.s3, + bucket_name=args.bucket_name, + template_profile=args.template_profile, + model=args.model, + api=args.api, + insecure_coding=args.insecure_coding, + num_agents=args.num_agents, + url=args.url, + max_messages=args.max_messages, + num_examples=args.num_examples) if __name__ == "__main__": main() \ No newline at end of file From 6f8027b86f1be5219344c53fe0de876c5e0cae82 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Wed, 19 Mar 2025 23:34:22 -0500 Subject: [PATCH 25/28] add additional logging of config settings --- evaluation_script.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/evaluation_script.py b/evaluation_script.py index 6720055..7909415 100644 --- a/evaluation_script.py +++ b/evaluation_script.py @@ -261,6 +261,14 @@ def launch_parallel_experiments(task_path, total_run = results["total"] print(f"Total tasks run: {total_run}/{total_num_experiments}") print(results) + results["template_profile"] = template_profile + results["model"] = model + results["api"] = api + results["num_agents"] = num_agents + results["task_path"] = task_path + results["task_type"] = task_type + results["max_messages"] = max_messages + results["num_examples"] = num_examples with open(f"{experiments_folder}/results.txt", "w") as file: file.write(str(results)) if s3: From 7bf97660eb6285b3c6b1b229022589a1a7056733 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Wed, 19 Mar 2025 23:52:08 -0500 Subject: [PATCH 26/28] added exp name to prompter.js and splitting around think tokens --- evaluation_script.py | 13 +------------ src/models/prompter.js | 5 +++++ 2 files changed, 6 insertions(+), 12 deletions(-) diff --git a/evaluation_script.py b/evaluation_script.py index 7909415..ca8ef9c 100644 --- a/evaluation_script.py +++ b/evaluation_script.py @@ -261,6 +261,7 @@ def launch_parallel_experiments(task_path, total_run = results["total"] print(f"Total tasks run: {total_run}/{total_num_experiments}") print(results) + results["exp_name"] = exp_name results["template_profile"] = template_profile results["model"] = model results["api"] = api @@ -358,15 +359,6 @@ def launch_server_experiment(task_path, set_environment_variable_tmux_session(session_name, "NUM_EXAMPLES", str(num_examples)) if insecure_coding: set_environment_variable_tmux_session(session_name, "INSECURE_CODING", "true") - - # you need to add the bots to the world first before you can add them as op - # cmd = f"node main.js --task_path example_tasks.json --task_id debug_{num_agents}_agent_timeout" - - # subprocess.run(["tmux", "send-keys", "-t", session_name, cmd, "C-m"]) - - # time.sleep(40) - - # subprocess.run(["tmux", "send-keys", "-t", "server_" + session_name, f"/op @a", "C-m"]) make_ops(agent_names, session_name) # add the bots as op @@ -379,9 +371,6 @@ def launch_server_experiment(task_path, set_environment_variable_tmux_session(session_name, "BLOCKED_ACTIONS", BLOCKED_ACTIONS_CRAFTING) elif task_type == "construction": set_environment_variable_tmux_session(session_name, "BLOCKED_ACTIONS", BLOCKED_ACTIONS_CONSTRUCTION) - - - script_content = "" for task_id in task_ids: diff --git a/src/models/prompter.js b/src/models/prompter.js index 9785831..192b5ac 100644 --- a/src/models/prompter.js +++ b/src/models/prompter.js @@ -395,6 +395,11 @@ export class Prompter { if (current_msg_time !== this.most_recent_msg_time) { console.warn(`${this.agent.name} received new message while generating, discarding old response.`); return ''; + } + + if (generation?.includes('')) { + const [_, afterThink] = generation.split('') + generation = afterThink } return generation; From 4db0f8d3c5a9a78a629dcc26f6751d833baf9c7d Mon Sep 17 00:00:00 2001 From: Isadora White Date: Thu, 20 Mar 2025 13:21:09 -0500 Subject: [PATCH 27/28] further debugging of reasoning models --- src/models/prompter.js | 8 +- tasks/cse291/longer_timeout_multi_agent.json | 703 +++++++++++++++++++ 2 files changed, 710 insertions(+), 1 deletion(-) create mode 100644 tasks/cse291/longer_timeout_multi_agent.json diff --git a/src/models/prompter.js b/src/models/prompter.js index 192b5ac..3b63b60 100644 --- a/src/models/prompter.js +++ b/src/models/prompter.js @@ -446,8 +446,14 @@ export class Prompter { } const logFile = `memSaving_${timestamp}.txt`; await this.saveToFile(logFile, logEntry); + + let generation = await this.chat_model.sendRequest([], prompt); + if (generation?.includes('')) { + const [_, afterThink] = generation.split('') + generation = afterThink + } - return await this.chat_model.sendRequest([], prompt); + return generation; } async promptShouldRespondToBot(new_message) { diff --git a/tasks/cse291/longer_timeout_multi_agent.json b/tasks/cse291/longer_timeout_multi_agent.json new file mode 100644 index 0000000..f1037ae --- /dev/null +++ b/tasks/cse291/longer_timeout_multi_agent.json @@ -0,0 +1,703 @@ +{ + "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": 2, + "target": "pink_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 600, + "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 + }, + "1": { + "black_wool": 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 + }, + "1": { + "purple_wool": 3, + "crafting_table": 1 + } + }, + "agent_count": 2, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 600, + "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": 600, + "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": 2, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 600, + "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": 2, + "target": "compass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 600, + "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": 2, + "target": "fishing_rod", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 600, + "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": 2, + "target": "cake", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 600, + "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": 2, + "target": "golden_carrot", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 600, + "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": 2, + "target": "map", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 600, + "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": 600, + "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": 600, + "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": 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 + }, + "1": { + "oak_planks": 4, + "crafting_table": 1 + } + }, + "agent_count": 2, + "target": "chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 1, + "timeout": 600, + "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": 600, + "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": 2, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 2, + "timeout": 600, + "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": 2, + "target": "clock", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 600, + "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, + "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": 600, + "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": 600, + "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": 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": { + "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": 600, + "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": 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 + }, + "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.", + "initial_inventory": { + "0": { + "oak_planks": 8, + "iron_ingot": 2 + }, + "1": { + "string": 2, + "crafting_table": 1 + } + }, + "agent_count": 2, + "target": "crossbow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 600, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": true + } +} \ No newline at end of file From 7b690775ff2ae9c8c9691d116054a336c3663a75 Mon Sep 17 00:00:00 2001 From: Isadora White Date: Thu, 20 Mar 2025 14:06:15 -0500 Subject: [PATCH 28/28] updating thinking model prompt to not give instructions and instead act as if it is in a conversation --- .../tasks/collab_thinking_model_profile.json | 47 ++ .../super_long_timeout_multi_agent.json | 703 ++++++++++++++++++ 2 files changed, 750 insertions(+) create mode 100644 profiles/tasks/collab_thinking_model_profile.json create mode 100644 tasks/cse291/super_long_timeout_multi_agent.json diff --git a/profiles/tasks/collab_thinking_model_profile.json b/profiles/tasks/collab_thinking_model_profile.json new file mode 100644 index 0000000..e3c08fb --- /dev/null +++ b/profiles/tasks/collab_thinking_model_profile.json @@ -0,0 +1,47 @@ +{ + "name": "andy", + "model": "gpt-4o", + "modes": { + "hunting": false + }, + "conversing": "You are a playful Minecraft bot named $NAME that can converse with players, 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\n Your name is $NAME, do not pretend to be other bots. You are in a conversation by default do not use ! Do not make lists unless asked. I will be extremely dissapointed if you give instructions instead of responding as if you are in a conversation. Conversation 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: ", + "conversation_examples": [ + [ + {"role": "user", "content": "Hey! let's collaborate to build a stone pickaxe!"}, + {"role": "assistant", "content": "Cool, let me check what is in my inventory !inventory\nI have 10 oak logs. What do you have?"}, + {"role": "user", "content": "Let me check !inventory \nI have 10 stones."}, + {"role": "assistant", "content": "Let me give you the stones and you can craft the pickaxe. !givePlayer(\"stone\", 10, \"playername\")"}, + {"role": "user", "content": "Thanks for the stones! Now I can craft the pickaxe. !craftItem(\"stone_pickaxe\", 1)"} + + ], + [ + {"role": "user", "content": "terrance: (FROM OTHER BOT) Lets craft 5 chains together"}, + {"role": "assistant", "content": "Sure, can you let me know what inventory do you have while I check how to craft chains?"}, + {"role": "user", "content": "terrance: (FROM OTHER BOT) I have 10 iron_nugget and 3 mushroom."}, + {"role": "assistant", "content": "Thanks for letting me know, let me check how to build a chain, !getCraftingPlan(\"chain\",5)"}, + {"role": "system", "content": "You are missing the following items:\n- 2 iron_ingot\n\nOnce you have these items, here's your crafting plan:\n\nCraft 2 iron_ingot -> 18 iron_nugget\nCraft 10 iron_nugget + 5 iron_ingot -> 5 chain"}, + {"role": "assistant", "content": "Seems like we need 2 iron_ingot, but wait, we need the iron_ingot for getting 10 iron_nugget, since you already have 10 iron_nugget, I don't need to search for 2 iron_ingots in the world, could you give me the 10 iron_nugget ?"}, + {"role": "user", "content": "terrance: (FROM OTHER BOT) Sure, here you go !givePlayer(\"iron_nugget\", 10, \"jacob\")"}, + {"role": "assistant", "content": "Thanks for the iron_nuggets, now I can craft the chains. !craftItem(\"chain\", 5)"} + ], + [ + {"role": "user", "content": "terrance: (FROM OTHER BOT) Lets craft a pink_wool together"}, + {"role": "assistant", "content": "Sure, can you let me what inventory do you have while I check how to craft it?"}, + {"role": "user", "content": "terrance: (FROM OTHER BOT) I have 1 pink_dye with me."}, + {"role": "assistant", "content": "Thanks for letting me know, let me check how to craft a pink_wool, !getCraftingPlan(\"pink_wool\",1)"}, + {"role": "system", "content": "You are missing the following items:\n- 1 peony\n\nOnce you have these items, here's your crafting plan:\n\nCraft 1 peony -> 2 pink_dye\nCraft 1 pink_dye + 1 black_wool -> 1 pink_wool"}, + {"role": "assistant", "content": "Seems like we need are missing 1 peony which we can use craft 1 pink_dye which is an intermediate item, but since you already have a pink_dye, there is no need to search for peony which is used to craft pink_dye, can you pass the pink_dye to me?"}, + {"role": "user", "content": "terrance: (FROM OTHER BOT) Sure, here you go !givePlayer(\"pink_dye\", 1, \"jacob\")"}, + {"role": "assistant", "content": "Thanks for the pink_dye, now I can craft the pink_wool. !craftItem(\"pink_wool\", 1)"} + ], + [ + {"role": "user", "content": "terrance: (FROM OTHER BOT) Lets craft a cyan bed together"}, + {"role": "assistant", "content": "Sure, I have !inventory\n I have a cyan_dye and oak_planks. What do you have? "}, + {"role": "user", "content": "terrance: (FROM OTHER BOT) I have 1 cyan_wool and 1 oak_planks. Let me give those to you !givePlayer(\"cyan_wool\", 1, \"andy\") !givePlayer(\"oak_planks\", 1, \"andy\")"}, + {"role": "assistant", "content": "Hmm seems like we don't have enough to craft a cyan bed, let me reach out to the third agent and ask for help! !startConversation(\"jacob\", Hey jacob, can you help us craft a cyan bed? We need cyan_dye and oak_planks"}, + {"role": "user", "content": "jacob: (FROM OTHER BOT) Sure! Let me give those to you !givePlayer(\"cyan_dye\", 1, \"andy\") !givePlayer(\"oak_planks\", 1, \"andy\")"}, + {"role": "assistant", "content": "Thanks for the items, now I can craft the cyan bed. !craftItem(\"cyan_bed\", 1)"} + ] + ] +} \ No newline at end of file diff --git a/tasks/cse291/super_long_timeout_multi_agent.json b/tasks/cse291/super_long_timeout_multi_agent.json new file mode 100644 index 0000000..7a7e046 --- /dev/null +++ b/tasks/cse291/super_long_timeout_multi_agent.json @@ -0,0 +1,703 @@ +{ + "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": 2, + "target": "pink_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 1200, + "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 + }, + "1": { + "black_wool": 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 + }, + "1": { + "purple_wool": 3, + "crafting_table": 1 + } + }, + "agent_count": 2, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 1200, + "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": 1200, + "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": 2, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 1200, + "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": 2, + "target": "compass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 1200, + "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": 2, + "target": "fishing_rod", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 600, + "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": 2, + "target": "cake", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 1200, + "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": 2, + "target": "golden_carrot", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 1200, + "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": 2, + "target": "map", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 1200, + "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": 1200, + "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": 600, + "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": 2, + "target": "magenta_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 1200, + "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": 1200, + "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": 1200, + "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": 2, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 2, + "timeout": 1200, + "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": 2, + "target": "clock", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 600, + "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": 1200, + "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": 1200, + "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": 1200, + "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": 2, + "target": "light_gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 1200, + "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": 1200, + "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": 2, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 1200, + "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": 2, + "target": "campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 1200, + "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": 2, + "target": "crossbow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 1200, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": true + } +} \ No newline at end of file