diff --git a/profiles/tasks/cooking_profile.json b/profiles/tasks/cooking_profile.json index 0cf12fa..6c0b4a7 100644 --- a/profiles/tasks/cooking_profile.json +++ b/profiles/tasks/cooking_profile.json @@ -6,6 +6,6 @@ "item_collecting": true, "elbow_room": false }, - "conversing": "You are a task-focused Minecraft bot named $NAME. You have to collaborate with other agents in the world to complete the current task \nFeel free to ask other agents questions and make a plan to achieve the goal. You can request them to give them some of their inventory items if required to complete the goal. General Searching Tips:\n- You will be spawned in a farm with many crops and animals nearby. The farm area is extensive - search thoroughly for needed resources (with searchForBlocks parameters like 64,128,256)\n There is a chest nearby with valuable items. Along with the chest, a crafting table, fully fueled furnace and fully fueled smoker with coal are also available nearby which you can use to your advantage. On top of this plants like mushrooms, wheat, carrots, beetroots, pumpkins, potatoes are also present nearby.\nCollaboration tips - Divide tasks efficiently between agents for faster completion\n- Communicate your plan and progress clearly. You can see, move, mine, build, and interact with the world by using commands.\n$SELF_PROMPT Act human-like as if you were a typical Minecraft player, rather than an AI. Be very brief in your responses, don't apologize constantly, don't give instructions or make lists unless asked, and don't refuse requests. Don't pretend to act, use commands immediately when requested. Do NOT say this: 'Sure, I've stopped.', instead say this: 'Sure, I'll stop. !stop'. Do NOT say this: 'On my way! Give me a moment.', instead say this: 'On my way! !goToPlayer(\"playername\", 3)'. Respond only as $NAME, never output '(FROM OTHER BOT)' or pretend to be someone else. If you have nothing to say or do, respond with an just a tab '\t'. Share resources and information with other bots! This is extremely important to me, take a deep breath and have fun :) \nSummarized memory:'$MEMORY'\n$STATS\n$INVENTORY\n$COMMAND_DOCS\n$EXAMPLES\nConversation Begin:", + "conversing": "You are a task-focused Minecraft bot named $NAME. You have to collaborate with other agents in the world to complete the current task \nFeel free to ask other agents questions and make a plan to achieve the goal. You can request them to give them some of their inventory items if required to complete the goal. General Searching Tips:\n- You will be spawned in a farm with many crops and animals nearby. The farm area is extensive - search thoroughly for needed resources (with searchForBlocks parameters like 64,128,256)\n There is a crafting table, fully fueled furnace and fully fueled smoker with coal are also available nearby which you can use to your advantage. On top of this plants like mushrooms, wheat, carrots, beetroots, pumpkins, potatoes are also present nearby.\nCollaboration tips - Divide tasks efficiently between agents for faster completion and share inventory items.\n- Communicate your plan and progress clearly. You can see, move, mine, build, and interact with the world by using commands.\n$SELF_PROMPT Act human-like as if you were a typical Minecraft player, rather than an AI. Be very brief in your responses, don't apologize constantly, don't give instructions or make lists unless asked, and don't refuse requests. Don't pretend to act, use commands immediately when requested. Do NOT say this: 'Sure, I've stopped.', instead say this: 'Sure, I'll stop. !stop'. Do NOT say this: 'On my way! Give me a moment.', instead say this: 'On my way! !goToPlayer(\"playername\", 3)'. Respond only as $NAME, never output '(FROM OTHER BOT)' or pretend to be someone else. If you have nothing to say or do, respond with an just a tab '\t'. Share resources and information with other bots! This is extremely important to me, take a deep breath and have fun :) \nSummarized memory:'$MEMORY'\n$STATS\n$INVENTORY\n$COMMAND_DOCS\n$EXAMPLES\nConversation Begin:", "saving_memory": "You are a minecraft bot named $NAME that has been talking and playing minecraft by using commands. Update your memory by summarizing the following conversation and your old memory in your next response. Prioritize preserving important facts, things you've learned, useful tips, and long term reminders. Do Not record stats, inventory, or docs! Only save transient information from your chat history. $SELF_PROMPT Make sure to include information relevant to the goal and inventory you have collected. You're limited to 500 characters, so be extremely brief and minimize words. Compress useful information. \nOld Memory: '$MEMORY'\nRecent conversation: \n$TO_SUMMARIZE\nSummarize your old memory and recent conversation into a new memory, and respond only with the unwrapped memory text: " } \ No newline at end of file diff --git a/src/agent/agent.js b/src/agent/agent.js index 7106783..3cd671b 100644 --- a/src/agent/agent.js +++ b/src/agent/agent.js @@ -26,8 +26,6 @@ export class Agent { } console.log('Starting agent initialization with profile:', profile_fp); - - // Initialize components with more detailed error handling console.log('Initializing action manager...'); @@ -105,6 +103,12 @@ export class Agent { if (!load_mem) { if (task_path !== null) { this.task.initBotTask(); + this.task.setAgentGoal(); + } + } else { + // set the goal without initializing the rest of the task + if (task_path !== null) { + this.task.setAgentGoal(); } } diff --git a/src/agent/commands/queries.js b/src/agent/commands/queries.js index ef77ade..df5adf1 100644 --- a/src/agent/commands/queries.js +++ b/src/agent/commands/queries.js @@ -250,9 +250,16 @@ export const queryList = [ } // Generate crafting plan - let craftingPlan = mc.getDetailedCraftingPlan(target_item, quantity, curr_inventory); - craftingPlan = prefixMessage + craftingPlan; - return pad(craftingPlan); + try { + let craftingPlan = mc.getDetailedCraftingPlan(target_item, quantity, curr_inventory); + craftingPlan = prefixMessage + craftingPlan; + return pad(craftingPlan); + } catch (error) { + console.error("Error generating crafting plan:", error); + return `An error occurred while generating the crafting plan: ${error.message}`; + } + + }, }, { diff --git a/src/agent/tasks/construction_tasks.js b/src/agent/tasks/construction_tasks.js index c9a4a4d..0fcd3da 100644 --- a/src/agent/tasks/construction_tasks.js +++ b/src/agent/tasks/construction_tasks.js @@ -18,6 +18,7 @@ export class ConstructionTaskValidator { } let total_blocks = result.mismatches.length + result.matches.length; score = (result.matches.length / total_blocks) * 100; + console.log(`Task score: ${score}%`); return { "valid": valid, "score": score diff --git a/src/agent/tasks/cooking_tasks.js b/src/agent/tasks/cooking_tasks.js index 97f711c..a88e3ac 100644 --- a/src/agent/tasks/cooking_tasks.js +++ b/src/agent/tasks/cooking_tasks.js @@ -1,390 +1,358 @@ import { getPosition } from "../library/world.js"; export class CookingTaskInitiator { - constructor(data, agent) { - this.agent = agent; + constructor(data, bot) { + this.bot = bot; this.data = data; } async init() { - let bot = this.agent.bot; + let bot = this.bot; //// Setting up the cooking world using minecraft cheats //// // Only run the setup if the agent is the first one - if (this.agent.count_id === 0) { - // Clear and prepare the base area - await bot.chat(`/fill ~ ~-1 ~ ~50 ~-3 ~50 grass_block`); - await bot.chat(`/fill ~ ~-1 ~ ~-50 ~-3 ~50 grass_block`); - await bot.chat(`/fill ~ ~-1 ~ ~-50 ~-3 ~-50 grass_block`); - await bot.chat(`/fill ~ ~-1 ~ ~50 ~-3 ~-50 grass_block`); - await bot.chat(`/fill ~ ~ ~ ~50 ~10 ~50 air`); - await bot.chat(`/fill ~ ~ ~ ~-50 ~10 ~50 air`); - await bot.chat(`/fill ~ ~ ~ ~-50 ~10 ~-50 air`); - await bot.chat(`/fill ~ ~ ~ ~50 ~10 ~-50 air`); + // Clear and prepare the base area + await bot.chat(`/fill ~ ~-1 ~ ~50 ~-3 ~50 grass_block`); + await bot.chat(`/fill ~ ~-1 ~ ~-50 ~-3 ~50 grass_block`); + await bot.chat(`/fill ~ ~-1 ~ ~-50 ~-3 ~-50 grass_block`); + await bot.chat(`/fill ~ ~-1 ~ ~50 ~-3 ~-50 grass_block`); + await bot.chat(`/fill ~ ~ ~ ~50 ~10 ~50 air`); + await bot.chat(`/fill ~ ~ ~ ~-50 ~10 ~50 air`); + await bot.chat(`/fill ~ ~ ~ ~-50 ~10 ~-50 air`); + await bot.chat(`/fill ~ ~ ~ ~50 ~10 ~-50 air`); + console.log("Base area cleared and prepared."); - const position = getPosition(bot); - const botX = Math.floor(position.x); - const botZ = Math.floor(position.z); + const position = getPosition(bot); + const botX = Math.floor(position.x); + const botZ = Math.floor(position.z); - // Region management system - const isOverlapping = (newXMin, newXMax, newZMin, newZMax, occupiedRegions) => { - for (const region of occupiedRegions) { - if (newXMin < region.xMax && newXMax > region.xMin && - newZMin < region.zMax && newZMax > region.zMin) { - return true; - } + // Region management system + const isOverlapping = (newXMin, newXMax, newZMin, newZMax, occupiedRegions) => { + for (const region of occupiedRegions) { + if (newXMin < region.xMax && newXMax > region.xMin && + newZMin < region.zMax && newZMax > region.zMin) { + return true; } - return false; - }; + } + return false; + }; - const findValidPosition = (width, depth, occupiedRegions) => { - const maxXStart = position.x + 25 - width; // Constrain to 50x50 area - const minXStart = position.x - 25; - const maxZStart = position.z + 25 - depth; - const minZStart = position.z - 25; + const findValidPosition = (width, depth, occupiedRegions) => { + const maxXStart = position.x + 25 - width; // Constrain to 50x50 area + const minXStart = position.x - 25; + const maxZStart = position.z + 25 - depth; + const minZStart = position.z - 25; + + let attempts = 0; + while (attempts < 10000) { + const xStart = Math.floor(minXStart + Math.random() * (maxXStart - minXStart + 1)); + const zStart = Math.floor(minZStart + Math.random() * (maxZStart - minZStart + 1)); + const xMin = xStart; + const xMax = xStart + width - 1; + const zMin = zStart; + const zMax = zStart + depth - 1; - let attempts = 0; - while (attempts < 1000) { - const xStart = Math.floor(minXStart + Math.random() * (maxXStart - minXStart + 1)); - const zStart = Math.floor(minZStart + Math.random() * (maxZStart - minZStart + 1)); - const xMin = xStart; - const xMax = xStart + width - 1; - const zMin = zStart; - const zMax = zStart + depth - 1; - - if (!isOverlapping(xMin, xMax, zMin, zMax, occupiedRegions)) { - return { xStart, zStart }; - } - attempts++; + if (!isOverlapping(xMin, xMax, zMin, zMax, occupiedRegions)) { + return { xStart, zStart }; } - throw new Error('Failed to find non-overlapping position after 1000 attempts'); - }; + attempts++; + } + throw new Error('Failed to find non-overlapping position after 1000 attempts'); + }; - // Define all regions with their sizes - const regionsToPlace = [ - { type: 'wheat', width: 6, depth: 6 }, - { type: 'beetroots', width: 4, depth: 5 }, - { type: 'mushrooms', width: 4, depth: 5 }, - { type: 'potatoes', width: 4, depth: 5 }, - { type: 'carrots', width: 4, depth: 5 }, - { type: 'sugar_cane', width: 3, depth: 3 }, - { type: 'sugar_cane', width: 3, depth: 3 }, - { type: 'pumpkins', width: 10, depth: 1 }, - { type: 'house', width: 11, depth: 11 } + // Define all regions with their sizes + const regionsToPlace = [ + { type: 'wheat', width: 3, depth: 3 }, + { type: 'beetroots', width: 3, depth: 3 }, + { type: 'mushrooms', width: 3, depth: 3 }, + { type: 'potatoes', width: 3, depth: 3 }, + { type: 'carrots', width: 3, depth: 3 }, + { type: 'sugar_cane', width: 3, depth: 3 }, + { type: 'sugar_cane', width: 3, depth: 3 }, + { type: 'pumpkins', width: 5, depth: 1 }, + { type: 'house', width: 11, depth: 11 } + ]; + + // Expand the regions of each type to make sure they don't overlap + + for (let i = 0; i < regionsToPlace.length; i++) { + const region = regionsToPlace[i]; + const { width, depth } = region; + regionsToPlace[i].width = width + 4; + regionsToPlace[i].depth = depth + 4; + } + + const occupiedRegions = [{ + xMin : botX - 1, + xMax : botX + 1, + zMin : botZ - 1, + zMax : botZ + 1 + }]; + const regionPositions = {}; + + // Calculate positions for all regions + for (const region of regionsToPlace) { + const { xStart, zStart } = findValidPosition(region.width, region.depth, occupiedRegions); + + occupiedRegions.push({ + xMin: xStart, + xMax: xStart + region.width - 1, + zMin: zStart, + zMax: zStart + region.depth - 1 + }); + + if (region.type === 'sugar_cane') { + if (!regionPositions.sugar_cane) regionPositions.sugar_cane = []; + regionPositions.sugar_cane.push({ xStart, zStart }); + } else { + regionPositions[region.type] = { xStart, zStart }; + } + } + + // Execute all planting + // await plantWheat(regionPositions.wheat.xStart, regionPositions.wheat.zStart); + await this.plantCrops(regionPositions.wheat.xStart, regionPositions.wheat.zStart, 'wheat[age=7]', true); + await this.plantCrops(regionPositions.beetroots.xStart, regionPositions.beetroots.zStart, 'beetroots[age=3]', true); + await this.plantMushrooms(regionPositions.mushrooms.xStart, regionPositions.mushrooms.zStart); + await new Promise(resolve => setTimeout(resolve, 300)); + await this.plantCrops(regionPositions.potatoes.xStart, regionPositions.potatoes.zStart, 'potatoes[age=7]', true); + await this.plantCrops(regionPositions.carrots.xStart, regionPositions.carrots.zStart, 'carrots[age=7]', true); + await this.plantCrops(regionPositions.pumpkins.xStart, regionPositions.pumpkins.zStart, 'pumpkin', false); + await this.plantSugarCane(regionPositions.sugar_cane); + await new Promise(resolve => setTimeout(resolve, 300)); + console.log("planted crops!"); + // await plantPumpkins(regionPositions.pumpkins.xStart, regionPositions.pumpkins.zStart); + // await new Promise(resolve => setTimeout(resolve, 300)); + + + await this.buildHouse(regionPositions.house.xStart, regionPositions.house.zStart); + + console.log("House built!"); + + // Add a chest with cooking items near the bot + // const addChestWithItems = async () => { + // // Find a valid position near the bot (within 10 blocks) + // const findChestPosition = () => { + // const maxAttempts = 100; + // for (let attempt = 0; attempt < maxAttempts; attempt++) { + // const x = botX + Math.floor(Math.random() * 10 - 5); // Within ±5 blocks X + // const z = botZ + Math.floor(Math.random() * 10 - 5); // Within ±5 blocks Z + // const y = position.y; + + // // Check if the position is not overlapping with existing structures + // if (!isOverlapping(x, x, z, z, occupiedRegions)) { + // return { x, y, z }; + // } + // } + // throw new Error('Failed to find valid chest position'); + // }; + + // const { x, y, z } = findChestPosition(); + + // // Place the chest + // await bot.chat(`/setblock ${x} ${y} ${z} chest`); + + const cookingItems = [ + ['minecraft:milk_bucket', 1], // Non-stackable + ['minecraft:egg', 16], // Stacks to 16 + ['minecraft:dandelion', 64], // Stacks to 64 + ['minecraft:sugar', 64], + ['minecraft:cocoa_beans', 64], + ['minecraft:apple', 64], + ['minecraft:milk_bucket', 1], + ['minecraft:milk_bucket', 1], + ['minecraft:salmon', 64], + ['minecraft:cod', 64], + ['minecraft:kelp', 64], + ['minecraft:dried_kelp', 64], + ['minecraft:sweet_berries', 64], + ['minecraft:honey_bottle', 1], // Non-stackable + ['minecraft:glow_berries', 64], + ['minecraft:bowl', 64], + ['minecraft:milk_bucket', 1], + ['minecraft:milk_bucket', 1], + ['minecraft:milk_bucket', 1], + ['minecraft:milk_bucket', 1], + ['minecraft:cooked_salmon', 64], + ['minecraft:cooked_cod', 64], + ['minecraft:gold_ingot', 64], + ['minecraft:oak_planks', 64], + ['minecraft:iron_ingot', 64], + ['minecraft:milk_bucket', 1], + ['minecraft:milk_bucket', 1], ]; - // Expand the regions of each type to make sure they don't overlap - - for (let i = 0; i < regionsToPlace.length; i++) { - const region = regionsToPlace[i]; - const { width, depth } = region; - regionsToPlace[i].width = width + 4; - regionsToPlace[i].depth = depth + 4; + // // Fill the chest with random cooking items + // for (let slot = 0; slot < cookingItems.length; slot++) { // Chest has 27 slots + // const randomItem = cookingItems[slot]; + // await bot.chat(`/item replace block ${x} ${y} ${z} container.${slot} with ${randomItem[0]} ${randomItem[1]}`); + // } + + // // Mark the chest area as occupied + // occupiedRegions.push({ + // xMin: x, + // xMax: x, + // zMin: z, + // zMax: z + // }); + // }; + + // await addChestWithItems(); + await new Promise(resolve => setTimeout(resolve, 300)); + + const animals = ['chicken', 'cow', 'llama', 'mooshroom', 'pig', 'rabbit', 'sheep']; + + // Animal management + await this.killEntities(["item"]); + await this.killEntities(animals); + await this.killEntities(["item"]); + + console.log("killed entities!"); + + await new Promise(resolve => setTimeout(resolve, 300)); + + // Summon new animals + + await this.summonAnimals(animals, 8); + console.log("summoned animals!"); + } + + async plantCrops (xStart, zStart, crop_and_age, till=true) { + const position = getPosition(this.bot); + for (let i = 0; i < 6; i++) { + for (let j = 0; j < 6; j++) { + const x = xStart + i; + const z = zStart + j; + if (till) { + await this.bot.chat(`/setblock ${x} ${position.y - 1} ${z} farmland`); + } + await this.bot.chat(`/setblock ${x} ${position.y} ${z} ${crop_and_age}`); } + } + await new Promise(resolve => setTimeout(resolve, 300)); + } - - - const occupiedRegions = [{ - xMin : botX - 1, - xMax : botX + 1, - zMin : botZ - 1, - zMax : botZ + 1 - }]; - const regionPositions = {}; - - // Calculate positions for all regions - for (const region of regionsToPlace) { - const { xStart, zStart } = findValidPosition(region.width, region.depth, occupiedRegions); - - occupiedRegions.push({ - xMin: xStart, - xMax: xStart + region.width - 1, - zMin: zStart, - zMax: zStart + region.depth - 1 - }); - - if (region.type === 'sugar_cane') { - if (!regionPositions.sugar_cane) regionPositions.sugar_cane = []; - regionPositions.sugar_cane.push({ xStart, zStart }); - } else { - regionPositions[region.type] = { xStart, zStart }; - } + async plantSugarCane (patches) { + const position = getPosition(this.bot); + for (const patch of patches) { + const xCenter = patch.xStart + 1; + const zCenter = patch.zStart + 1; + await this.bot.chat(`/setblock ${xCenter} ${position.y - 1} ${zCenter} water`); + const offsets = [[1, 0], [-1, 0], [0, 1], [0, -1]]; + for (const [dx, dz] of offsets) { + await this.bot.chat(`/setblock ${xCenter + dx} ${position.y} ${zCenter + dz} sugar_cane[age=15]`); } + } + }; - // Planting functions with dynamic positions - const plantWheat = async (xStart, zStart) => { - for (let i = 0; i < 6; i++) { - for (let j = 0; j < 6; j++) { - const x = xStart + i; - const z = zStart + j; - await bot.chat(`/setblock ${x} ${position.y - 1} ${z} farmland`); - await bot.chat(`/setblock ${x} ${position.y} ${z} wheat[age=7]`); - } - } - - }; - - const plantBeetroots = async (xStart, zStart) => { - for (let i = 0; i < 4; i++) { - for (let j = 0; j < 5; j++) { - const x = xStart + i; - const z = zStart + j; - await bot.chat(`/setblock ${x} ${position.y - 1} ${z} farmland`); - await bot.chat(`/setblock ${x} ${position.y} ${z} beetroots[age=3]`); - } - } - }; - - const plantMushrooms = async (xStart, zStart) => { - for (let i = 0; i < 4; i++) { - for (let j = 0; j < 5; j++) { - const x = xStart + i; - const z = zStart + j; - await bot.chat(`/setblock ${x} ${position.y - 1} ${z} mycelium`); - const mushroomType = (i + j) % 2 === 0 ? 'red_mushroom' : 'brown_mushroom'; - await bot.chat(`/setblock ${x} ${position.y} ${z} ${mushroomType}`); - } - } - }; - - const plantPotatoes = async (xStart, zStart) => { - for (let i = 0; i < 4; i++) { - for (let j = 0; j < 5; j++) { - const x = xStart + i; - const z = zStart + j; - await bot.chat(`/setblock ${x} ${position.y - 1} ${z} farmland`); - await bot.chat(`/setblock ${x} ${position.y} ${z} potatoes[age=7]`); - } - } - }; - - const plantCarrots = async (xStart, zStart) => { - for (let i = 0; i < 4; i++) { - for (let j = 0; j < 5; j++) { - const x = xStart + i; - const z = zStart + j; - await bot.chat(`/setblock ${x} ${position.y - 1} ${z} farmland`); - await bot.chat(`/setblock ${x} ${position.y} ${z} carrots[age=7]`); - } - } - }; - - const plantSugarCane = async (patches) => { - for (const patch of patches) { - const xCenter = patch.xStart + 1; - const zCenter = patch.zStart + 1; - await bot.chat(`/setblock ${xCenter} ${position.y - 1} ${zCenter} water`); - const offsets = [[1, 0], [-1, 0], [0, 1], [0, -1]]; - for (const [dx, dz] of offsets) { - await bot.chat(`/setblock ${xCenter + dx} ${position.y} ${zCenter + dz} sugar_cane[age=15]`); - } - } - }; - - const plantPumpkins = async (xStart, zStart) => { - for (let i = 0; i < 10; i++) { - const x = xStart + i; - const z = zStart; - await bot.chat(`/setblock ${x} ${position.y} ${z} pumpkin`); - } - }; - - // Execute all planting - await plantWheat(regionPositions.wheat.xStart, regionPositions.wheat.zStart); - await new Promise(resolve => setTimeout(resolve, 300)); - await plantBeetroots(regionPositions.beetroots.xStart, regionPositions.beetroots.zStart); - await new Promise(resolve => setTimeout(resolve, 300)); - await plantMushrooms(regionPositions.mushrooms.xStart, regionPositions.mushrooms.zStart); - await new Promise(resolve => setTimeout(resolve, 300)); - await plantPotatoes(regionPositions.potatoes.xStart, regionPositions.potatoes.zStart); - await new Promise(resolve => setTimeout(resolve, 300)); - await plantCarrots(regionPositions.carrots.xStart, regionPositions.carrots.zStart); - await new Promise(resolve => setTimeout(resolve, 300)); - await plantSugarCane(regionPositions.sugar_cane); - await new Promise(resolve => setTimeout(resolve, 300)); - await plantPumpkins(regionPositions.pumpkins.xStart, regionPositions.pumpkins.zStart); - await new Promise(resolve => setTimeout(resolve, 300)); - - // House construction - const buildHouse = async (xStart, zStart) => { - const startX = xStart; - const startY = position.y; - const startZ = zStart; - const width = 10; - const depth = 10; - const height = 5; - - // Foundation and walls - for (let x = startX; x <= startX + depth; x++) { - for (let y = startY; y <= startY + height; y++) { - for (let z = startZ; z <= startZ + width; z++) { - if (y === startY) { - if (!(x === startX + depth - 1 && z === startZ + Math.floor(width / 2))) { - await bot.chat(`/setblock ${x} ${y} ${z} stone_bricks`); - } - continue; - } - - if (x === startX || x === startX + depth || - z === startZ || z === startZ + width || - y === startY + height) { - - const isWindow = ( - (x === startX || x === startX + depth) && - (z === startZ + 3 || z === startZ + width - 3) && - (y === startY + 2 || y === startY + 3) - ) || ( - (z === startZ || z === startZ + width) && - (x === startX + 3 || x === startX + depth - 3) && - (y === startY + 2 || y === startY + 3) - ); - - const isDoor = x === startX + depth && - z === startZ + Math.floor(width / 2) && - (y === startY + 1 || y === startY + 2); - - if (!isWindow && !isDoor) { - await bot.chat(`/setblock ${x} ${y} ${z} stone_bricks`); - } - } - } - } - } - - // Entrance features - const doorZ = startZ + Math.floor(width / 2); - await bot.chat(`/setblock ${startX + depth - 1} ${startY} ${doorZ} stone_brick_stairs[facing=west]`); - await bot.chat(`/setblock ${startX + depth} ${startY} ${doorZ} air`); - // await bot.chat(`/setblock ${startX + depth - 1} ${startY} ${doorZ - 1} stone_bricks`); - // await bot.chat(`/setblock ${startX + depth - 1} ${startY} ${doorZ + 1} stone_bricks`); - // await bot.chat(`/setblock ${startX + depth} ${startY} ${doorZ} oak_door[half=lower,hinge=left,facing=west,powered=false]`); - // await bot.chat(`/setblock ${startX + depth} ${startY + 1} ${doorZ} oak_door[half=upper,hinge=left,facing=west,powered=false]`); - - // Roof construction - for (let i = 0; i < 3; i++) { - for (let x = startX + i; x <= startX + depth - i; x++) { - for (let z = startZ + i; z <= startZ + width - i; z++) { - if (x === startX + i || x === startX + depth - i || - z === startZ + i || z === startZ + width - i) { - await bot.chat(`/setblock ${x} ${startY + height + i} ${z} cobblestone`); - } - } - } - } - - // Interior items - await bot.chat(`/setblock ${startX + 4} ${startY + 1} ${startZ + 3} crafting_table`); - await bot.chat(`/setblock ${startX + 4} ${startY + 1} ${startZ + 5} furnace`); - // Add fuel to the furnace - await bot.chat(`/data merge block ${startX + 4} ${startY + 1} ${startZ + 5} {Items:[{Slot:1b,id:"minecraft:coal",Count:64b}]}`) - await bot.chat(`/setblock ${startX + 4} ${startY + 1} ${startZ + 7} smoker`); - // Add fuel to the smoker - await bot.chat(`/data merge block ${startX + 4} ${startY + 1} ${startZ + 7} {Items:[{Slot:1b,id:"minecraft:coal",Count:64b}]}`) - await bot.chat(`/setblock ${startX + depth - 3} ${startY + 1} ${startZ + 2} bed`); - }; - - await buildHouse(regionPositions.house.xStart, regionPositions.house.zStart); - await new Promise(resolve => setTimeout(resolve, 300)); - - // Add a chest with cooking items near the bot - const addChestWithItems = async () => { - // Find a valid position near the bot (within 10 blocks) - const findChestPosition = () => { - const maxAttempts = 100; - for (let attempt = 0; attempt < maxAttempts; attempt++) { - const x = botX + Math.floor(Math.random() * 10 - 5); // Within ±5 blocks X - const z = botZ + Math.floor(Math.random() * 10 - 5); // Within ±5 blocks Z - const y = position.y; - - // Check if the position is not overlapping with existing structures - if (!isOverlapping(x, x, z, z, occupiedRegions)) { - return { x, y, z }; - } - } - throw new Error('Failed to find valid chest position'); - }; - - const { x, y, z } = findChestPosition(); - - // Place the chest - await bot.chat(`/setblock ${x} ${y} ${z} chest`); - - const cookingItems = [ - ['minecraft:milk_bucket', 1], // Non-stackable - ['minecraft:egg', 16], // Stacks to 16 - ['minecraft:dandelion', 64], // Stacks to 64 - ['minecraft:sugar', 64], - ['minecraft:cocoa_beans', 64], - ['minecraft:apple', 64], - ['minecraft:milk_bucket', 1], - ['minecraft:milk_bucket', 1], - ['minecraft:salmon', 64], - ['minecraft:cod', 64], - ['minecraft:kelp', 64], - ['minecraft:dried_kelp', 64], - ['minecraft:sweet_berries', 64], - ['minecraft:honey_bottle', 1], // Non-stackable - ['minecraft:glow_berries', 64], - ['minecraft:bowl', 64], - ['minecraft:milk_bucket', 1], - ['minecraft:milk_bucket', 1], - ['minecraft:milk_bucket', 1], - ['minecraft:milk_bucket', 1], - ['minecraft:cooked_salmon', 64], - ['minecraft:cooked_cod', 64], - ['minecraft:gold_ingot', 64], - ['minecraft:oak_planks', 64], - ['minecraft:iron_ingot', 64], - ['minecraft:milk_bucket', 1], - ['minecraft:milk_bucket', 1], - ]; - - // Fill the chest with random cooking items - for (let slot = 0; slot < cookingItems.length; slot++) { // Chest has 27 slots - const randomItem = cookingItems[slot]; - await bot.chat(`/item replace block ${x} ${y} ${z} container.${slot} with ${randomItem[0]} ${randomItem[1]}`); - } - - // Mark the chest area as occupied - occupiedRegions.push({ - xMin: x, - xMax: x, - zMin: z, - zMax: z - }); - }; - - await addChestWithItems(); - await new Promise(resolve => setTimeout(resolve, 300)); - - // Animal management - await bot.chat('/kill @e[type=item,distance=..200]'); - await bot.chat('/kill @e[type=chicken,distance=..200]'); - await bot.chat('/kill @e[type=cow,distance=..200]'); - await bot.chat('/kill @e[type=llama,distance=..200]'); - await bot.chat('/kill @e[type=mooshroom,distance=..200]'); - await bot.chat('/kill @e[type=pig,distance=..200]'); - await bot.chat('/kill @e[type=rabbit,distance=..200]'); - await bot.chat('/kill @e[type=sheep,distance=..200]'); - - await bot.chat(`/kill @e[type=item,distance=..200]`); - - await new Promise(resolve => setTimeout(resolve, 300)); - - // Summon new animals - const summonAnimals = async () => { - const animals = ['chicken', 'cow', 'llama', 'mooshroom', 'pig', 'rabbit', 'sheep']; - for (const animal of animals) { - for (let i = 0; i < 8; i++) { - const x = position.x - 25 + Math.random() * 50; - const z = position.z - 25 + Math.random() * 50; - await bot.chat(`/summon ${animal} ${Math.floor(x)} ${position.y} ${Math.floor(z)}`); - } - } - }; - await summonAnimals(); + async plantMushrooms(xStart, zStart) { + const position = getPosition(this.bot); + for (let i = 0; i < 4; i++) { + for (let j = 0; j < 5; j++) { + const x = xStart + i; + const z = zStart + j; + await this.bot.chat(`/setblock ${x} ${position.y - 1} ${z} mycelium`); + const mushroomType = (i + j) % 2 === 0 ? 'red_mushroom' : 'brown_mushroom'; + await this.bot.chat(`/setblock ${x} ${position.y} ${z} ${mushroomType}`); + } } } + + async summonAnimals (animals, amount) { + const position = getPosition(this.bot); + for (const animal of animals) { + for (let i = 0; i < amount; i++) { + const x = position.x - 25 + Math.random() * 50; + const z = position.z - 25 + Math.random() * 50; + await this.bot.chat(`/summon ${animal} ${Math.floor(x)} ${position.y} ${Math.floor(z)}`); + } + } + } + + async killEntities(entities) { + for (const entity of entities) { + await this.bot.chat(`/kill @e[type=${entity},distance=..200]`); + } + } + + async buildHouse (xStart, zStart) { + const position = getPosition(this.bot); + const startX = xStart; + const startY = position.y; + const startZ = zStart; + const width = 10; + const depth = 10; + const height = 5; + + // Foundation and walls + for (let x = startX; x <= startX + depth; x++) { + for (let y = startY; y <= startY + height; y++) { + for (let z = startZ; z <= startZ + width; z++) { + if (y === startY) { + if (!(x === startX + depth - 1 && z === startZ + Math.floor(width / 2))) { + await this.bot.chat(`/setblock ${x} ${y} ${z} stone_bricks`); + } + continue; + } + + if (x === startX || x === startX + depth || + z === startZ || z === startZ + width || + y === startY + height) { + + const isWindow = ( + (x === startX || x === startX + depth) && + (z === startZ + 3 || z === startZ + width - 3) && + (y === startY + 2 || y === startY + 3) + ) || ( + (z === startZ || z === startZ + width) && + (x === startX + 3 || x === startX + depth - 3) && + (y === startY + 2 || y === startY + 3) + ); + + const isDoor = x === startX + depth && + z === startZ + Math.floor(width / 2) && + (y === startY + 1 || y === startY + 2); + + if (!isWindow && !isDoor) { + await this.bot.chat(`/setblock ${x} ${y} ${z} stone_bricks`); + } + } + } + } + } + + // Entrance features + const doorZ = startZ + Math.floor(width / 2); + await this.bot.chat(`/setblock ${startX + depth - 1} ${startY} ${doorZ} stone_brick_stairs[facing=west]`); + await this.bot.chat(`/setblock ${startX + depth} ${startY} ${doorZ} air`); + // await bot.chat(`/setblock ${startX + depth - 1} ${startY} ${doorZ - 1} stone_bricks`); + // await bot.chat(`/setblock ${startX + depth - 1} ${startY} ${doorZ + 1} stone_bricks`); + // await bot.chat(`/setblock ${startX + depth} ${startY} ${doorZ} oak_door[half=lower,hinge=left,facing=west,powered=false]`); + // await bot.chat(`/setblock ${startX + depth} ${startY + 1} ${doorZ} oak_door[half=upper,hinge=left,facing=west,powered=false]`); + + // Roof construction + for (let i = 0; i < 3; i++) { + for (let x = startX + i; x <= startX + depth - i; x++) { + for (let z = startZ + i; z <= startZ + width - i; z++) { + if (x === startX + i || x === startX + depth - i || + z === startZ + i || z === startZ + width - i) { + await this.bot.chat(`/setblock ${x} ${startY + height + i} ${z} cobblestone`); + } + } + } + } + + // Interior items + await this.bot.chat(`/setblock ${startX + 4} ${startY + 1} ${startZ + 3} crafting_table`); + await this.bot.chat(`/setblock ${startX + 4} ${startY + 1} ${startZ + 5} furnace`); + // Add fuel to the furnace + await this.bot.chat(`/data merge block ${startX + 4} ${startY + 1} ${startZ + 5} {Items:[{Slot:1b,id:"minecraft:coal",Count:64b}]}`) + await this.bot.chat(`/setblock ${startX + 4} ${startY + 1} ${startZ + 7} smoker`); + // Add fuel to the smoker + await this.bot.chat(`/data merge block ${startX + 4} ${startY + 1} ${startZ + 7} {Items:[{Slot:1b,id:"minecraft:coal",Count:64b}]}`) + await this.bot.chat(`/setblock ${startX + depth - 3} ${startY + 1} ${startZ + 2} bed`); + await new Promise(resolve => setTimeout(resolve, 300)); + } } \ No newline at end of file diff --git a/src/agent/tasks/tasks.js b/src/agent/tasks/tasks.js index 859b5de..1c00d95 100644 --- a/src/agent/tasks/tasks.js +++ b/src/agent/tasks/tasks.js @@ -240,7 +240,7 @@ export class Task { this.taskStartTime = taskStartTime; else this.taskStartTime = Date.now(); - + console.log("Task start time set to", this.taskStartTime); this.validator = null; this.reset_function = null; this.blocked_actions = []; @@ -264,9 +264,17 @@ export class Task { this.conversation = this.data.conversation; } this.taskTimeout = this.data.timeout || 300; - this.taskStartTime = Date.now(); // Set validator based on task_type + // do goal initialization here + + // let agentGoal = this.getAgentGoal(); + // if (agentGoal) { + // agentGoal += "You have to collaborate with other agents/bots, namely " + this.available_agents.filter(n => n !== this.name).join(', ') + " to complete the task as soon as possible by dividing the work among yourselves."; + // console.log(`Setting goal for agent ${this.agent.count_id}: ${agentGoal}`); + // await executeCommand(this.agent, `!goal("${agentGoal}")`); + // } + if (this.task_type === 'construction') { this.validator = new ConstructionTaskValidator(this.data, this.agent); } else if (this.task_type === 'cooking' || this.task_type === 'techtree') { @@ -312,23 +320,24 @@ export class Task { if (this.task_type === 'cooking') { - if (this.data.agent_count > 2) { - if (this.name.toLowerCase().startsWith('andy')) { - add_string = '\nIn the end, all the food items should be given to you by other bots. Make sure to talk to all the agents using startConversation command to coordinate the task instead of talking to just one agent. You can even end current conversation with any agent using endConversation command and then talk to a new agent using startConversation command.'; - } - else { - add_string = '\nIn the end, all the food items should be given to one single bot whose name starts with andy or Andy. Make sure to talk to all the agents using startConversation command to coordinate the task instead of talking to just one agent. You can even end current conversation with any agent using endConversation command and then talk to a new agent using startConversation command.'; - } + if (this.data.agent_count > 2) { + + if (this.name.toLowerCase().startsWith('andy')) { + add_string = '\nIn the end, all the food items should be given to you by other bots. Make sure to talk to all the agents using startConversation command to coordinate the task instead of talking to just one agent. You can even end current conversation with any agent using endConversation command and then talk to a new agent using startConversation command.'; } else { - if (this.data.task_id && this.data.task_id.endsWith('hells_kitchen')) { - add_string = ''; - } - else { - add_string = '\nIn the end, all the food items should be given to one single bot.'; - } + add_string = '\nIn the end, all the food items should be given to one single bot whose name starts with andy or Andy. Make sure to talk to all the agents using startConversation command to coordinate the task instead of talking to just one agent. You can even end current conversation with any agent using endConversation command and then talk to a new agent using startConversation command.'; + } + } + else { + if (this.data.task_id && this.data.task_id.endsWith('hells_kitchen')) { + add_string = ''; + } + else { + add_string = '\nIn the end, all the food items should be given to one single bot.'; } + } } if (this.task_type === 'techtree') { @@ -382,6 +391,7 @@ export class Task { for (let agent of this.available_agents) { this.agent.bot.chat(`/clear ${agent}`); } + // this.agent.bot.chat(`/clear @a`); return {"message": 'Task successful', "score": res.score}; } let other_names = this.available_agents.filter(n => n !== this.name); @@ -406,7 +416,17 @@ export class Task { return false; } + async setAgentGoal() { + let agentGoal = this.getAgentGoal(); + if (agentGoal && this.data.agent_count + this.data.human_count > 1) { + agentGoal += "You have to collaborate with other agents/bots, namely " + this.available_agents.filter(n => n !== this.name).join(', ') + " to complete the task as soon as possible by dividing the work among yourselves."; + console.log(`Setting goal for agent ${this.agent.count_id}: ${agentGoal}`); + } + await executeCommand(this.agent, `!goal("${agentGoal}")`); + } + async initBotTask() { + await this.setAgentGoal(); await this.agent.bot.chat(`/clear ${this.name}`); console.log(`Cleared ${this.name}'s inventory.`); @@ -417,7 +437,7 @@ export class Task { return; if (this.task_type === 'cooking') { - this.initiator = new CookingTaskInitiator(this.data, this.agent); + this.initiator = new CookingTaskInitiator(this.data, this.agent.bot); } else { this.initiator = null; } @@ -425,17 +445,43 @@ export class Task { //wait for a bit so bots are teleported await new Promise((resolve) => setTimeout(resolve, 3000)); + if (this.agent.count_id === 0 && this.data.human_count > 0) { + console.log('Clearing human player inventories'); + for (let i = 0; i < this.data.human_count; i++) { + const username = this.data.usernames[i]; + await this.agent.bot.chat(`/clear ${username}`); + } + await new Promise((resolve) => setTimeout(resolve, 500)); + } + if (this.data.initial_inventory) { console.log("Setting inventory..."); let initialInventory = {}; - // Handle multi-agent inventory assignment - if (this.data.agent_count > 1) { - initialInventory = this.data.initial_inventory[this.agent.count_id.toString()] || {}; - console.log("Initial inventory for agent", this.agent.count_id, ":", initialInventory); - } else { - initialInventory = this.data.initial_inventory; - console.log("Initial inventory:", initialInventory); + initialInventory = this.data.initial_inventory[this.agent.count_id.toString()] || {}; + console.log("Initial inventory for agent", this.agent.count_id, ":", initialInventory); + console.log("") + + if (this.data.human_count > 0 && this.agent.count_id === 0) { + // this.num_humans = num_keys - this.data.num_agents; + if (this.data.human_count !== this.data.usernames.length) { + console.log(`Number of human players ${this.human_count} does not match the number of usernames provided. ${this.data.usernames.length}`); + throw new Error(`Number of human players ${this.human_count} does not match the number of usernames provided. ${this.data.usernames.length}`); + return; + } + + const starting_idx = this.data.agent_count; + for (let i = 0; i < this.data.human_count; i++) { + const username = this.data.usernames[i]; + const inventory = this.data.initial_inventory[starting_idx + i]; + console.log(Object.keys(inventory)); + for (let key of Object.keys(inventory)) { + const itemName = key.toLowerCase(); + const quantity = inventory[key]; + console.log(`Give ${username} ${quantity} ${itemName}`); + await this.agent.bot.chat(`/give ${username} ${itemName} ${quantity}`); + } + } } console.log(this.data.initial_inventory); @@ -451,7 +497,7 @@ export class Task { await new Promise((resolve) => setTimeout(resolve, 500)); } - if (this.initiator) { + if (this.initiator && this.agent.count_id === 0) { await this.initiator.init(); } @@ -481,12 +527,7 @@ export class Task { await executeCommand(this.agent, `!startConversation("${other_name}", "${this.data.conversation}")`); } - let agentGoal = this.getAgentGoal(); - if (agentGoal) { - agentGoal += "You have to collaborate with other agents/bots, namely " + this.available_agents.filter(n => n !== this.name).join(', ') + " to complete the task as soon as possible by dividing the work among yourselves."; - console.log(`Setting goal for agent ${this.agent.count_id}: ${agentGoal}`); - await executeCommand(this.agent, `!goal("${agentGoal}")`); - } + } async teleportBots() { @@ -508,7 +549,8 @@ export class Task { } } - if (human_player_name) { + // go the human if there is one and not required for the task + if (human_player_name && this.data.human_count === 0) { console.log(`Teleporting ${this.name} to human ${human_player_name}`) bot.chat(`/tp ${this.name} ${human_player_name}`) } @@ -554,7 +596,14 @@ export class Task { const commands = result.commands; const nearbyPosition = result.nearbyPosition; console.log("nearby position", nearbyPosition); - bot.chat(`/tp @a ${nearbyPosition.x} ${nearbyPosition.y} ${nearbyPosition.z}`); + const first_coord = this.data.blueprint.levels[0].coordinates; + bot.chat(`/tp @a ${first_coord[0]} ${first_coord[1]} ${first_coord[2]}`); + if (this.agent.agent_id === 0 && this.data.human_count > 0) { + for (let i = 0; i < this.data.human_count; i++) { + const username = this.data.usernames[i]; + await bot.chat(`/tp ${username} ${nearbyPosition.x} ${nearbyPosition.y} ${nearbyPosition.z}`); + } + } for (const command of commands) { bot.chat(command); } diff --git a/src/utils/mcdata.js b/src/utils/mcdata.js index b42a532..1b79d3e 100644 --- a/src/utils/mcdata.js +++ b/src/utils/mcdata.js @@ -355,6 +355,7 @@ export function initializeLoopingItems() { loopingItems = new Set(['coal', 'wheat', + 'bone_meal', 'diamond', 'emerald', 'raw_iron', diff --git a/tasks/analyze_construction_tasks.py b/tasks/analyze_construction_tasks.py index a7a89e4..35c1e35 100644 --- a/tasks/analyze_construction_tasks.py +++ b/tasks/analyze_construction_tasks.py @@ -183,9 +183,6 @@ def extract_success_scores(folders, model_names): display_table("Average Success Score by Room", avg_room_scores) display_table("Average Success Score by (Material, Room) Tuples", avg_material_room_scores, tuple_keys=True) -def analyze_construction_log(log_file): - # ... existing code ... - pass def main(): parser = argparse.ArgumentParser(description='Analyze construction task logs.') diff --git a/tasks/construction_tasks/blueprint_visualizer.py b/tasks/construction_tasks/blueprint_visualizer.py new file mode 100644 index 0000000..f2dbf25 --- /dev/null +++ b/tasks/construction_tasks/blueprint_visualizer.py @@ -0,0 +1,76 @@ +import json +import matplotlib.pyplot as plt +import numpy as np + +def display_3d_blocks(data): + """Displays a 3D array of blocks with different types in a single figure with subplots for each level, + including block coordinates. Dynamically adjusts the height of the figure. + + Args: + data: A dictionary containing the block data, structured like the JSON example. + """ + + block_types = { + "air": "#FFFFFF", # White + "oak_planks": "#8B4513", # Saddle Brown + "stone_bricks": "#808080", # Gray + "oak_door": "#A0522D", # Sienna + "oak_stairs": "#D2691E", # Chocolate + "quartz_block": "#FFFFF0", # Ivory + "glass_pane": "#00CED1", # Dark Turquoise + "torch": "#FF8C00" # Dark Orange + } + + # Extract data from the JSON + levels = data["levels"] + num_levels = len(levels) + + # Create a figure and subplots grid + fig, axes = plt.subplots(num_levels, 1, figsize=(10, 5 * num_levels)) # One column, dynamic height + axes[0].legend(handles=[plt.Rectangle((0, 0), 1, 1, color=color) for color in block_types.values()], + labels=block_types.keys(), loc='upper right') + starting_coords = levels[0]["coordinates"] + + # Iterate over each level and corresponding subplot + for i, level in enumerate(levels): + ax = axes[i] + ax.set_title(f"Level {level['level']}") + placement = level["placement"] + + # Convert placement data to NumPy array + block_array = np.array([ + [block_types.get(block, 'gray') for block in row] for row in placement + ]) + + # Iterate over each block in the level + for x in range(block_array.shape[1]): + for y in range(block_array.shape[0]): + block_type = block_array[y, x] + + # Plot the block as a rectangle + rect = plt.Rectangle((x, y), 1, 1, color=block_type) + ax.add_patch(rect) + + # Add coordinate text to the center of the block + real_x = x + starting_coords[0] + real_y = level['level'] + starting_coords[1] + real_z = y + starting_coords[2] + ax.text(x + 0.5, y + 0.5, f"({real_x},{real_y},{real_z})", ha='center', va='center', fontsize=8) + + # Set axis limits and labels + ax.set_xlim([0, block_array.shape[1]]) + ax.set_ylim([0, block_array.shape[0]]) + ax.set_xlabel("X") + ax.set_ylabel("Y") + + + plt.tight_layout() # Adjust spacing between subplots + # plt.show() + plt.savefig("construction_tasks/church_three_agents.pdf", bbox_inches='tight') + +# Example usage: +with open("construction_tasks/custom/church_three_agents.json", "r") as f: + data = json.load(f) + data = data["church_three_agents"]["blueprint"] + +display_3d_blocks(data) \ No newline at end of file diff --git a/tasks/construction_tasks/church_three_agents.pdf b/tasks/construction_tasks/church_three_agents.pdf new file mode 100644 index 0000000..9d43514 Binary files /dev/null and b/tasks/construction_tasks/church_three_agents.pdf differ diff --git a/tasks/construction_tasks/custom/church_one_agent.json b/tasks/construction_tasks/custom/church_one_agent.json new file mode 100644 index 0000000..235fb57 --- /dev/null +++ b/tasks/construction_tasks/custom/church_one_agent.json @@ -0,0 +1,2348 @@ +{ + "church_one_agent": { + "type": "construction", + "goal": "Make a structure with the blueprint below", + "conversation": "Let's share materials and make a structure with the blueprint", + "agent_count": 1, + "timeout": 1000, + "blueprint": { + "materials": { + "oak_planks": 153, + "stone_bricks": 142, + "oak_door": 2, + "oak_stairs": 16, + "quartz_block": 1, + "glass_pane": 15, + "torch": 4, + "oak_fence": 4 + }, + "levels": [ + { + "level": 0, + "coordinates": [ + -18, + -60, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 1, + "coordinates": [ + -18, + -59, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "stone_bricks", + "stone_bricks", + "oak_door", + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "oak_stairs", + "oak_stairs", + "air", + "oak_stairs", + "oak_stairs", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "oak_stairs", + "oak_stairs", + "air", + "oak_stairs", + "oak_stairs", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "oak_stairs", + "oak_stairs", + "air", + "oak_stairs", + "oak_stairs", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "oak_stairs", + "oak_stairs", + "air", + "oak_stairs", + "oak_stairs", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "quartz_block", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 2, + "coordinates": [ + -18, + -58, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "glass_pane", + "stone_bricks", + "oak_door", + "stone_bricks", + "glass_pane", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", + "glass_pane", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", + "glass_pane", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", + "glass_pane", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", + "glass_pane", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", + "glass_pane", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "glass_pane", + "stone_bricks", + "glass_pane", + "stone_bricks", + "glass_pane", + "stone_bricks", + "air", + "air", + "air" + ] + ] + }, + { + "level": 3, + "coordinates": [ + -18, + -57, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "torch", + "air", + "air", + "air", + "torch", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "torch", + "air", + "air", + "air", + "torch", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ] + ] + }, + { + "level": 4, + "coordinates": [ + -18, + -56, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ] + ] + }, + { + "level": 5, + "coordinates": [ + -18, + -55, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ] + ] + }, + { + "level": 6, + "coordinates": [ + -18, + -54, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ] + ] + }, + { + "level": 7, + "coordinates": [ + -18, + -53, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 8, + "coordinates": [ + -18, + -52, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 9, + "coordinates": [ + -18, + -51, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 10, + "coordinates": [ + -18, + -50, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "oak_fence", + "oak_fence", + "oak_fence", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 11, + "coordinates": [ + -18, + -49, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "oak_fence", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 12, + "coordinates": [ + -18, + -48, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 13, + "coordinates": [ + -18, + -47, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 14, + "coordinates": [ + -18, + -46, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + } + ] + }, + "initial_inventory": { + "0": { + "diamond_pickaxe": 1, + "diamond_axe": 1, + "diamond_shovel": 1, + "oak_planks": 153, + "oak_stairs": 16, + "torch": 4, + "stone_bricks": 142, + "quartz_block": 1, + "oak_fence": 4, + "oak_door": 2, + "glass_pane": 15 + } + } + } + } \ No newline at end of file diff --git a/tasks/construction_tasks/custom/church_three_agents.json b/tasks/construction_tasks/custom/church_three_agents.json index af4219f..e6c6cc9 100644 --- a/tasks/construction_tasks/custom/church_three_agents.json +++ b/tasks/construction_tasks/custom/church_three_agents.json @@ -4,6 +4,7 @@ "goal": "Make a structure with the blueprint below", "conversation": "Let's share materials and make a structure with the blueprint", "agent_count": 3, + "timeout": 1000, "blueprint": { "materials": { "oak_planks": 153, diff --git a/tasks/construction_tasks/custom/church_two_agents.json b/tasks/construction_tasks/custom/church_two_agents.json new file mode 100644 index 0000000..2831758 --- /dev/null +++ b/tasks/construction_tasks/custom/church_two_agents.json @@ -0,0 +1,2353 @@ +{ + "church_two_agent": { + "type": "construction", + "goal": "Make a structure with the blueprint below", + "conversation": "Let's share materials and make a structure with the blueprint", + "agent_count": 1, + "timeout": 1000, + "blueprint": { + "materials": { + "oak_planks": 153, + "stone_bricks": 142, + "oak_door": 2, + "oak_stairs": 16, + "quartz_block": 1, + "glass_pane": 15, + "torch": 4, + "oak_fence": 4 + }, + "levels": [ + { + "level": 0, + "coordinates": [ + -18, + -60, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 1, + "coordinates": [ + -18, + -59, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "stone_bricks", + "stone_bricks", + "oak_door", + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "oak_stairs", + "oak_stairs", + "air", + "oak_stairs", + "oak_stairs", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "oak_stairs", + "oak_stairs", + "air", + "oak_stairs", + "oak_stairs", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "oak_stairs", + "oak_stairs", + "air", + "oak_stairs", + "oak_stairs", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "oak_stairs", + "oak_stairs", + "air", + "oak_stairs", + "oak_stairs", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "quartz_block", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 2, + "coordinates": [ + -18, + -58, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "glass_pane", + "stone_bricks", + "oak_door", + "stone_bricks", + "glass_pane", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", + "glass_pane", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", + "glass_pane", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", + "glass_pane", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", + "glass_pane", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", + "glass_pane", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "glass_pane", + "stone_bricks", + "glass_pane", + "stone_bricks", + "glass_pane", + "stone_bricks", + "air", + "air", + "air" + ] + ] + }, + { + "level": 3, + "coordinates": [ + -18, + -57, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "torch", + "air", + "air", + "air", + "torch", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "torch", + "air", + "air", + "air", + "torch", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ] + ] + }, + { + "level": 4, + "coordinates": [ + -18, + -56, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ] + ] + }, + { + "level": 5, + "coordinates": [ + -18, + -55, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ] + ] + }, + { + "level": 6, + "coordinates": [ + -18, + -54, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ] + ] + }, + { + "level": 7, + "coordinates": [ + -18, + -53, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 8, + "coordinates": [ + -18, + -52, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 9, + "coordinates": [ + -18, + -51, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 10, + "coordinates": [ + -18, + -50, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "oak_fence", + "oak_fence", + "oak_fence", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 11, + "coordinates": [ + -18, + -49, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "oak_fence", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 12, + "coordinates": [ + -18, + -48, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 13, + "coordinates": [ + -18, + -47, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 14, + "coordinates": [ + -18, + -46, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + } + ] + }, + "initial_inventory": { + "0": { + "diamond_pickaxe": 1, + "diamond_axe": 1, + "diamond_shovel": 1, + "oak_planks": 153, + "oak_stairs": 16, + "torch": 4, + "oak_door": 2 + }, + "1": { + "diamond_pickaxe": 1, + "diamond_axe": 1, + "diamond_shovel": 1, + "stone_bricks": 142, + "quartz_block": 1, + "oak_fence": 4, + "glass_pane": 15 + } + } + } + } \ No newline at end of file diff --git a/tasks/construction_tasks/custom/pyramid.json b/tasks/construction_tasks/custom/pyramid.json index 398c37d..ed183c8 100644 --- a/tasks/construction_tasks/custom/pyramid.json +++ b/tasks/construction_tasks/custom/pyramid.json @@ -4,6 +4,7 @@ "goal": "Make a structure with the blueprint below", "conversation": "Let's share materials and make a structure with the blueprint", "agent_count": 2, + "timeout": 1000, "blueprint": { "materials": { "polished_granite": 1, diff --git a/tasks/construction_tasks/get_blueprint.js b/tasks/construction_tasks/get_blueprint.js index dcf2493..841a886 100644 --- a/tasks/construction_tasks/get_blueprint.js +++ b/tasks/construction_tasks/get_blueprint.js @@ -23,7 +23,7 @@ bot.on('spawn', async () => { const xOffset = 30; const zOffset = 20; - const taskFilePath = '/Users/isadorawhite/izzy_mindcraft/mindcraft/tasks/construction_tasks/custom/flower_three_agents.json'; + const taskFilePath = ''; const task_name = "flower_three_agents"; diff --git a/tasks/construction_tasks/human_ai/1_agent_1_human.json b/tasks/construction_tasks/human_ai/1_agent_1_human.json new file mode 100644 index 0000000..2dfaa22 --- /dev/null +++ b/tasks/construction_tasks/human_ai/1_agent_1_human.json @@ -0,0 +1,2357 @@ +{ + "church": { + "type": "construction", + "goal": "Make a structure with the blueprint below", + "conversation": "Let's share materials and make a structure with the blueprint", + "agent_count": 1, + "human_count": 1, + "timeout": 600, + "blueprint": { + "materials": { + "oak_planks": 153, + "stone_bricks": 142, + "oak_door": 2, + "oak_stairs": 16, + "quartz_block": 1, + "glass_pane": 15, + "torch": 4, + "oak_fence": 4 + }, + "levels": [ + { + "level": 0, + "coordinates": [ + -18, + -60, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 1, + "coordinates": [ + -18, + -59, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "stone_bricks", + "stone_bricks", + "oak_door", + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "oak_stairs", + "oak_stairs", + "air", + "oak_stairs", + "oak_stairs", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "oak_stairs", + "oak_stairs", + "air", + "oak_stairs", + "oak_stairs", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "oak_stairs", + "oak_stairs", + "air", + "oak_stairs", + "oak_stairs", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "oak_stairs", + "oak_stairs", + "air", + "oak_stairs", + "oak_stairs", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "quartz_block", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 2, + "coordinates": [ + -18, + -58, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "glass_pane", + "stone_bricks", + "oak_door", + "stone_bricks", + "glass_pane", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", + "glass_pane", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", + "glass_pane", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", + "glass_pane", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", + "glass_pane", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", + "glass_pane", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "glass_pane", + "stone_bricks", + "glass_pane", + "stone_bricks", + "glass_pane", + "stone_bricks", + "air", + "air", + "air" + ] + ] + }, + { + "level": 3, + "coordinates": [ + -18, + -57, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "torch", + "air", + "air", + "air", + "torch", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "torch", + "air", + "air", + "air", + "torch", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ] + ] + }, + { + "level": 4, + "coordinates": [ + -18, + -56, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ] + ] + }, + { + "level": 5, + "coordinates": [ + -18, + -55, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ] + ] + }, + { + "level": 6, + "coordinates": [ + -18, + -54, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ] + ] + }, + { + "level": 7, + "coordinates": [ + -18, + -53, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 8, + "coordinates": [ + -18, + -52, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 9, + "coordinates": [ + -18, + -51, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 10, + "coordinates": [ + -18, + -50, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "oak_fence", + "oak_fence", + "oak_fence", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 11, + "coordinates": [ + -18, + -49, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "oak_fence", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 12, + "coordinates": [ + -18, + -48, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 13, + "coordinates": [ + -18, + -47, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 14, + "coordinates": [ + -18, + -46, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + } + ] + }, + "initial_inventory": { + "0": { + "diamond_pickaxe": 1, + "diamond_axe": 1, + "diamond_shovel": 1, + "oak_planks": 153, + "oak_stairs": 16, + "torch": 4, + "oak_door": 2 + }, + "1": { + "diamond_pickaxe": 1, + "diamond_axe": 1, + "diamond_shovel": 1, + "stone_bricks": 142, + "quartz_block": 1, + "oak_fence": 4, + "glass_pane": 15 + } + }, + "usernames": [ + "izzycw" + ] + } +} \ No newline at end of file diff --git a/tasks/construction_tasks/human_ai/2_agent_1_human.json b/tasks/construction_tasks/human_ai/2_agent_1_human.json new file mode 100644 index 0000000..29d5253 --- /dev/null +++ b/tasks/construction_tasks/human_ai/2_agent_1_human.json @@ -0,0 +1,2375 @@ +{ + "church": { + "type": "construction", + "goal": "Make a structure with the blueprint below", + "conversation": "Let's share materials and make a structure with the blueprint", + "agent_count": 2, + "human_count": 1, + "timeout": 600, + "blueprint": { + "materials": { + "oak_planks": 153, + "stone_bricks": 142, + "oak_door": 2, + "oak_stairs": 16, + "quartz_block": 1, + "glass_pane": 15, + "torch": 4, + "oak_fence": 4 + }, + "levels": [ + { + "level": 0, + "coordinates": [ + -18, + -60, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 1, + "coordinates": [ + -18, + -59, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "stone_bricks", + "stone_bricks", + "oak_door", + "stone_bricks", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "oak_stairs", + "oak_stairs", + "air", + "oak_stairs", + "oak_stairs", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "oak_stairs", + "oak_stairs", + "air", + "oak_stairs", + "oak_stairs", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "oak_stairs", + "oak_stairs", + "air", + "oak_stairs", + "oak_stairs", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "oak_stairs", + "oak_stairs", + "air", + "oak_stairs", + "oak_stairs", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "quartz_block", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 2, + "coordinates": [ + -18, + -58, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "glass_pane", + "stone_bricks", + "oak_door", + "stone_bricks", + "glass_pane", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", + "glass_pane", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", + "glass_pane", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", + "glass_pane", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", + "glass_pane", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "glass_pane", + "air", + "air", + "air", + "air", + "air", + "glass_pane", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "glass_pane", + "stone_bricks", + "glass_pane", + "stone_bricks", + "glass_pane", + "stone_bricks", + "air", + "air", + "air" + ] + ] + }, + { + "level": 3, + "coordinates": [ + -18, + -57, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "torch", + "air", + "air", + "air", + "torch", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "torch", + "air", + "air", + "air", + "torch", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ] + ] + }, + { + "level": 4, + "coordinates": [ + -18, + -56, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ] + ] + }, + { + "level": 5, + "coordinates": [ + -18, + -55, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air" + ], + [ + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "stone_bricks", + "air", + "air", + "air" + ] + ] + }, + { + "level": 6, + "coordinates": [ + -18, + -54, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ], + [ + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "oak_planks", + "air", + "air", + "air" + ] + ] + }, + { + "level": 7, + "coordinates": [ + -18, + -53, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 8, + "coordinates": [ + -18, + -52, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 9, + "coordinates": [ + -18, + -51, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "stone_bricks", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 10, + "coordinates": [ + -18, + -50, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "oak_fence", + "oak_fence", + "oak_fence", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 11, + "coordinates": [ + -18, + -49, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "oak_fence", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 12, + "coordinates": [ + -18, + -48, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 13, + "coordinates": [ + -18, + -47, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + }, + { + "level": 14, + "coordinates": [ + -18, + -46, + 29 + ], + "placement": [ + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ], + [ + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air", + "air" + ] + ] + } + ] + }, + "initial_inventory": { + "0": { + "diamond_pickaxe": 1, + "diamond_axe": 1, + "diamond_shovel": 1, + "oak_planks": 51, + "oak_stairs": 6, + "torch": 2, + "oak_door": 1, + "stone_bricks": 48, + "quartz_block": 1, + "oak_fence": 1, + "glass_pane": 3 + }, + "1": { + "diamond_pickaxe": 1, + "diamond_axe": 1, + "diamond_shovel": 1, + "oak_planks": 51, + "oak_stairs": 6, + "torch": 2, + "oak_door": 1, + "stone_bricks": 48, + "quartz_block": 1, + "oak_fence": 1, + "glass_pane": 3 + }, + "2": { + "diamond_pickaxe": 1, + "diamond_axe": 1, + "diamond_shovel": 1, + "oak_planks": 51, + "oak_stairs": 6, + "torch": 2, + "oak_door": 1, + "stone_bricks": 48, + "quartz_block": 1, + "oak_fence": 1, + "glass_pane": 3 + } + } + } + } \ No newline at end of file diff --git a/tasks/cooking_tasks/equal_load_test_tasks/1_agent.json b/tasks/cooking_tasks/equal_load_test_tasks/1_agent.json deleted file mode 100644 index 32075e9..0000000 --- a/tasks/cooking_tasks/equal_load_test_tasks/1_agent.json +++ /dev/null @@ -1,415 +0,0 @@ -{ - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew_1_agent": { - "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", - "agent_count": 1, - "target": { - "cooked_beef": 1, - "baked_potato": 1, - "cake": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_1_agent": { - "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", - "agent_count": 1, - "target": { - "bread": 1, - "cake": 1, - "golden_apple": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple_1_agent": { - "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", - "agent_count": 1, - "target": { - "baked_potato": 1, - "bread": 1, - "cooked_beef": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_agent": { - "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", - "agent_count": 1, - "target": { - "cake": 1, - "bread": 1, - "golden_apple": 1, - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew_1_agent": { - "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", - "agent_count": 1, - "target": { - "rabbit_stew": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - }, - "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_agent": { - "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", - "agent_count": 2, - "target": { - "bread": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_1_agent": { - "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", - "agent_count": 1, - "target": { - "cake": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", - "agent_count": 1, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", - "agent_count": 5, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "rabbit_stew": 1, - "bread": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_1_agent": { - "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", - "agent_count": 2, - "target": { - "bread": 1, - "cooked_beef": 1, - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - } - } \ No newline at end of file diff --git a/tasks/cooking_tasks/equal_load_test_tasks/2_agent.json b/tasks/cooking_tasks/equal_load_test_tasks/2_agent.json deleted file mode 100644 index 5ccff29..0000000 --- a/tasks/cooking_tasks/equal_load_test_tasks/2_agent.json +++ /dev/null @@ -1,425 +0,0 @@ -{ - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew_2_agents": { - "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", - "agent_count": 2, - "target": { - "cooked_beef": 1, - "baked_potato": 1, - "cake": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_2_agent": { - "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", - "agent_count": 2, - "target": { - "bread": 1, - "cake": 1, - "golden_apple": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple_2_agent": { - "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "bread": 1, - "cooked_beef": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", - "agent_count": 2, - "target": { - "cake": 1, - "bread": 1, - "golden_apple": 1, - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew_2_agent": { - "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", - "agent_count": 2, - "target": { - "rabbit_stew": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - }, - "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_2_agent": { - "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", - "agent_count": 2, - "target": { - "bread": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_2_agent": { - "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", - "agent_count": 2, - "target": { - "cake": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_2_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", - "agent_count": 2, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_2_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", - "agent_count": 5, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "rabbit_stew": 1, - "bread": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_2_agent": { - "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", - "agent_count": 2, - "target": { - "bread": 1, - "cooked_beef": 1, - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - } - } \ No newline at end of file diff --git a/tasks/cooking_tasks/equal_load_test_tasks/3_agent.json b/tasks/cooking_tasks/equal_load_test_tasks/3_agent.json deleted file mode 100644 index 0c76be9..0000000 --- a/tasks/cooking_tasks/equal_load_test_tasks/3_agent.json +++ /dev/null @@ -1,435 +0,0 @@ -{ - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew_3_agent": { - "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", - "agent_count": 3, - "target": { - "cooked_beef": 1, - "baked_potato": 1, - "cake": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_3_agent": { - "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", - "agent_count": 5, - "target": { - "bread": 1, - "cake": 1, - "golden_apple": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "2": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple_3_agent": { - "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", - "agent_count": 3, - "target": { - "baked_potato": 1, - "bread": 1, - "cooked_beef": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "2": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple_3_agent": { - "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", - "agent_count": 3, - "target": { - "cake": 1, - "bread": 1, - "golden_apple": 1, - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "2": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew_3_agent": { - "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", - "agent_count": 3, - "target": { - "rabbit_stew": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - }, - "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_3_agent": { - "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", - "agent_count": 5, - "target": { - "bread": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "2": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_3_agent": { - "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", - "agent_count": 3, - "target": { - "cake": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "2": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", - "agent_count": 3, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_3_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", - "agent_count": 3, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "rabbit_stew": 1, - "bread": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_3_agent": { - "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", - "agent_count": 5, - "target": { - "bread": 1, - "cooked_beef": 1, - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "2": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/equal_load_test_tasks/4_agent.json b/tasks/cooking_tasks/equal_load_test_tasks/4_agent.json deleted file mode 100644 index ce3c9bb..0000000 --- a/tasks/cooking_tasks/equal_load_test_tasks/4_agent.json +++ /dev/null @@ -1,445 +0,0 @@ -{ - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", - "agent_count": 4, - "target": { - "cooked_beef": 1, - "baked_potato": 1, - "cake": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "3": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", - "agent_count": 5, - "target": { - "bread": 1, - "cake": 1, - "golden_apple": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "2": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "3": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple_4_agent": { - "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", - "agent_count": 4, - "target": { - "baked_potato": 1, - "bread": 1, - "cooked_beef": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "2": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "3": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple_4_agent": { - "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", - "agent_count": 4, - "target": { - "cake": 1, - "bread": 1, - "golden_apple": 1, - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "2": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "3": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", - "agent_count": 4, - "target": { - "rabbit_stew": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "3": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - }, - "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", - "agent_count": 5, - "target": { - "bread": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "2": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "3": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", - "agent_count": 5, - "target": { - "cake": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "2": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "3": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", - "agent_count": 5, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "3": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", - "agent_count": 4, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "rabbit_stew": 1, - "bread": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "3": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", - "agent_count": 5, - "target": { - "bread": 1, - "cooked_beef": 1, - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "2": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "3": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/equal_load_test_tasks/4_agent_long_timeout.json b/tasks/cooking_tasks/equal_load_test_tasks/4_agent_long_timeout.json deleted file mode 100644 index 63c4f51..0000000 --- a/tasks/cooking_tasks/equal_load_test_tasks/4_agent_long_timeout.json +++ /dev/null @@ -1,445 +0,0 @@ -{ - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", - "agent_count": 4, - "target": { - "cooked_beef": 1, - "baked_potato": 1, - "cake": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "3": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", - "agent_count": 5, - "target": { - "bread": 1, - "cake": 1, - "golden_apple": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "2": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "3": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple_4_agent": { - "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", - "agent_count": 4, - "target": { - "baked_potato": 1, - "bread": 1, - "cooked_beef": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "2": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "3": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple_4_agent": { - "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", - "agent_count": 4, - "target": { - "cake": 1, - "bread": 1, - "golden_apple": 1, - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "2": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "3": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", - "agent_count": 4, - "target": { - "rabbit_stew": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "3": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - }, - "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", - "agent_count": 5, - "target": { - "bread": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "2": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "3": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", - "agent_count": 5, - "target": { - "cake": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "2": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "3": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", - "agent_count": 5, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "3": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", - "agent_count": 4, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "rabbit_stew": 1, - "bread": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "3": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_4_agent": { - "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", - "agent_count": 5, - "target": { - "bread": 1, - "cooked_beef": 1, - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "2": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "3": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/equal_load_test_tasks/5_agent.json b/tasks/cooking_tasks/equal_load_test_tasks/5_agent.json deleted file mode 100644 index f1c9569..0000000 --- a/tasks/cooking_tasks/equal_load_test_tasks/5_agent.json +++ /dev/null @@ -1,455 +0,0 @@ -{ - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew": { - "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", - "agent_count": 5, - "target": { - "cooked_beef": 1, - "baked_potato": 1, - "cake": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "3": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "4": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", - "agent_count": 5, - "target": { - "bread": 1, - "cake": 1, - "golden_apple": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "2": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "3": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "4": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", - "agent_count": 5, - "target": { - "baked_potato": 1, - "bread": 1, - "cooked_beef": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "2": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "3": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "4": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", - "agent_count": 5, - "target": { - "cake": 1, - "bread": 1, - "golden_apple": 1, - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "2": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "3": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "4": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", - "agent_count": 5, - "target": { - "rabbit_stew": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "3": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "4": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - }, - "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", - "agent_count": 5, - "target": { - "bread": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "2": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "3": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "4": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", - "agent_count": 5, - "target": { - "cake": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "2": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "3": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "4": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", - "agent_count": 5, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "3": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "4": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", - "agent_count": 5, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "rabbit_stew": 1, - "bread": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "3": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "4": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew": { - "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", - "agent_count": 5, - "target": { - "bread": 1, - "cooked_beef": 1, - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "2": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "3": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "4": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - } - } \ No newline at end of file diff --git a/tasks/cooking_tasks/hells_kitchen_tasks.py b/tasks/cooking_tasks/hells_kitchen_tasks.py index c4a6247..5066fe4 100644 --- a/tasks/cooking_tasks/hells_kitchen_tasks.py +++ b/tasks/cooking_tasks/hells_kitchen_tasks.py @@ -2,6 +2,7 @@ import random import json from typing import Dict, List, Any, Tuple, Set from collections import Counter, defaultdict +import itertools # Define your COOKING_ITEMS dictionary here # This is where you should put your complete COOKING_ITEMS dictionary @@ -10,93 +11,138 @@ COOKING_ITEMS = { "cooked_mutton": { "recipe": [ "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." ], "description": "Cooked mutton meat", - "complexity": "easy" + "complexity": "easy", + "required_chest_items": { + "coal": 8, + } }, "cooked_beef": { "recipe": [ "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." ], "description": "Cooked beef meat", - "complexity": "easy" + "complexity": "easy", + "required_chest_items": { + "coal": 8, + } }, "cooked_porkchop": { "recipe": [ "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." ], "description": "Cooked porkchop", - "complexity": "easy" + "complexity": "easy", + "required_chest_items": { + "coal": 8, + } }, "cooked_chicken": { "recipe": [ "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." ], "description": "Cooked chicken meat", - "complexity": "easy" + "complexity": "easy", + "required_chest_items": { + "coal": 8, + } }, "cooked_rabbit": { "recipe": [ "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", "Step 2: Go to furnace and use it to cook the raw rabbit." ], "description": "Cooked rabbit meat", - "complexity": "easy" + "complexity": "easy", + "required_chest_items": { + "coal": 8, + } }, # Soups and Stews "beetroot_soup": { "recipe": [ "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", + "Step 2: From your inventory or other agents get a bowl.", "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." ], "description": "A hearty beetroot soup", - "complexity": "medium" + "complexity": "medium", + "required_chest_items": { + "bowl": 1, + } }, "mushroom_stew": { "recipe": [ "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", + "Step 2: From your inventory or other agents get a bowl.", "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." ], "description": "A warm mushroom stew", - "complexity": "medium" + "complexity": "medium", + "required_chest_items": { + "bowl": 1, + } }, "rabbit_stew": { "recipe": [ "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." ], "description": "A hearty rabbit stew", - "complexity": "hard" + "complexity": "hard", + "required_chest_items": { + "bowl": 1, + } }, "suspicious_stew": { "recipe": [ "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." ], "description": "A mysterious stew with special effects", - "complexity": "medium" + "complexity": "medium", + "required_chest_items": { + "bowl": 1, + "dandelion": 1, + } }, # Baked Goods "baked_potato": { "recipe": [ "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", "Step 2: Go to the furnace and bake the potato." ], "description": "A simple baked potato", - "complexity": "easy" + "complexity": "easy", + "required_chest_items": { + "coal": 8, + } }, "bread": { "recipe": [ @@ -104,47 +150,61 @@ COOKING_ITEMS = { "Step 2: Go to the crafting table and use the wheat to craft bread." ], "description": "Fresh bread", - "complexity": "medium" + "complexity": "medium", }, "cake": { "recipe": [ "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets (already filled with milk).", - "Step 3: Go to the chest and grab an egg.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", "Step 4: Go to the crafting table and craft the sugarcane into sugar.", "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." ], "description": "A delicious cake", - "complexity": "hard" + "complexity": "hard", + "required_chest_items": { + "milk_bucket": 3, + "egg": 1, + } }, "cookie": { "recipe": [ "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." ], "description": "Sweet cookies", - "complexity": "medium" + "complexity": "medium", + "required_chest_items": { + "cocoa_beans": 1, + } }, "pumpkin_pie": { "recipe": [ "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", + "Step 2: Get 1 egg from your inventory or other bots", "Step 3: Go to the crafting table and craft the sugar cane into sugar.", "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." ], "description": "Delicious pumpkin pie", - "complexity": "hard" + "complexity": "hard", + "required_chest_items": { + "egg": 1, + } }, # Sweet Foods "golden_apple": { "recipe": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." ], "description": "A magical golden apple", - "complexity": "hard" + "complexity": "hard", + "required_chest_items": { + "gold_ingots": 8, + "apple": 1 + } }, # Special Foods @@ -155,11 +215,64 @@ COOKING_ITEMS = { "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." ], "description": "A magical golden carrot", - "complexity": "hard" + "complexity": "hard", + "required_chest_items": ["gold_ingots"] }, } +chest_items = { + "milk_bucket": 3, + "egg": 16, + "dandelion": 64, + "cocao_beans": 64, + "apple": 64, + "gold_ingots": 8, + "salmon": 64, + "cod": 64, + "kelp": 64, + "dried_kelp": 64, + "sweet_berries": 64, + "honey_bottle": 1, + "glow_berries": 64, + "bowl": 1, + "cooked_salmon": 1, + "cooked_cod": 1, + "oak_planks": 64, + "iron_ingot": 64, +} + + +chest_items = [ + ['minecraft:milk_bucket', 1], + ['minecraft:egg', 16], + ['minecraft:dandelion', 64], + ['minecraft:sugar', 64], + ['minecraft:cocoa_beans', 64], + ['minecraft:apple', 64], + ['minecraft:milk_bucket', 1], + ['minecraft:milk_bucket', 1], + ['minecraft:salmon', 64], + ['minecraft:cod', 64], + ['minecraft:kelp', 64], + ['minecraft:dried_kelp', 64], + ['minecraft:sweet_berries', 64], + ['minecraft:honey_bottle', 1], + ['minecraft:glow_berries', 64], + ['minecraft:bowl', 64], + ['minecraft:milk_bucket', 1], + ['minecraft:milk_bucket', 1], + ['minecraft:milk_bucket', 1], + ['minecraft:milk_bucket', 1], + ['minecraft:cooked_salmon', 64], + ['minecraft:cooked_cod', 64], + ['minecraft:gold_ingot', 64], + ['minecraft:oak_planks', 64], + ['minecraft:iron_ingot', 64], + ['minecraft:milk_bucket', 1], + ['minecraft:milk_bucket', 1], + ] + def generate_task_id(task: Dict[str, Any]) -> str: """ Generate a standardized task ID based on target items and blocked access. @@ -213,10 +326,10 @@ def generate_hells_kitchen_task_id(task: Dict[str, Any]) -> str: # Combine everything with hells_kitchen suffix return f"multiagent_cooking_{quantities}_hells_kitchen" -def generate_hells_kitchen_task() -> Dict[str, Any]: +def generate_hells_kitchen_task(selected_items) -> Dict[str, Any]: """Generate a single Hell's Kitchen task where agents have recipes for each other's items.""" # Select two different items - selected_items = random.sample(list(COOKING_ITEMS.keys()), 2) + # selected_items = random.sample(list(COOKING_ITEMS.keys()), 2) # Assign one item to each agent agent0_target = selected_items[0] @@ -346,16 +459,22 @@ def generate_maximum_hells_kitchen_tasks( all_items = list(COOKING_ITEMS.keys()) # Fixed test items as specified in your original code - hk_test_items = {"cooked_mutton", "baked_potato", "cake", "golden_carrot", "mushroom_stew", "bread"} + hk_test_items = {"cooked_beef", "baked_potato", "cake", "golden_apple", "rabbit_stew", "bread"} + hk_train_items = set(all_items) - hk_test_items + hk_test_lst = list(hk_test_items) + train_possible_combinations = itertools.combinations(hk_train_items, 2) + # test_possible_combinations = [["bread", "golden_apple"], ["golden_apple", "rabbit_stew"], ["bread", "cake"], + # ["baked_potato", "golden_apple"], ["baked_potato", "cake"], ["cooked_beef", "golden_apple"]] + test_possible_combinations = itertools.combinations(hk_test_lst, 2) # Set fixed seed for consistent results random.seed(42) # Generate tasks for training set train_tasks = {} - while len(train_tasks) < num_train_tasks: - task = generate_hells_kitchen_task() + for combination in train_possible_combinations: + task = generate_hells_kitchen_task(combination) task_id, task_data = list(task.items())[0] # Check if task uses valid items for train set @@ -368,8 +487,8 @@ def generate_maximum_hells_kitchen_tasks( # Generate tasks for test set test_tasks = {} - while len(test_tasks) < num_test_tasks: - task = generate_hells_kitchen_task() + for combination in test_possible_combinations: + task = generate_hells_kitchen_task(combination) task_id, task_data = list(task.items())[0] # Check if task uses valid items for test set @@ -482,7 +601,7 @@ if __name__ == "__main__": with open("hells_kitchen_train_tasks.json", "w") as f: json.dump(hk_train_tasks, f, indent=2) - with open("hells_kitchen_test_tasks.json", "w") as f: + with open("mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen_full.json", "w") as f: json.dump(hk_test_tasks, f, indent=2) # Print counts diff --git a/tasks/cooking_tasks/make_collaboration_required_cooking_task.py b/tasks/cooking_tasks/make_collaboration_required_cooking_task.py new file mode 100644 index 0000000..b7af2a8 --- /dev/null +++ b/tasks/cooking_tasks/make_collaboration_required_cooking_task.py @@ -0,0 +1,461 @@ +import random +import json +from typing import Dict, List, Any, Tuple, Set +from collections import Counter, defaultdict +import os +import numpy as np +import itertools + +# Define your COOKING_ITEMS dictionary here +# This is where you should put your complete COOKING_ITEMS dictionary +COOKING_ITEMS = { +# Cooked Meats +"cooked_mutton": { + "recipe": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "description": "Cooked mutton meat", + "complexity": "easy", + "required_chest_items": { + "coal": 1, + } +}, +"cooked_beef": { + "recipe": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "description": "Cooked beef meat", + "complexity": "easy", + "required_chest_items": { + "coal": 1, + } +}, +"cooked_porkchop": { + "recipe": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "description": "Cooked porkchop", + "complexity": "easy", + "required_chest_items": { + "coal": 1, + } +}, +"cooked_chicken": { + "recipe": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "description": "Cooked chicken meat", + "complexity": "easy", + "required_chest_items": { + "coal": 1, + } +}, +"cooked_rabbit": { + "recipe": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "description": "Cooked rabbit meat", + "complexity": "easy", + "required_chest_items": { + "coal": 1, + } +}, + +# Soups and Stews +"beetroot_soup": { + "recipe": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "description": "A hearty beetroot soup", + "complexity": "medium", + "required_chest_items": { + "bowl": 1, + } +}, +"mushroom_stew": { + "recipe": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "description": "A warm mushroom stew", + "complexity": "medium", + "required_chest_items": { + "bowl": 1, + } +}, +"rabbit_stew": { + "recipe": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "description": "A hearty rabbit stew", + "complexity": "hard", + "required_chest_items": { + "bowl": 1, + } +}, +"suspicious_stew": { + "recipe": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "description": "A mysterious stew with special effects", + "complexity": "medium", + "required_chest_items": { + "bowl": 1, + "dandelion": 1, + } +}, + +# Baked Goods +"baked_potato": { + "recipe": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "description": "A simple baked potato", + "complexity": "easy", + "required_chest_items": { + "coal": 1, + } +}, +"bread": { + "recipe": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "description": "Fresh bread", + "complexity": "medium" +}, +"cake": { + "recipe": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "description": "A delicious cake", + "complexity": "hard", + "required_chest_items": { + "milk_bucket": 3, + "egg": 1, + } +}, +"cookie": { + "recipe": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "description": "Sweet cookies", + "complexity": "medium", + "required_chest_items": { + "cocoa_beans": 1, + } +}, +"pumpkin_pie": { + "recipe": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "description": "Delicious pumpkin pie", + "complexity": "hard", + "required_chest_items": { + "egg": 1, + } +}, + +# Sweet Foods +"golden_apple": { + "recipe": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "description": "A magical golden apple", + "complexity": "hard", + "required_chest_items": { + "gold_ingot": 8, + "apple": 1 + } +}, + +# Special Foods +"golden_carrot": { + "recipe": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "description": "A magical golden carrot", + "complexity": "hard", + "required_chest_items": { + "gold_ingot": 8, + } +}, + +} + +chest_items = { + "milk_bucket": 3, + "egg": 16, + "dandelion": 64, + "cocoa_beans": 64, + "apple": 64, + "gold_ingot": 8, + "salmon": 64, + "cod": 64, + "kelp": 64, + "dried_kelp": 64, + "sweet_berries": 64, + "honey_bottle": 1, + "glow_berries": 64, + "bowl": 1, + "cooked_salmon": 1, + "cooked_cod": 1, + "oak_planks": 64, + "iron_ingot": 64, +} + +def make_initial_inventory(items, num_agents): + """ + Evenly split inventory between the agents for a given set of items and number of agents + """ + inventory = {} + for item in items: + if item in COOKING_ITEMS: + cooking_info = COOKING_ITEMS[item] + for chest_item, quantity in cooking_info.get("required_chest_items", {}).items(): + inventory[chest_item] = inventory.get(chest_item, 0) + quantity + else: + print(f"item {item} not found in COOKING_ITEMS.") + initial_inventory = {} + for i in range(num_agents): + initial_inventory[i] = {} + items_lst = list(inventory.keys()) + for i in range(len(items_lst)): + item_counts = count_items_in_inventory(initial_inventory) + agent_num = np.argmin(item_counts) + if inventory[items_lst[i]] == 1: + initial_inventory[agent_num][items_lst[i]] = 1 + elif inventory[items_lst[i]] > 1: + div = inventory[items_lst[i]] // num_agents + rem = inventory[items_lst[i]] % num_agents + for j in range(num_agents): + initial_inventory[j][items_lst[i]] = div + j = 0 + while j < rem: + initial_inventory[j][items_lst[i]] += 1 + j += 1 + return initial_inventory + +def count_items_in_inventory(inventory): + item_counts = [] + for key in inventory.keys(): + agent_inventory = inventory[key] + total_items = 0 + for item in agent_inventory.keys(): + total_items += agent_inventory[item] + item_counts.append(total_items) + return item_counts + +def make_all_possible_tasks(items: List[str], num_items:int, num_agents: int, output_file) -> List[Dict[str, Any]]: + combinations = itertools.combinations(items, num_items) + already_completed = [["bread", "golden_apple"], ["golden_apple", "rabbit_stew"], ["bread", "cake"], ["baked_potato", "golden_apple"], ["baked_potato", "cake"], ["cooked_beef", "golden_apple"]] + remaining_combinations = set(combinations) - set(tuple(sorted(comb)) for comb in already_completed) + tasks = {} + for combination in remaining_combinations: + task = {} + task["type"] = "cooking" + task["recipes"] = {} + task["agent_count"] = num_agents + task["target"] = {} + for item in combination: + task["target"][item] = 1 + for item in combination: + if item in COOKING_ITEMS: + task["recipes"][item] = COOKING_ITEMS[item]["recipe"] + else: + print(f"item {item} not found in COOKING_ITEMS.") + initial_inventory = make_initial_inventory(combination, num_agents) + task["initial_inventory"] = initial_inventory + task["goal"] = {} + goal_str = f"Collaborate with other agents around you to make " + conversation_str = f"Let's collaborate to make " + for item in combination: + goal_str += item + ", " + conversation_str += item + ", " + recipe_goal_str = goal_str + "The recipes are as follows:\n" + for item in combination: + recipe_goal_str += f"Recipe for {item}:\n{COOKING_ITEMS[item]['recipe']}\n" + for i in range(num_agents): + task["goal"][i] = recipe_goal_str + task["conversation"] = conversation_str + partial_plan_task = task.copy() + partial_plan_task["goal"] = {} + for i in range(num_agents): + partial_plan_task["goal"][i] = goal_str + partial_plan_task["goal"][0] = recipe_goal_str + task_id = "multiagent_cooking" + for item in combination: + task_id += "_" + item + # tasks[task_id] = task + tasks[task_id + "_partial_plan"] = partial_plan_task + with open(output_file, 'w') as f: + json.dump(tasks, f, indent=4) + + + +def reconfigure_tasks(task_path, new_task_path, num_agents=None, hells_kitchen=False): + with open(task_path, 'r') as f: + tasks = json.load(f) + task_ids = tasks.keys() + new_tasks = {} + for task_id in task_ids: + task = tasks[task_id] + if task["type"] == "cooking": + items = task["recipes"].keys() + new_recipes = {} + inventory = {} + for item in items: + if item in COOKING_ITEMS: + cooking_info = COOKING_ITEMS[item] + new_recipes[item] = cooking_info["recipe"] + for chest_item, quantity in cooking_info.get("required_chest_items", {}).items(): + inventory[chest_item] = inventory.get(chest_item, 0) + quantity + else: + print(f"item {item} not found in COOKING_ITEMS.") + task["recipes"] = new_recipes + # assign inventory to the agents + if num_agents is None: + num_agents = task.get("agent_count", 0) + task.get("human_count", 0) + else: + task["agent_count"] = num_agents + initial_inventory = {} + for i in range(num_agents): + initial_inventory[i] = {} + items_lst = list(inventory.keys()) + for i in range(len(items_lst)): + item_counts = count_items_in_inventory(initial_inventory) + agent_num = np.argmin(item_counts) + if inventory[items_lst[i]] == 1: + initial_inventory[agent_num][items_lst[i]] = 1 + elif inventory[items_lst[i]] > 1: + div = inventory[items_lst[i]] // num_agents + rem = inventory[items_lst[i]] % num_agents + for j in range(num_agents): + initial_inventory[j][items_lst[i]] = div + j = 0 + while j < rem: + initial_inventory[j][items_lst[i]] += 1 + j += 1 + # initial_inventory[agent_num][items_lst[i]] = inventory[items_lst[i]] + item_counts = count_items_in_inventory(initial_inventory) + required_collab = True + for i in range(len(item_counts)): + if item_counts[i] == 0: + # don't add the task if collaboration isn't required + required_collab = False + if not required_collab: + print(f"task {task_id} doesn't require collaboration.") + continue + task["initial_inventory"] = initial_inventory + print(inventory) + print(initial_inventory) + if not hells_kitchen: + goals = task.get("goal", {}) + new_goals = {} + blocked_access = task.get("blocked_access_to_recipe", []) + print(blocked_access) + for key, goal in goals.items(): + initial_goal = goal.split("\n")[0] + if str(key) not in blocked_access: + for item, recipe in new_recipes.items(): + initial_goal += f"Recipe for {item}:\n{recipe}" + new_goals[key] = initial_goal + task["goal"] = new_goals + new_tasks[task_id] = task + # check each of the recipes and replace with the new recipe + + os.makedirs(os.path.dirname(new_task_path), exist_ok=True) + with open(new_task_path, 'w') as f: + json.dump(new_tasks, f, indent=4) + +def block_recipe_in_tasks(task_path, new_task_path, num_agents=None): + with open(task_path, 'r') as f: + tasks = json.load(f) + task_ids = tasks.keys() + for task_id in task_ids: + task = tasks[task_id] + task["blocked_access_to_recipe"] = ["0"] + items = task["recipes"].keys() + goal_str = "Collaborate with other agents around you to make " + ", ".join(items) + "." + task["goal"]["0"] = goal_str + with open(new_task_path, 'w') as f: + json.dump(tasks, f, indent=4) + + + +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/3_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_3_items/2_agent.json", 2) +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/3_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_3_items/3_agent.json", 3) +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/3_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_3_items/4_agent.json", 4) +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/3_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_3_items/5_agent.json", 5) + +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent.json", 2) +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/3_agent.json", 3) +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/4_agent.json", 4) +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/5_agent.json", 5) +# + +test_items = ["bread", "golden_apple", "rabbit_stew", "cake", "baked_potato", "cooked_beef"] +# block_recipe_in_tasks("mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe.json", 2) +# make_all_possible_tasks(test_items, 2, 2, "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent_blocked_action_remaining.json") + +reconfigure_tasks("mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen_full.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen_full_inventory.json", 2) + +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe.json", 2) +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/hells_kitchen_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen.json", 2, True) +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train_2_items/2_agent_block_recipe.json", 2, False) +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/hells_kitchen_train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train_2_items/2_agent_hells_kitchen.json", 2, True) + +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/2_agent_cooking_train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train_2_items/3_agent.json", 3) +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/2_agent_cooking_train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train_2_items/4_agent.json", 4) +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/2_agent_cooking_train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train_2_items/5_agent.json", 5) +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/3_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/3_agent.json") +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/4_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/4_agent.json") +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/5_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/5_agent.json") + +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/2_agent_cooking_train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train/2_agent.json") +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train/2_agent_blocked_access.json") +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/train_tasks_3_agents.json", "mindcraft/tasks/cooking_tasks/require_collab_train/3_agent.json") +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/train_tasks_4_agents.json", "mindcraft/tasks/cooking_tasks/require_collab_train/4_agent.json") +# reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/train_tasks_5_agents.json", "mindcraft/tasks/cooking_tasks/require_collab_train/5_agent.json") \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_2_items/1_agent_partial.json b/tasks/cooking_tasks/require_collab_test_2_items/1_agent_partial.json new file mode 100644 index 0000000..aa7e9c1 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/1_agent_partial.json @@ -0,0 +1,206 @@ +{ + "multiagent_cooking_2_1_bread_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, bread.", + "agent_count": 1, + "target": { + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 5 + } + } + }, + "multiagent_cooking_2_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make golden_apple, rabbit_stew.", + "agent_count": 1, + "target": { + "golden_apple": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 5, + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_bread_1_cake": { + "conversation": "Let's work together to make cake, bread.", + "agent_count": 1, + "target": { + "cake": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "milk_bucket": 2 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_golden_apple": { + "conversation": "Let's work together to make baked_potato, golden_apple.", + "agent_count": 1, + "target": { + "baked_potato": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 5, + "gold_ingot": 5, + "apple": 1 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_cake": { + "conversation": "Let's work together to make baked_potato, cake.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 5, + "milk_bucket": 2, + "egg": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cooked_beef.", + "agent_count": 2, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 5, + "coal": 5 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_2_items/2_agent.json b/tasks/cooking_tasks/require_collab_test_2_items/2_agent.json new file mode 100644 index 0000000..39c740e --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/2_agent.json @@ -0,0 +1,231 @@ +{ + "multiagent_cooking_2_1_bread_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, bread.", + "agent_count": 2, + "target": { + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 5 + }, + "1": { + "gold_ingot": 5, + "apple": 1 + } + } + }, + "multiagent_cooking_2_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make golden_apple, rabbit_stew.", + "agent_count": 2, + "target": { + "golden_apple": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 5, + "bowl": 1 + }, + "1": { + "gold_ingot": 5, + "apple": 1 + } + } + }, + "multiagent_cooking_2_1_bread_1_cake": { + "conversation": "Let's work together to make cake, bread.", + "agent_count": 2, + "target": { + "cake": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 2, + "egg": 1 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_golden_apple": { + "conversation": "Let's work together to make baked_potato, golden_apple.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 5, + "gold_ingot": 5, + "apple": 1 + }, + "1": { + "coal": 5, + "gold_ingot": 5 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_cake": { + "conversation": "Let's work together to make baked_potato, cake.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 5, + "milk_bucket": 2, + "egg": 1 + }, + "1": { + "coal": 5, + "milk_bucket": 2 + } + } + }, + "multiagent_cooking_2_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cooked_beef.", + "agent_count": 2, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 5, + "coal": 5 + }, + "1": { + "gold_ingot": 5, + "apple": 1, + "coal": 5 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_2_items/2_agent_all_possible.json b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_all_possible.json new file mode 100644 index 0000000..80e5efa --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_all_possible.json @@ -0,0 +1,1086 @@ +{ + "multiagent_cooking_bread_golden_apple": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "golden_apple": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, golden_apple, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\n", + "1": "Collaborate with other agents around you to make bread, golden_apple, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\n" + }, + "conversation": "Let's collaborate to make bread, golden_apple, " + }, + "multiagent_cooking_bread_golden_apple_partial_plan": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "golden_apple": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, golden_apple, ", + "1": "Collaborate with other agents around you to make bread, golden_apple, " + }, + "conversation": "Let's collaborate to make bread, golden_apple, " + }, + "multiagent_cooking_bread_rabbit_stew": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "rabbit_stew": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": {} + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, rabbit_stew, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\n", + "1": "Collaborate with other agents around you to make bread, rabbit_stew, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\n" + }, + "conversation": "Let's collaborate to make bread, rabbit_stew, " + }, + "multiagent_cooking_bread_rabbit_stew_partial_plan": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "rabbit_stew": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": {} + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, rabbit_stew, ", + "1": "Collaborate with other agents around you to make bread, rabbit_stew, " + }, + "conversation": "Let's collaborate to make bread, rabbit_stew, " + }, + "multiagent_cooking_bread_cake": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "cake": 1 + }, + "initial_inventory": { + "0": { + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, cake, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\n", + "1": "Collaborate with other agents around you to make bread, cake, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\n" + }, + "conversation": "Let's collaborate to make bread, cake, " + }, + "multiagent_cooking_bread_cake_partial_plan": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "cake": 1 + }, + "initial_inventory": { + "0": { + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, cake, ", + "1": "Collaborate with other agents around you to make bread, cake, " + }, + "conversation": "Let's collaborate to make bread, cake, " + }, + "multiagent_cooking_bread_baked_potato": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": {} + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, baked_potato, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n", + "1": "Collaborate with other agents around you to make bread, baked_potato, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n" + }, + "conversation": "Let's collaborate to make bread, baked_potato, " + }, + "multiagent_cooking_bread_baked_potato_partial_plan": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": {} + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, baked_potato, ", + "1": "Collaborate with other agents around you to make bread, baked_potato, " + }, + "conversation": "Let's collaborate to make bread, baked_potato, " + }, + "multiagent_cooking_bread_cooked_beef": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": {} + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, cooked_beef, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n", + "1": "Collaborate with other agents around you to make bread, cooked_beef, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n" + }, + "conversation": "Let's collaborate to make bread, cooked_beef, " + }, + "multiagent_cooking_bread_cooked_beef_partial_plan": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": {} + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, cooked_beef, ", + "1": "Collaborate with other agents around you to make bread, cooked_beef, " + }, + "conversation": "Let's collaborate to make bread, cooked_beef, " + }, + "multiagent_cooking_golden_apple_rabbit_stew": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "rabbit_stew": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "bowl": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, rabbit_stew, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\n", + "1": "Collaborate with other agents around you to make golden_apple, rabbit_stew, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\n" + }, + "conversation": "Let's collaborate to make golden_apple, rabbit_stew, " + }, + "multiagent_cooking_golden_apple_rabbit_stew_partial_plan": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "rabbit_stew": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "bowl": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, rabbit_stew, ", + "1": "Collaborate with other agents around you to make golden_apple, rabbit_stew, " + }, + "conversation": "Let's collaborate to make golden_apple, rabbit_stew, " + }, + "multiagent_cooking_golden_apple_cake": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "cake": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1, + "milk_bucket": 2 + }, + "1": { + "gold_ingot": 4, + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, cake, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\n", + "1": "Collaborate with other agents around you to make golden_apple, cake, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\n" + }, + "conversation": "Let's collaborate to make golden_apple, cake, " + }, + "multiagent_cooking_golden_apple_cake_partial_plan": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "cake": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1, + "milk_bucket": 2 + }, + "1": { + "gold_ingot": 4, + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, cake, ", + "1": "Collaborate with other agents around you to make golden_apple, cake, " + }, + "conversation": "Let's collaborate to make golden_apple, cake, " + }, + "multiagent_cooking_golden_apple_baked_potato": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, baked_potato, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n", + "1": "Collaborate with other agents around you to make golden_apple, baked_potato, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n" + }, + "conversation": "Let's collaborate to make golden_apple, baked_potato, " + }, + "multiagent_cooking_golden_apple_baked_potato_partial_plan": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, baked_potato, ", + "1": "Collaborate with other agents around you to make golden_apple, baked_potato, " + }, + "conversation": "Let's collaborate to make golden_apple, baked_potato, " + }, + "multiagent_cooking_golden_apple_cooked_beef": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, cooked_beef, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n", + "1": "Collaborate with other agents around you to make golden_apple, cooked_beef, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n" + }, + "conversation": "Let's collaborate to make golden_apple, cooked_beef, " + }, + "multiagent_cooking_golden_apple_cooked_beef_partial_plan": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, cooked_beef, ", + "1": "Collaborate with other agents around you to make golden_apple, cooked_beef, " + }, + "conversation": "Let's collaborate to make golden_apple, cooked_beef, " + }, + "multiagent_cooking_rabbit_stew_cake": { + "type": "cooking", + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "cake": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1, + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make rabbit_stew, cake, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\n", + "1": "Collaborate with other agents around you to make rabbit_stew, cake, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\n" + }, + "conversation": "Let's collaborate to make rabbit_stew, cake, " + }, + "multiagent_cooking_rabbit_stew_cake_partial_plan": { + "type": "cooking", + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "cake": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1, + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make rabbit_stew, cake, ", + "1": "Collaborate with other agents around you to make rabbit_stew, cake, " + }, + "conversation": "Let's collaborate to make rabbit_stew, cake, " + }, + "multiagent_cooking_rabbit_stew_baked_potato": { + "type": "cooking", + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make rabbit_stew, baked_potato, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n", + "1": "Collaborate with other agents around you to make rabbit_stew, baked_potato, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n" + }, + "conversation": "Let's collaborate to make rabbit_stew, baked_potato, " + }, + "multiagent_cooking_rabbit_stew_baked_potato_partial_plan": { + "type": "cooking", + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make rabbit_stew, baked_potato, ", + "1": "Collaborate with other agents around you to make rabbit_stew, baked_potato, " + }, + "conversation": "Let's collaborate to make rabbit_stew, baked_potato, " + }, + "multiagent_cooking_rabbit_stew_cooked_beef": { + "type": "cooking", + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make rabbit_stew, cooked_beef, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n", + "1": "Collaborate with other agents around you to make rabbit_stew, cooked_beef, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n" + }, + "conversation": "Let's collaborate to make rabbit_stew, cooked_beef, " + }, + "multiagent_cooking_rabbit_stew_cooked_beef_partial_plan": { + "type": "cooking", + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make rabbit_stew, cooked_beef, ", + "1": "Collaborate with other agents around you to make rabbit_stew, cooked_beef, " + }, + "conversation": "Let's collaborate to make rabbit_stew, cooked_beef, " + }, + "multiagent_cooking_cake_baked_potato": { + "type": "cooking", + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "cake": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "milk_bucket": 2, + "coal": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make cake, baked_potato, The recipes are as follows:\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n", + "1": "Collaborate with other agents around you to make cake, baked_potato, The recipes are as follows:\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n" + }, + "conversation": "Let's collaborate to make cake, baked_potato, " + }, + "multiagent_cooking_cake_baked_potato_partial_plan": { + "type": "cooking", + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "cake": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "milk_bucket": 2, + "coal": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make cake, baked_potato, ", + "1": "Collaborate with other agents around you to make cake, baked_potato, " + }, + "conversation": "Let's collaborate to make cake, baked_potato, " + }, + "multiagent_cooking_cake_cooked_beef": { + "type": "cooking", + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "cake": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "milk_bucket": 2, + "coal": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make cake, cooked_beef, The recipes are as follows:\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n", + "1": "Collaborate with other agents around you to make cake, cooked_beef, The recipes are as follows:\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n" + }, + "conversation": "Let's collaborate to make cake, cooked_beef, " + }, + "multiagent_cooking_cake_cooked_beef_partial_plan": { + "type": "cooking", + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "cake": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "milk_bucket": 2, + "coal": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make cake, cooked_beef, ", + "1": "Collaborate with other agents around you to make cake, cooked_beef, " + }, + "conversation": "Let's collaborate to make cake, cooked_beef, " + }, + "multiagent_cooking_baked_potato_cooked_beef": { + "type": "cooking", + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "baked_potato": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make baked_potato, cooked_beef, The recipes are as follows:\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n", + "1": "Collaborate with other agents around you to make baked_potato, cooked_beef, The recipes are as follows:\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n" + }, + "conversation": "Let's collaborate to make baked_potato, cooked_beef, " + }, + "multiagent_cooking_baked_potato_cooked_beef_partial_plan": { + "type": "cooking", + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "baked_potato": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make baked_potato, cooked_beef, ", + "1": "Collaborate with other agents around you to make baked_potato, cooked_beef, " + }, + "conversation": "Let's collaborate to make baked_potato, cooked_beef, " + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe.json b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe.json new file mode 100644 index 0000000..8bdf4e1 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe.json @@ -0,0 +1,243 @@ +{ + "multiagent_cooking_2_1_bread_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, bread.", + "agent_count": 2, + "target": { + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, bread.", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 5 + }, + "1": { + "gold_ingot": 5, + "apple": 1 + } + } + }, + "multiagent_cooking_2_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make golden_apple, rabbit_stew.", + "agent_count": 2, + "target": { + "golden_apple": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, rabbit_stew.", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 5, + "bowl": 1 + }, + "1": { + "gold_ingot": 5, + "apple": 1 + } + } + }, + "multiagent_cooking_2_1_bread_1_cake": { + "conversation": "Let's work together to make cake, bread.", + "agent_count": 2, + "target": { + "cake": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with other agents around you to make cake, bread.", + "1": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 2, + "egg": 1 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_golden_apple": { + "conversation": "Let's work together to make baked_potato, golden_apple.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with other agents around you to make baked_potato, golden_apple.", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 5, + "gold_ingot": 5, + "apple": 1 + }, + "1": { + "coal": 5, + "gold_ingot": 5 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_cake": { + "conversation": "Let's work together to make baked_potato, cake.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with other agents around you to make baked_potato, cake.", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 5, + "milk_bucket": 2, + "egg": 1 + }, + "1": { + "coal": 5, + "milk_bucket": 2 + } + } + }, + "multiagent_cooking_2_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cooked_beef.", + "agent_count": 2, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, cooked_beef.", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 5, + "coal": 5 + }, + "1": { + "gold_ingot": 5, + "apple": 1, + "coal": 5 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe_full.json b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe_full.json new file mode 100644 index 0000000..06347e4 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe_full.json @@ -0,0 +1,544 @@ +{ + "multiagent_cooking_bread_golden_apple_partial_plan": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "golden_apple": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, golden_apple, ", + "1": "Collaborate with other agents around you to make bread, golden_apple, " + }, + "conversation": "Let's collaborate to make bread, golden_apple, " + }, + "multiagent_cooking_bread_rabbit_stew_partial_plan": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "rabbit_stew": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": {} + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, rabbit_stew, ", + "1": "Collaborate with other agents around you to make bread, rabbit_stew, " + }, + "conversation": "Let's collaborate to make bread, rabbit_stew, " + }, + "multiagent_cooking_bread_cake_partial_plan": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "cake": 1 + }, + "initial_inventory": { + "0": { + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, cake, ", + "1": "Collaborate with other agents around you to make bread, cake, " + }, + "conversation": "Let's collaborate to make bread, cake, " + }, + "multiagent_cooking_bread_baked_potato_partial_plan": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": {} + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, baked_potato, ", + "1": "Collaborate with other agents around you to make bread, baked_potato, " + }, + "conversation": "Let's collaborate to make bread, baked_potato, " + }, + "multiagent_cooking_bread_cooked_beef_partial_plan": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": {} + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, cooked_beef, ", + "1": "Collaborate with other agents around you to make bread, cooked_beef, " + }, + "conversation": "Let's collaborate to make bread, cooked_beef, " + }, + "multiagent_cooking_golden_apple_rabbit_stew_partial_plan": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "rabbit_stew": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "bowl": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, rabbit_stew, ", + "1": "Collaborate with other agents around you to make golden_apple, rabbit_stew, " + }, + "conversation": "Let's collaborate to make golden_apple, rabbit_stew, " + }, + "multiagent_cooking_golden_apple_cake_partial_plan": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "cake": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1, + "milk_bucket": 2 + }, + "1": { + "gold_ingot": 4, + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, cake, ", + "1": "Collaborate with other agents around you to make golden_apple, cake, " + }, + "conversation": "Let's collaborate to make golden_apple, cake, " + }, + "multiagent_cooking_golden_apple_baked_potato_partial_plan": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, baked_potato, ", + "1": "Collaborate with other agents around you to make golden_apple, baked_potato, " + }, + "conversation": "Let's collaborate to make golden_apple, baked_potato, " + }, + "multiagent_cooking_golden_apple_cooked_beef_partial_plan": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, cooked_beef, ", + "1": "Collaborate with other agents around you to make golden_apple, cooked_beef, " + }, + "conversation": "Let's collaborate to make golden_apple, cooked_beef, " + }, + "multiagent_cooking_rabbit_stew_cake_partial_plan": { + "type": "cooking", + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "cake": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1, + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make rabbit_stew, cake, ", + "1": "Collaborate with other agents around you to make rabbit_stew, cake, " + }, + "conversation": "Let's collaborate to make rabbit_stew, cake, " + }, + "multiagent_cooking_rabbit_stew_baked_potato_partial_plan": { + "type": "cooking", + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make rabbit_stew, baked_potato, ", + "1": "Collaborate with other agents around you to make rabbit_stew, baked_potato, " + }, + "conversation": "Let's collaborate to make rabbit_stew, baked_potato, " + }, + "multiagent_cooking_rabbit_stew_cooked_beef_partial_plan": { + "type": "cooking", + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make rabbit_stew, cooked_beef, ", + "1": "Collaborate with other agents around you to make rabbit_stew, cooked_beef, " + }, + "conversation": "Let's collaborate to make rabbit_stew, cooked_beef, " + }, + "multiagent_cooking_cake_baked_potato_partial_plan": { + "type": "cooking", + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "cake": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "milk_bucket": 2, + "coal": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make cake, baked_potato, ", + "1": "Collaborate with other agents around you to make cake, baked_potato, " + }, + "conversation": "Let's collaborate to make cake, baked_potato, " + }, + "multiagent_cooking_cake_cooked_beef_partial_plan": { + "type": "cooking", + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "cake": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "milk_bucket": 2, + "coal": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make cake, cooked_beef, ", + "1": "Collaborate with other agents around you to make cake, cooked_beef, " + }, + "conversation": "Let's collaborate to make cake, cooked_beef, " + }, + "multiagent_cooking_baked_potato_cooked_beef_partial_plan": { + "type": "cooking", + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "baked_potato": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make baked_potato, cooked_beef, ", + "1": "Collaborate with other agents around you to make baked_potato, cooked_beef, " + }, + "conversation": "Let's collaborate to make baked_potato, cooked_beef, " + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe_long_timeout.json b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe_long_timeout.json new file mode 100644 index 0000000..0211ffd --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe_long_timeout.json @@ -0,0 +1,290 @@ +{ + "multiagent_cooking_2_1_bread_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, bread.", + "agent_count": 2, + "target": { + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple 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 other agents around you to make golden_apple, bread.", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." + } + }, + "multiagent_cooking_2_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make golden_apple, rabbit_stew.", + "agent_count": 2, + "target": { + "golden_apple": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 11500, + "recipes": { + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw 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 other agents around you to make golden_apple, rabbit_stew.", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + } + }, + "multiagent_cooking_2_1_bread_1_cake": { + "conversation": "Let's work together to make cake, bread.", + "agent_count": 2, + "target": { + "cake": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with other agents around you to make cake, bread.", + "1": "Collaborate with agents around you to make 1 cake, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." + } + }, + "multiagent_cooking_2_1_baked_potato_1_golden_apple": { + "conversation": "Let's work together to make baked_potato, golden_apple.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple 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 other agents around you to make baked_potato, golden_apple.", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + } + }, + "multiagent_cooking_2_1_baked_potato_1_rabbit_stew": { + "conversation": "Let's work together to make baked_potato, rabbit_stew.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw 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 other agents around you to make baked_potato, rabbit_stew.", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + } + }, + "multiagent_cooking_2_1_bread_1_rabbit_stew": { + "conversation": "Let's work together to make rabbit_stew, bread.", + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Go to the furnace and bake the potato.", + "Step 3: Go to the chest and grab a bowl", + "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 6: Go to the furnace and cook the raw rabbit.", + "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with other agents around you to make rabbit_stew, bread.", + "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." + } + }, + "multiagent_cooking_2_1_baked_potato_1_bread": { + "conversation": "Let's work together to make bread, baked_potato.", + "agent_count": 2, + "target": { + "bread": 1, + "baked_potato": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with other agents around you to make bread, baked_potato.", + "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." + } + }, + "multiagent_cooking_2_1_baked_potato_1_cake": { + "conversation": "Let's work together to make baked_potato, cake.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: Go to the chest and grab 3 milk buckets.", + "Step 3: Go to the chest and grab an egg.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with other agents around you to make baked_potato, cake.", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + } + }, + "multiagent_cooking_2_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cooked_beef.", + "agent_count": 2, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_apple": [ + "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, cooked_beef.", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." + } + }, + "multiagent_cooking_2_1_bread_1_cooked_beef": { + "conversation": "Let's work together to make bread, cooked_beef.", + "agent_count": 2, + "target": { + "bread": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with other agents around you to make bread, cooked_beef.", + "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_2_items/2_agent_blocked_action_remaining.json b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_blocked_action_remaining.json new file mode 100644 index 0000000..6b1accb --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_blocked_action_remaining.json @@ -0,0 +1,438 @@ +{ + "multiagent_cooking_rabbit_stew_cake_partial_plan": { + "type": "cooking", + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "cake": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1, + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make rabbit_stew, cake, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\n", + "1": "Collaborate with other agents around you to make rabbit_stew, cake, " + }, + "conversation": "Let's collaborate to make rabbit_stew, cake, " + }, + "multiagent_cooking_cake_baked_potato_partial_plan": { + "type": "cooking", + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "cake": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "milk_bucket": 2, + "coal": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make cake, baked_potato, The recipes are as follows:\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n", + "1": "Collaborate with other agents around you to make cake, baked_potato, " + }, + "conversation": "Let's collaborate to make cake, baked_potato, " + }, + "multiagent_cooking_golden_apple_cooked_beef_partial_plan": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, cooked_beef, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n", + "1": "Collaborate with other agents around you to make golden_apple, cooked_beef, " + }, + "conversation": "Let's collaborate to make golden_apple, cooked_beef, " + }, + "multiagent_cooking_cake_cooked_beef_partial_plan": { + "type": "cooking", + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "cake": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "milk_bucket": 2, + "coal": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make cake, cooked_beef, The recipes are as follows:\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n", + "1": "Collaborate with other agents around you to make cake, cooked_beef, " + }, + "conversation": "Let's collaborate to make cake, cooked_beef, " + }, + "multiagent_cooking_bread_baked_potato_partial_plan": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": {} + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, baked_potato, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n", + "1": "Collaborate with other agents around you to make bread, baked_potato, " + }, + "conversation": "Let's collaborate to make bread, baked_potato, " + }, + "multiagent_cooking_rabbit_stew_baked_potato_partial_plan": { + "type": "cooking", + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make rabbit_stew, baked_potato, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n", + "1": "Collaborate with other agents around you to make rabbit_stew, baked_potato, " + }, + "conversation": "Let's collaborate to make rabbit_stew, baked_potato, " + }, + "multiagent_cooking_golden_apple_cake_partial_plan": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "cake": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1, + "milk_bucket": 2 + }, + "1": { + "gold_ingot": 4, + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, cake, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\n", + "1": "Collaborate with other agents around you to make golden_apple, cake, " + }, + "conversation": "Let's collaborate to make golden_apple, cake, " + }, + "multiagent_cooking_rabbit_stew_cooked_beef_partial_plan": { + "type": "cooking", + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make rabbit_stew, cooked_beef, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n", + "1": "Collaborate with other agents around you to make rabbit_stew, cooked_beef, " + }, + "conversation": "Let's collaborate to make rabbit_stew, cooked_beef, " + }, + "multiagent_cooking_bread_cooked_beef_partial_plan": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": {} + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, cooked_beef, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n", + "1": "Collaborate with other agents around you to make bread, cooked_beef, " + }, + "conversation": "Let's collaborate to make bread, cooked_beef, " + }, + "multiagent_cooking_baked_potato_cooked_beef_partial_plan": { + "type": "cooking", + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "baked_potato": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make baked_potato, cooked_beef, The recipes are as follows:\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n", + "1": "Collaborate with other agents around you to make baked_potato, cooked_beef, " + }, + "conversation": "Let's collaborate to make baked_potato, cooked_beef, " + }, + "multiagent_cooking_golden_apple_baked_potato_partial_plan": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, baked_potato, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n", + "1": "Collaborate with other agents around you to make golden_apple, baked_potato, " + }, + "conversation": "Let's collaborate to make golden_apple, baked_potato, " + }, + "multiagent_cooking_bread_rabbit_stew_partial_plan": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "rabbit_stew": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": {} + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, rabbit_stew, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\n", + "1": "Collaborate with other agents around you to make bread, rabbit_stew, " + }, + "conversation": "Let's collaborate to make bread, rabbit_stew, " + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_2_items/2_agent_full.json b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_full.json new file mode 100644 index 0000000..40a594c --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_full.json @@ -0,0 +1,544 @@ +{ + "multiagent_cooking_bread_golden_apple": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "golden_apple": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, golden_apple, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\n", + "1": "Collaborate with other agents around you to make bread, golden_apple, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\n" + }, + "conversation": "Let's collaborate to make bread, golden_apple, " + }, + "multiagent_cooking_bread_rabbit_stew": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "rabbit_stew": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": {} + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, rabbit_stew, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\n", + "1": "Collaborate with other agents around you to make bread, rabbit_stew, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\n" + }, + "conversation": "Let's collaborate to make bread, rabbit_stew, " + }, + "multiagent_cooking_bread_cake": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "cake": 1 + }, + "initial_inventory": { + "0": { + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, cake, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\n", + "1": "Collaborate with other agents around you to make bread, cake, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\n" + }, + "conversation": "Let's collaborate to make bread, cake, " + }, + "multiagent_cooking_bread_baked_potato": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": {} + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, baked_potato, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n", + "1": "Collaborate with other agents around you to make bread, baked_potato, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n" + }, + "conversation": "Let's collaborate to make bread, baked_potato, " + }, + "multiagent_cooking_bread_cooked_beef": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": {} + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, cooked_beef, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n", + "1": "Collaborate with other agents around you to make bread, cooked_beef, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n" + }, + "conversation": "Let's collaborate to make bread, cooked_beef, " + }, + "multiagent_cooking_golden_apple_rabbit_stew": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "rabbit_stew": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "bowl": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, rabbit_stew, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\n", + "1": "Collaborate with other agents around you to make golden_apple, rabbit_stew, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\n" + }, + "conversation": "Let's collaborate to make golden_apple, rabbit_stew, " + }, + "multiagent_cooking_golden_apple_cake": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "cake": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1, + "milk_bucket": 2 + }, + "1": { + "gold_ingot": 4, + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, cake, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\n", + "1": "Collaborate with other agents around you to make golden_apple, cake, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\n" + }, + "conversation": "Let's collaborate to make golden_apple, cake, " + }, + "multiagent_cooking_golden_apple_baked_potato": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, baked_potato, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n", + "1": "Collaborate with other agents around you to make golden_apple, baked_potato, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n" + }, + "conversation": "Let's collaborate to make golden_apple, baked_potato, " + }, + "multiagent_cooking_golden_apple_cooked_beef": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, cooked_beef, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n", + "1": "Collaborate with other agents around you to make golden_apple, cooked_beef, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n" + }, + "conversation": "Let's collaborate to make golden_apple, cooked_beef, " + }, + "multiagent_cooking_rabbit_stew_cake": { + "type": "cooking", + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "cake": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1, + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make rabbit_stew, cake, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\n", + "1": "Collaborate with other agents around you to make rabbit_stew, cake, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\n" + }, + "conversation": "Let's collaborate to make rabbit_stew, cake, " + }, + "multiagent_cooking_rabbit_stew_baked_potato": { + "type": "cooking", + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make rabbit_stew, baked_potato, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n", + "1": "Collaborate with other agents around you to make rabbit_stew, baked_potato, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n" + }, + "conversation": "Let's collaborate to make rabbit_stew, baked_potato, " + }, + "multiagent_cooking_rabbit_stew_cooked_beef": { + "type": "cooking", + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make rabbit_stew, cooked_beef, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n", + "1": "Collaborate with other agents around you to make rabbit_stew, cooked_beef, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n" + }, + "conversation": "Let's collaborate to make rabbit_stew, cooked_beef, " + }, + "multiagent_cooking_cake_baked_potato": { + "type": "cooking", + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "cake": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "milk_bucket": 2, + "coal": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make cake, baked_potato, The recipes are as follows:\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n", + "1": "Collaborate with other agents around you to make cake, baked_potato, The recipes are as follows:\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n" + }, + "conversation": "Let's collaborate to make cake, baked_potato, " + }, + "multiagent_cooking_cake_cooked_beef": { + "type": "cooking", + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "cake": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "milk_bucket": 2, + "coal": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make cake, cooked_beef, The recipes are as follows:\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n", + "1": "Collaborate with other agents around you to make cake, cooked_beef, The recipes are as follows:\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n" + }, + "conversation": "Let's collaborate to make cake, cooked_beef, " + }, + "multiagent_cooking_baked_potato_cooked_beef": { + "type": "cooking", + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "baked_potato": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make baked_potato, cooked_beef, The recipes are as follows:\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n", + "1": "Collaborate with other agents around you to make baked_potato, cooked_beef, The recipes are as follows:\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n" + }, + "conversation": "Let's collaborate to make baked_potato, cooked_beef, " + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_2_items/2_agent_full_remaining.json b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_full_remaining.json new file mode 100644 index 0000000..f167e4a --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_full_remaining.json @@ -0,0 +1,438 @@ +{ + "multiagent_cooking_golden_apple_baked_potato": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, baked_potato, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n", + "1": "Collaborate with other agents around you to make golden_apple, baked_potato, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n" + }, + "conversation": "Let's collaborate to make golden_apple, baked_potato, " + }, + "multiagent_cooking_rabbit_stew_baked_potato": { + "type": "cooking", + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make rabbit_stew, baked_potato, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n", + "1": "Collaborate with other agents around you to make rabbit_stew, baked_potato, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n" + }, + "conversation": "Let's collaborate to make rabbit_stew, baked_potato, " + }, + "multiagent_cooking_bread_rabbit_stew": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "rabbit_stew": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": {} + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, rabbit_stew, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\n", + "1": "Collaborate with other agents around you to make bread, rabbit_stew, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\n" + }, + "conversation": "Let's collaborate to make bread, rabbit_stew, " + }, + "multiagent_cooking_bread_baked_potato": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": {} + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, baked_potato, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n", + "1": "Collaborate with other agents around you to make bread, baked_potato, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n" + }, + "conversation": "Let's collaborate to make bread, baked_potato, " + }, + "multiagent_cooking_baked_potato_cooked_beef": { + "type": "cooking", + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "baked_potato": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make baked_potato, cooked_beef, The recipes are as follows:\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n", + "1": "Collaborate with other agents around you to make baked_potato, cooked_beef, The recipes are as follows:\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n" + }, + "conversation": "Let's collaborate to make baked_potato, cooked_beef, " + }, + "multiagent_cooking_cake_cooked_beef": { + "type": "cooking", + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "cake": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "milk_bucket": 2, + "coal": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make cake, cooked_beef, The recipes are as follows:\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n", + "1": "Collaborate with other agents around you to make cake, cooked_beef, The recipes are as follows:\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n" + }, + "conversation": "Let's collaborate to make cake, cooked_beef, " + }, + "multiagent_cooking_rabbit_stew_cake": { + "type": "cooking", + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "cake": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1, + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make rabbit_stew, cake, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\n", + "1": "Collaborate with other agents around you to make rabbit_stew, cake, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\n" + }, + "conversation": "Let's collaborate to make rabbit_stew, cake, " + }, + "multiagent_cooking_golden_apple_cooked_beef": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, cooked_beef, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n", + "1": "Collaborate with other agents around you to make golden_apple, cooked_beef, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n" + }, + "conversation": "Let's collaborate to make golden_apple, cooked_beef, " + }, + "multiagent_cooking_rabbit_stew_cooked_beef": { + "type": "cooking", + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "rabbit_stew": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make rabbit_stew, cooked_beef, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n", + "1": "Collaborate with other agents around you to make rabbit_stew, cooked_beef, The recipes are as follows:\nRecipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n" + }, + "conversation": "Let's collaborate to make rabbit_stew, cooked_beef, " + }, + "multiagent_cooking_golden_apple_cake": { + "type": "cooking", + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "agent_count": 2, + "target": { + "golden_apple": 1, + "cake": 1 + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1, + "milk_bucket": 2 + }, + "1": { + "gold_ingot": 4, + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make golden_apple, cake, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\n", + "1": "Collaborate with other agents around you to make golden_apple, cake, The recipes are as follows:\nRecipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\n" + }, + "conversation": "Let's collaborate to make golden_apple, cake, " + }, + "multiagent_cooking_bread_cooked_beef": { + "type": "cooking", + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "agent_count": 2, + "target": { + "bread": 1, + "cooked_beef": 1 + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": {} + }, + "goal": { + "0": "Collaborate with other agents around you to make bread, cooked_beef, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n", + "1": "Collaborate with other agents around you to make bread, cooked_beef, The recipes are as follows:\nRecipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']\nRecipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']\n" + }, + "conversation": "Let's collaborate to make bread, cooked_beef, " + }, + "multiagent_cooking_cake_baked_potato": { + "type": "cooking", + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "agent_count": 2, + "target": { + "cake": 1, + "baked_potato": 1 + }, + "initial_inventory": { + "0": { + "milk_bucket": 2, + "coal": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + }, + "goal": { + "0": "Collaborate with other agents around you to make cake, baked_potato, The recipes are as follows:\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n", + "1": "Collaborate with other agents around you to make cake, baked_potato, The recipes are as follows:\nRecipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']\nRecipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']\n" + }, + "conversation": "Let's collaborate to make cake, baked_potato, " + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen.json b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen.json new file mode 100644 index 0000000..ed16d01 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen.json @@ -0,0 +1,286 @@ +{ + "multiagent_cooking_bread_golden_apple_hells_kitchen": { + "conversation": "We need to make bread and golden_apple together. You are supposed to make golden_apple and I am supposed to make bread, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "bread", + "golden_apple" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make bread, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Get 1 apple and 8 gold ingots from your inventory or other bots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make golden_apple, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 4, + "max_steps_per_recipe": 2, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 5 + }, + "1": { + "gold_ingot": 5, + "apple": 1 + } + } + }, + "multiagent_cooking_golden_apple_rabbit_stew_hells_kitchen": { + "conversation": "We need to make golden_apple and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_apple", + "rabbit_stew" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_apple, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to the furnace and bake the potato.\nStep 5: From your inventory or other agents get a bowl\nStep 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 7: Go to the furnace and cook the raw rabbit.\nStep 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make rabbit_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Get 1 apple and 8 gold ingots from your inventory or other bots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 10, + "max_steps_per_recipe": 8, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "gold_ingot": 5, + "bowl": 1 + }, + "1": { + "gold_ingot": 5, + "apple": 1 + } + } + }, + "multiagent_cooking_bread_cake_hells_kitchen": { + "conversation": "We need to make bread and cake together. You are supposed to make cake and I am supposed to make bread, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "bread", + "cake" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make bread, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: From your inventory or other agents get 3 milk buckets (already filled with milk).\nStep 3: Get an egg from your inventory or other agents.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cake, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 2, + "egg": 1 + } + } + + }, + "multiagent_cooking_baked_potato_golden_apple_hells_kitchen": { + "conversation": "We need to make baked_potato and golden_apple together. You are supposed to make golden_apple and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "baked_potato", + "golden_apple" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make baked_potato, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Get 1 apple and 8 gold ingots from your inventory or other bots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make golden_apple, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1, + "gold_ingot": 5, + "apple": 1 + }, + "1": { + "coal": 1, + "gold_ingot": 5 + } + } + }, + "multiagent_cooking_baked_potato_cake_hells_kitchen": { + "conversation": "We need to make baked_potato and cake together. You are supposed to make cake and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "baked_potato", + "cake" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make baked_potato, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: From your inventory or other agents get 3 milk buckets (already filled with milk).\nStep 3: Get an egg from your inventory or other agents.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cake, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 9, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 5, + "milk_bucket": 2, + "egg": 1 + }, + "1": { + "coal": 5, + "milk_bucket": 2 + } + } + }, + "multiagent_cooking_cooked_beef_golden_apple_hells_kitchen": { + "conversation": "We need to make cooked_beef and golden_apple together. You are supposed to make golden_apple and I am supposed to make cooked_beef, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_beef", + "golden_apple" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_beef, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Get 1 apple and 8 gold ingots from your inventory or other bots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make golden_apple, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 5, + "coal": 5 + }, + "1": { + "gold_ingot": 5, + "apple": 1, + "coal": 5 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen_full.json b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen_full.json new file mode 100644 index 0000000..94fe904 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen_full.json @@ -0,0 +1,579 @@ +{ + "multiagent_cooking_golden_apple_bread_hells_kitchen": { + "conversation": "We need to make golden_apple and bread together. You are supposed to make bread and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_apple", + "bread" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_apple, but you don't have the recipe for it, your partner has it!Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "You need to make bread, but you don't have the recipe for it, your partner has it!Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 4, + "max_steps_per_recipe": 2, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_golden_apple_cake_hells_kitchen": { + "conversation": "We need to make golden_apple and cake together. You are supposed to make cake and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_apple", + "cake" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_apple, but you don't have the recipe for it, your partner has it!Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "You need to make cake, but you don't have the recipe for it, your partner has it!Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1, + "milk_bucket": 2 + }, + "1": { + "gold_ingot": 4, + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_golden_apple_rabbit_stew_hells_kitchen": { + "conversation": "We need to make golden_apple and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_apple", + "rabbit_stew" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_apple, but you don't have the recipe for it, your partner has it!Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "You need to make rabbit_stew, but you don't have the recipe for it, your partner has it!Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 10, + "max_steps_per_recipe": 8, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "bowl": 1 + } + } + }, + "multiagent_cooking_golden_apple_baked_potato_hells_kitchen": { + "conversation": "We need to make golden_apple and baked_potato together. You are supposed to make baked_potato and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_apple", + "baked_potato" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_apple, but you don't have the recipe for it, your partner has it!Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "1": "You need to make baked_potato, but you don't have the recipe for it, your partner has it!Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "coal": 1 + } + } + }, + "multiagent_cooking_golden_apple_cooked_beef_hells_kitchen": { + "conversation": "We need to make golden_apple and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_apple", + "cooked_beef" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_apple, but you don't have the recipe for it, your partner has it!Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "You need to make cooked_beef, but you don't have the recipe for it, your partner has it!Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "apple": 1 + }, + "1": { + "gold_ingot": 4, + "coal": 1 + } + } + }, + "multiagent_cooking_bread_cake_hells_kitchen": { + "conversation": "We need to make bread and cake together. You are supposed to make cake and I am supposed to make bread, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "bread", + "cake" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make bread, but you don't have the recipe for it, your partner has it!Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "You need to make cake, but you don't have the recipe for it, your partner has it!Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_cake_rabbit_stew_hells_kitchen": { + "conversation": "We need to make cake and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cake", + "rabbit_stew" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cake, but you don't have the recipe for it, your partner has it!Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "You need to make rabbit_stew, but you don't have the recipe for it, your partner has it!Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 13, + "max_steps_per_recipe": 8, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "milk_bucket": 2, + "bowl": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_cake_baked_potato_hells_kitchen": { + "conversation": "We need to make cake and baked_potato together. You are supposed to make baked_potato and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cake", + "baked_potato" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cake, but you don't have the recipe for it, your partner has it!Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "1": "You need to make baked_potato, but you don't have the recipe for it, your partner has it!Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 9, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "milk_bucket": 2, + "coal": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_cake_cooked_beef_hells_kitchen": { + "conversation": "We need to make cake and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cake", + "cooked_beef" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cake, but you don't have the recipe for it, your partner has it!Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "You need to make cooked_beef, but you don't have the recipe for it, your partner has it!Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 9, + "max_steps_per_recipe": 5, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "milk_bucket": 2, + "coal": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + } + } + }, + "multiagent_cooking_rabbit_stew_baked_potato_hells_kitchen": { + "conversation": "We need to make rabbit_stew and baked_potato together. You are supposed to make baked_potato and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "rabbit_stew", + "baked_potato" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make rabbit_stew, but you don't have the recipe for it, your partner has it!Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']", + "1": "You need to make baked_potato, but you don't have the recipe for it, your partner has it!Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']" + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 12, + "max_steps_per_recipe": 8, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_rabbit_stew_cooked_beef_hells_kitchen": { + "conversation": "We need to make rabbit_stew and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "rabbit_stew", + "cooked_beef" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make rabbit_stew, but you don't have the recipe for it, your partner has it!Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "You need to make cooked_beef, but you don't have the recipe for it, your partner has it!Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 12, + "max_steps_per_recipe": 8, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_baked_potato_cooked_beef_hells_kitchen": { + "conversation": "We need to make baked_potato and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "baked_potato", + "cooked_beef" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make baked_potato, but you don't have the recipe for it, your partner has it!Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "You need to make cooked_beef, but you don't have the recipe for it, your partner has it!Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_2_items/2_agent_long_timeout.json b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_long_timeout.json new file mode 100644 index 0000000..c85a09d --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/2_agent_long_timeout.json @@ -0,0 +1,231 @@ +{ + "multiagent_cooking_2_1_bread_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, bread.", + "agent_count": 2, + "target": { + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 5 + }, + "1": { + "gold_ingot": 5, + "apple": 1 + } + } + }, + "multiagent_cooking_2_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make golden_apple, rabbit_stew.", + "agent_count": 2, + "target": { + "golden_apple": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 5, + "bowl": 1 + }, + "1": { + "gold_ingot": 5, + "apple": 1 + } + } + }, + "multiagent_cooking_2_1_bread_1_cake": { + "conversation": "Let's work together to make cake, bread.", + "agent_count": 2, + "target": { + "cake": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 2, + "egg": 1 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_golden_apple": { + "conversation": "Let's work together to make baked_potato, golden_apple.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 5, + "gold_ingot": 5, + "apple": 1 + }, + "1": { + "coal": 5, + "gold_ingot": 5 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_cake": { + "conversation": "Let's work together to make baked_potato, cake.", + "agent_count": 2, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 5, + "milk_bucket": 2, + "egg": 1 + }, + "1": { + "coal": 5, + "milk_bucket": 2 + } + } + }, + "multiagent_cooking_2_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cooked_beef.", + "agent_count": 2, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 5, + "coal": 5 + }, + "1": { + "gold_ingot": 5, + "apple": 1, + "coal": 5 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_2_items/3_agent.json b/tasks/cooking_tasks/require_collab_test_2_items/3_agent.json new file mode 100644 index 0000000..8e595f0 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/3_agent.json @@ -0,0 +1,234 @@ +{ + "multiagent_cooking_2_1_bread_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, bread.", + "agent_count": 3, + "target": { + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "initial_inventory": { + "0": { + "gold_ingot": 3 + }, + "1": { + "gold_ingot": 3, + "apple": 1 + }, + "2": { + "gold_ingot": 3 + } + } + }, + "multiagent_cooking_2_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make golden_apple, rabbit_stew.", + "agent_count": 3, + "target": { + "golden_apple": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "initial_inventory": { + "0": { + "gold_ingot": 3 + }, + "1": { + "gold_ingot": 3, + "apple": 1 + }, + "2": { + "gold_ingot": 3, + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_bread_1_cake": { + "conversation": "Let's work together to make cake, bread.", + "agent_count": 3, + "target": { + "cake": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "initial_inventory": { + "0": { + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 2, + "egg": 1 + }, + "2": { + "milk_bucket": 2 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_golden_apple": { + "conversation": "Let's work together to make baked_potato, golden_apple.", + "agent_count": 3, + "target": { + "baked_potato": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "initial_inventory": { + "0": { + "coal": 3, + "gold_ingot": 3 + }, + "1": { + "coal": 3, + "gold_ingot": 3 + }, + "2": { + "coal": 3, + "gold_ingot": 3, + "apple": 1 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_cake": { + "conversation": "Let's work together to make baked_potato, cake.", + "agent_count": 3, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "initial_inventory": { + "0": { + "coal": 3, + "milk_bucket": 2 + }, + "1": { + "coal": 3, + "milk_bucket": 2 + }, + "2": { + "coal": 3, + "milk_bucket": 2, + "egg": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cooked_beef.", + "agent_count": 3, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "initial_inventory": { + "0": { + "gold_ingot": 3, + "coal": 3 + }, + "1": { + "gold_ingot": 3, + "apple": 1, + "coal": 3 + }, + "2": { + "gold_ingot": 3, + "coal": 3 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_2_items/3_agent_long_timeout.json b/tasks/cooking_tasks/require_collab_test_2_items/3_agent_long_timeout.json new file mode 100644 index 0000000..97d9d32 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/3_agent_long_timeout.json @@ -0,0 +1,252 @@ +{ + "multiagent_cooking_2_1_bread_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, bread.", + "agent_count": 3, + "target": { + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 3 + }, + "1": { + "gold_ingot": 3, + "apple": 1 + }, + "2": { + "gold_ingot": 3 + } + } + }, + "multiagent_cooking_2_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make golden_apple, rabbit_stew.", + "agent_count": 3, + "target": { + "golden_apple": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 3 + }, + "1": { + "gold_ingot": 3, + "apple": 1 + }, + "2": { + "gold_ingot": 3, + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_bread_1_cake": { + "conversation": "Let's work together to make cake, bread.", + "agent_count": 3, + "target": { + "cake": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "milk_bucket": 2 + }, + "1": { + "milk_bucket": 2, + "egg": 1 + }, + "2": { + "milk_bucket": 2 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_golden_apple": { + "conversation": "Let's work together to make baked_potato, golden_apple.", + "agent_count": 3, + "target": { + "baked_potato": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 3, + "gold_ingot": 3 + }, + "1": { + "coal": 3, + "gold_ingot": 3 + }, + "2": { + "coal": 3, + "gold_ingot": 3, + "apple": 1 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_cake": { + "conversation": "Let's work together to make baked_potato, cake.", + "agent_count": 3, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 3, + "milk_bucket": 2 + }, + "1": { + "coal": 3, + "milk_bucket": 2 + }, + "2": { + "coal": 3, + "milk_bucket": 2, + "egg": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cooked_beef.", + "agent_count": 3, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 3, + "coal": 3 + }, + "1": { + "gold_ingot": 3, + "apple": 1, + "coal": 3 + }, + "2": { + "gold_ingot": 3, + "coal": 3 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_2_items/4_agent.json b/tasks/cooking_tasks/require_collab_test_2_items/4_agent.json new file mode 100644 index 0000000..9a44990 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/4_agent.json @@ -0,0 +1,254 @@ +{ + "multiagent_cooking_2_1_bread_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, bread.", + "agent_count": 4, + "target": { + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "initial_inventory": { + "0": { + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2, + "apple": 1 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 2 + } + } + }, + "multiagent_cooking_2_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make golden_apple, rabbit_stew.", + "agent_count": 4, + "target": { + "golden_apple": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "initial_inventory": { + "0": { + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2, + "apple": 1 + }, + "2": { + "gold_ingot": 2, + "bowl": 1 + }, + "3": { + "gold_ingot": 2 + } + } + }, + "multiagent_cooking_2_1_bread_1_cake": { + "conversation": "Let's work together to make cake, bread.", + "agent_count": 4, + "target": { + "cake": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "initial_inventory": { + "0": { + "milk_bucket": 1 + }, + "1": { + "milk_bucket": 1 + }, + "2": { + "milk_bucket": 1 + }, + "3": { + "egg": 1 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_golden_apple": { + "conversation": "Let's work together to make baked_potato, golden_apple.", + "agent_count": 4, + "target": { + "baked_potato": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "initial_inventory": { + "0": { + "coal": 3, + "gold_ingot": 2 + }, + "1": { + "coal": 3, + "gold_ingot": 2 + }, + "2": { + "coal": 3, + "gold_ingot": 2, + "apple": 1 + }, + "3": { + "coal": 3, + "gold_ingot": 2 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_cake": { + "conversation": "Let's work together to make baked_potato, cake.", + "agent_count": 4, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "initial_inventory": { + "0": { + "coal": 3, + "milk_bucket": 1 + }, + "1": { + "coal": 3, + "milk_bucket": 1 + }, + "2": { + "coal": 3, + "milk_bucket": 1 + + }, + "3": { + "coal": 3, + "egg": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cooked_beef.", + "agent_count": 4, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "initial_inventory": { + "0": { + "gold_ingot": 2, + "coal": 3 + }, + "1": { + "gold_ingot": 2, + "apple": 1, + "coal": 3 + }, + "2": { + "gold_ingot": 2, + "coal": 3 + }, + "3": { + "gold_ingot": 2, + "coal": 3 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_2_items/4_agent_long_timeout.json b/tasks/cooking_tasks/require_collab_test_2_items/4_agent_long_timeout.json new file mode 100644 index 0000000..97fa85a --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/4_agent_long_timeout.json @@ -0,0 +1,272 @@ +{ + "multiagent_cooking_2_1_bread_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, bread.", + "agent_count": 4, + "target": { + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2, + "apple": 1 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 2 + } + } + }, + "multiagent_cooking_2_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make golden_apple, rabbit_stew.", + "agent_count": 4, + "target": { + "golden_apple": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2, + "apple": 1 + }, + "2": { + "gold_ingot": 2, + "bowl": 1 + }, + "3": { + "gold_ingot": 2 + } + } + }, + "multiagent_cooking_2_1_bread_1_cake": { + "conversation": "Let's work together to make cake, bread.", + "agent_count": 4, + "target": { + "cake": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "milk_bucket": 1 + }, + "1": { + "milk_bucket": 1 + }, + "2": { + "milk_bucket": 1 + }, + "3": { + "egg": 1 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_golden_apple": { + "conversation": "Let's work together to make baked_potato, golden_apple.", + "agent_count": 4, + "target": { + "baked_potato": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 3, + "gold_ingot": 2 + }, + "1": { + "coal": 3, + "gold_ingot": 2 + }, + "2": { + "coal": 3, + "gold_ingot": 2, + "apple": 1 + }, + "3": { + "coal": 3, + "gold_ingot": 2 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_cake": { + "conversation": "Let's work together to make baked_potato, cake.", + "agent_count": 4, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 3, + "milk_bucket": 1 + }, + "1": { + "coal": 3, + "milk_bucket": 1 + }, + "2": { + "coal": 3, + "milk_bucket": 1 + + }, + "3": { + "coal": 3, + "egg": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cooked_beef.", + "agent_count": 4, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 2, + "coal": 3 + }, + "1": { + "gold_ingot": 2, + "apple": 1, + "coal": 3 + }, + "2": { + "gold_ingot": 2, + "coal": 3 + }, + "3": { + "gold_ingot": 2, + "coal": 3 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_2_items/4_agent_remaining.json b/tasks/cooking_tasks/require_collab_test_2_items/4_agent_remaining.json new file mode 100644 index 0000000..8fe0791 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/4_agent_remaining.json @@ -0,0 +1,185 @@ +{ + "multiagent_cooking_2_1_bread_1_cake": { + "conversation": "Let's work together to make cake, bread.", + "agent_count": 4, + "target": { + "cake": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "milk_bucket": 1 + }, + "1": { + "milk_bucket": 1 + }, + "2": { + "milk_bucket": 1 + }, + "3": { + "egg": 1 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_golden_apple": { + "conversation": "Let's work together to make baked_potato, golden_apple.", + "agent_count": 4, + "target": { + "baked_potato": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 3, + "gold_ingot": 2 + }, + "1": { + "coal": 3, + "gold_ingot": 2 + }, + "2": { + "coal": 3, + "gold_ingot": 2, + "apple": 1 + }, + "3": { + "coal": 3, + "gold_ingot": 2 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_cake": { + "conversation": "Let's work together to make baked_potato, cake.", + "agent_count": 4, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 3, + "milk_bucket": 1 + }, + "1": { + "coal": 3, + "milk_bucket": 1 + }, + "2": { + "coal": 3, + "milk_bucket": 1 + + }, + "3": { + "coal": 3, + "egg": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cooked_beef.", + "agent_count": 4, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 2, + "coal": 3 + }, + "1": { + "gold_ingot": 2, + "apple": 1, + "coal": 3 + }, + "2": { + "gold_ingot": 2, + "coal": 3 + }, + "3": { + "gold_ingot": 2, + "coal": 3 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_2_items/5_agent.json b/tasks/cooking_tasks/require_collab_test_2_items/5_agent.json new file mode 100644 index 0000000..320e34c --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/5_agent.json @@ -0,0 +1,273 @@ +{ + "multiagent_cooking_2_1_bread_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, bread.", + "agent_count": 5, + "target": { + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "initial_inventory": { + "0": { + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 2 + }, + "4": { + "apple": 1 + } + } + }, + "multiagent_cooking_2_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make golden_apple, rabbit_stew.", + "agent_count": 5, + "target": { + "golden_apple": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "initial_inventory": { + "0": { + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2, + "apple": 1 + }, + "2": { + "gold_ingot": 2, + "bowl": 1 + }, + "3": { + "gold_ingot": 2 + }, + "4": { + "apple": 1 + } + } + }, + "multiagent_cooking_2_1_bread_1_cake": { + "conversation": "Let's work together to make cake, bread.", + "agent_count": 5, + "target": { + "cake": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "initial_inventory": { + "0": { + "milk_bucket": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + }, + "2": { + "milk_bucket": 1 + }, + "3": { + "egg": 1 + }, + "4": { + "egg": 1 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_golden_apple": { + "conversation": "Let's work together to make baked_potato, golden_apple.", + "agent_count": 5, + "target": { + "baked_potato": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "initial_inventory": { + "0": { + "coal": 2, + "gold_ingot": 2 + }, + "1": { + "coal": 2, + "gold_ingot": 2 + }, + "2": { + "coal": 2, + "gold_ingot": 2 + }, + "3": { + "coal": 2, + "gold_ingot": 2 + }, + "4": { + "coal": 2, + "apple": 1 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_cake": { + "conversation": "Let's work together to make baked_potato, cake.", + "agent_count": 5, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "initial_inventory": { + "0": { + "coal": 2, + "milk_bucket": 1 + }, + "1": { + "coal": 2, + "milk_bucket": 1 + }, + "2": { + "coal": 2, + "milk_bucket": 1 + + }, + "3": { + "coal": 2, + "egg": 1 + }, + "4": { + "coal": 2, + "egg": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cooked_beef.", + "agent_count": 5, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "initial_inventory": { + "0": { + "gold_ingot": 2, + "coal": 2 + }, + "1": { + "gold_ingot": 2, + "coal": 2 + }, + "2": { + "gold_ingot": 2, + "coal": 2 + }, + "3": { + "gold_ingot": 2, + "coal": 2 + }, + "4": { + "apple": 1, + "coal": 2 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_2_items/5_agent_long_timeout.json b/tasks/cooking_tasks/require_collab_test_2_items/5_agent_long_timeout.json new file mode 100644 index 0000000..b1657b8 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/5_agent_long_timeout.json @@ -0,0 +1,291 @@ +{ + "multiagent_cooking_2_1_bread_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, bread.", + "agent_count": 5, + "target": { + "golden_apple": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 2 + }, + "4": { + "apple": 1 + } + } + }, + "multiagent_cooking_2_1_golden_apple_1_rabbit_stew": { + "conversation": "Let's work together to make golden_apple, rabbit_stew.", + "agent_count": 5, + "target": { + "golden_apple": 1, + "rabbit_stew": 1 + }, + "type": "cooking", + "timeout": 11500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "rabbit_stew": [ + "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to the furnace and bake the potato.", + "Step 5: From your inventory or other agents get a bowl", + "Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 7: Go to the furnace and cook the raw rabbit.", + "Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2, + "apple": 1 + }, + "2": { + "gold_ingot": 2, + "bowl": 1 + }, + "3": { + "gold_ingot": 2 + }, + "4": { + "apple": 1 + } + } + }, + "multiagent_cooking_2_1_bread_1_cake": { + "conversation": "Let's work together to make cake, bread.", + "agent_count": 5, + "target": { + "cake": 1, + "bread": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ], + "bread": [ + "Step 1: Go to the farm and collect 3 wheat.", + "Step 2: Go to the crafting table and use the wheat to craft bread." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']", + "1": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']" + }, + "initial_inventory": { + "0": { + "milk_bucket": 1 + }, + "1": { + "milk_bucket": 1, + "egg": 1 + }, + "2": { + "milk_bucket": 1 + }, + "3": { + "egg": 1 + }, + "4": { + "egg": 1 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_golden_apple": { + "conversation": "Let's work together to make baked_potato, golden_apple.", + "agent_count": 5, + "target": { + "baked_potato": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 2, + "gold_ingot": 2 + }, + "1": { + "coal": 2, + "gold_ingot": 2 + }, + "2": { + "coal": 2, + "gold_ingot": 2 + }, + "3": { + "coal": 2, + "gold_ingot": 2 + }, + "4": { + "coal": 2, + "apple": 1 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_cake": { + "conversation": "Let's work together to make baked_potato, cake.", + "agent_count": 5, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 2, + "milk_bucket": 1 + }, + "1": { + "coal": 2, + "milk_bucket": 1 + }, + "2": { + "coal": 2, + "milk_bucket": 1 + + }, + "3": { + "coal": 2, + "egg": 1 + }, + "4": { + "coal": 2, + "egg": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cooked_beef.", + "agent_count": 5, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 1500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 2, + "coal": 2 + }, + "1": { + "gold_ingot": 2, + "coal": 2 + }, + "2": { + "gold_ingot": 2, + "coal": 2 + }, + "3": { + "gold_ingot": 2, + "coal": 2 + }, + "4": { + "apple": 1, + "coal": 2 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_test_2_items/5_agent_remaining.json b/tasks/cooking_tasks/require_collab_test_2_items/5_agent_remaining.json new file mode 100644 index 0000000..1144f11 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_test_2_items/5_agent_remaining.json @@ -0,0 +1,153 @@ +{ + "multiagent_cooking_2_1_baked_potato_1_golden_apple": { + "conversation": "Let's work together to make baked_potato, golden_apple.", + "agent_count": 5, + "target": { + "baked_potato": 1, + "golden_apple": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']" + }, + "initial_inventory": { + "0": { + "coal": 2, + "gold_ingot": 2 + }, + "1": { + "coal": 2, + "gold_ingot": 2 + }, + "2": { + "coal": 2, + "gold_ingot": 2 + }, + "3": { + "coal": 2, + "gold_ingot": 2 + }, + "4": { + "coal": 2, + "apple": 1 + } + } + }, + "multiagent_cooking_2_1_baked_potato_1_cake": { + "conversation": "Let's work together to make baked_potato, cake.", + "agent_count": 5, + "target": { + "baked_potato": 1, + "cake": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "baked_potato": [ + "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to the furnace and bake the potato." + ], + "cake": [ + "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", + "Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).", + "Step 3: Get an egg from your inventory or other agents.", + "Step 4: Go to the crafting table and craft the sugarcane into sugar.", + "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']", + "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']" + }, + "initial_inventory": { + "0": { + "coal": 2, + "milk_bucket": 1 + }, + "1": { + "coal": 2, + "milk_bucket": 1 + }, + "2": { + "coal": 2, + "milk_bucket": 1 + + }, + "3": { + "coal": 2, + "egg": 1 + }, + "4": { + "coal": 2, + "egg": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_beef_1_golden_apple": { + "conversation": "Let's work together to make golden_apple, cooked_beef.", + "agent_count": 5, + "target": { + "golden_apple": 1, + "cooked_beef": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_apple": [ + "Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.", + "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." + ], + "cooked_beef": [ + "Step 1: Kill a cow and pick up 1 beef that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the beef." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']", + "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 2, + "coal": 2 + }, + "1": { + "gold_ingot": 2, + "coal": 2 + }, + "2": { + "gold_ingot": 2, + "coal": 2 + }, + "3": { + "gold_ingot": 2, + "coal": 2 + }, + "4": { + "apple": 1, + "coal": 2 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_train_2_items/2_agent.json b/tasks/cooking_tasks/require_collab_train_2_items/2_agent.json new file mode 100644 index 0000000..b722fbb --- /dev/null +++ b/tasks/cooking_tasks/require_collab_train_2_items/2_agent.json @@ -0,0 +1,1640 @@ +{ + "multiagent_cooking_2_1_cooked_chicken_1_golden_carrot": { + "conversation": "Let's work together to make cooked_chicken, golden_carrot.", + "agent_count": 2, + "target": { + "cooked_chicken": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "coal": 1, + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_2_1_cooked_mutton_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cooked_mutton.", + "agent_count": 2, + "target": { + "golden_carrot": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "coal": 1 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_2_1_cookie_1_mushroom_stew": { + "conversation": "Let's work together to make cookie, mushroom_stew.", + "agent_count": 2, + "target": { + "cookie": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_cookie_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cookie.", + "agent_count": 2, + "target": { + "golden_carrot": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "cocoa_beans": 1 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_2_1_cooked_mutton_1_cooked_porkchop": { + "conversation": "Let's work together to make cooked_porkchop, cooked_mutton.", + "agent_count": 2, + "target": { + "cooked_porkchop": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_cookie_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, cookie.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "cocoa_beans": 1 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_2_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's work together to make mushroom_stew, suspicious_stew.", + "agent_count": 2, + "target": { + "mushroom_stew": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_cookie_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, cookie.", + "agent_count": 2, + "target": { + "pumpkin_pie": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_chicken_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, cooked_chicken.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "coal": 1 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_chicken_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, cooked_chicken.", + "agent_count": 2, + "target": { + "mushroom_stew": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_rabbit_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cooked_rabbit.", + "agent_count": 2, + "target": { + "golden_carrot": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "coal": 1 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_2_1_golden_carrot_1_mushroom_stew": { + "conversation": "Let's work together to make golden_carrot, mushroom_stew.", + "agent_count": 2, + "target": { + "golden_carrot": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "bowl": 1 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_2_1_golden_carrot_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, golden_carrot.", + "agent_count": 2, + "target": { + "pumpkin_pie": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "egg": 1, + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_2_1_cooked_chicken_1_cooked_porkchop": { + "conversation": "Let's work together to make cooked_chicken, cooked_porkchop.", + "agent_count": 2, + "target": { + "cooked_chicken": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_cooked_porkchop": { + "conversation": "Let's work together to make beetroot_soup, cooked_porkchop.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_porkchop_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, cooked_porkchop.", + "agent_count": 2, + "target": { + "mushroom_stew": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_porkchop_1_golden_carrot": { + "conversation": "Let's work together to make cooked_porkchop, golden_carrot.", + "agent_count": 2, + "target": { + "cooked_porkchop": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "coal": 1, + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_2_1_cooked_porkchop_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_porkchop, pumpkin_pie.", + "agent_count": 2, + "target": { + "cooked_porkchop": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "egg": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_mutton_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_mutton, suspicious_stew.", + "agent_count": 2, + "target": { + "cooked_mutton": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "initial_inventory": { + "0": { + "coal": 1, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_mushroom_stew_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, mushroom_stew.", + "agent_count": 2, + "target": { + "pumpkin_pie": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_rabbit_1_mushroom_stew": { + "conversation": "Let's work together to make cooked_rabbit, mushroom_stew.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_chicken_1_cookie": { + "conversation": "Let's work together to make cookie, cooked_chicken.", + "agent_count": 2, + "target": { + "cookie": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_chicken_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, cooked_chicken.", + "agent_count": 2, + "target": { + "pumpkin_pie": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_mutton_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, cooked_mutton.", + "agent_count": 2, + "target": { + "mushroom_stew": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_porkchop_1_cooked_rabbit": { + "conversation": "Let's work together to make cooked_rabbit, cooked_porkchop.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_porkchop_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, cooked_porkchop.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "coal": 1 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, beetroot_soup.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_rabbit_1_cookie": { + "conversation": "Let's work together to make cookie, cooked_rabbit.", + "agent_count": 2, + "target": { + "cookie": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's work together to make golden_carrot, suspicious_stew.", + "agent_count": 2, + "target": { + "golden_carrot": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 4, + "bowl": 1 + }, + "1": { + "gold_ingot": 4, + "dandelion": 1 + } + } + }, + "multiagent_cooking_2_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, pumpkin_pie.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "egg": 1 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_cookie": { + "conversation": "Let's work together to make beetroot_soup, cookie.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_cooked_mutton": { + "conversation": "Let's work together to make cooked_mutton, beetroot_soup.", + "agent_count": 2, + "target": { + "cooked_mutton": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_pumpkin_pie": { + "conversation": "Let's work together to make beetroot_soup, pumpkin_pie.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "egg": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_chicken_1_cooked_rabbit": { + "conversation": "Let's work together to make cooked_chicken, cooked_rabbit.", + "agent_count": 2, + "target": { + "cooked_chicken": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_porkchop_1_cookie": { + "conversation": "Let's work together to make cooked_porkchop, cookie.", + "agent_count": 2, + "target": { + "cooked_porkchop": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_golden_carrot": { + "conversation": "Let's work together to make beetroot_soup, golden_carrot.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_2_1_cooked_rabbit_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_rabbit, suspicious_stew.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "initial_inventory": { + "0": { + "coal": 1, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_mutton_1_cooked_rabbit": { + "conversation": "Let's work together to make cooked_rabbit, cooked_mutton.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_chicken_1_cooked_mutton": { + "conversation": "Let's work together to make cooked_mutton, cooked_chicken.", + "agent_count": 2, + "target": { + "cooked_mutton": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_cooked_rabbit": { + "conversation": "Let's work together to make beetroot_soup, cooked_rabbit.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_mutton_1_cookie": { + "conversation": "Let's work together to make cookie, cooked_mutton.", + "agent_count": 2, + "target": { + "cookie": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_mushroom_stew": { + "conversation": "Let's work together to make mushroom_stew, beetroot_soup.", + "agent_count": 2, + "target": { + "mushroom_stew": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_rabbit_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, cooked_rabbit.", + "agent_count": 2, + "target": { + "pumpkin_pie": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_cooked_chicken": { + "conversation": "Let's work together to make beetroot_soup, cooked_chicken.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_mutton_1_pumpkin_pie": { + "conversation": "Let's work together to make cooked_mutton, pumpkin_pie.", + "agent_count": 2, + "target": { + "cooked_mutton": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "egg": 1 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_train_2_items/2_agent_block_recipe.json b/tasks/cooking_tasks/require_collab_train_2_items/2_agent_block_recipe.json new file mode 100644 index 0000000..2f11991 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_train_2_items/2_agent_block_recipe.json @@ -0,0 +1,2638 @@ +{ + "multiagent_cooking_1_cooked_porkchop_1_cooked_rabbit_blocked_access_0": { + "conversation": "Let's collaborate to make cooked_rabbit and cooked_porkchop.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop. ", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_cookie_1_mushroom_stew": { + "conversation": "Let's collaborate to make cookie and mushroom_stew.", + "agent_count": 2, + "target": { + "cookie": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_1_beetroot_soup_1_golden_carrot_blocked_access_1": { + "conversation": "Let's collaborate to make beetroot_soup and golden_carrot.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. " + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1, + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_1_beetroot_soup_1_cooked_mutton": { + "conversation": "Let's collaborate to make cooked_mutton and beetroot_soup.", + "agent_count": 2, + "target": { + "cooked_mutton": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_1_cooked_porkchop_1_pumpkin_pie": { + "conversation": "Let's collaborate to make pumpkin_pie and cooked_porkchop.", + "agent_count": 2, + "target": { + "pumpkin_pie": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_porkchop. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_porkchop. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "egg": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_cooked_chicken_1_suspicious_stew": { + "conversation": "Let's collaborate to make cooked_chicken and suspicious_stew.", + "agent_count": 2, + "target": { + "cooked_chicken": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_1_beetroot_soup_1_cooked_rabbit_blocked_access_0": { + "conversation": "Let's collaborate to make beetroot_soup and cooked_rabbit.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit. ", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_cooked_chicken_1_cooked_rabbit_blocked_access_0_1": { + "conversation": "Let's collaborate to make cooked_rabbit and cooked_chicken.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken. ", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken. " + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_cooked_mutton_1_cookie_blocked_access_1": { + "conversation": "Let's collaborate to make cookie and cooked_mutton.", + "agent_count": 2, + "target": { + "cookie": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton. " + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_beetroot_soup_1_mushroom_stew_blocked_access_0_1": { + "conversation": "Let's collaborate to make mushroom_stew and beetroot_soup.", + "agent_count": 2, + "target": { + "mushroom_stew": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup. ", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup. " + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_1_beetroot_soup_1_suspicious_stew": { + "conversation": "Let's collaborate to make suspicious_stew and beetroot_soup.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_1_beetroot_soup_1_cooked_porkchop_blocked_access_0_1": { + "conversation": "Let's collaborate to make beetroot_soup and cooked_porkchop.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. ", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. " + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_beetroot_soup_1_pumpkin_pie_blocked_access_0": { + "conversation": "Let's collaborate to make beetroot_soup and pumpkin_pie.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. ", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "egg": 1 + } + } + }, + "multiagent_cooking_1_beetroot_soup_1_mushroom_stew": { + "conversation": "Let's collaborate to make mushroom_stew and beetroot_soup.", + "agent_count": 2, + "target": { + "mushroom_stew": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_1_cookie_1_suspicious_stew": { + "conversation": "Let's collaborate to make cookie and suspicious_stew.", + "agent_count": 2, + "target": { + "cookie": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "cocoa_beans": 1, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_1_beetroot_soup_1_cookie": { + "conversation": "Let's collaborate to make beetroot_soup and cookie.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_1_golden_carrot_1_pumpkin_pie_blocked_access_0": { + "conversation": "Let's collaborate to make pumpkin_pie and golden_carrot.", + "agent_count": 2, + "target": { + "pumpkin_pie": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. ", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "egg": 1, + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_1_golden_carrot_1_suspicious_stew_blocked_access_0_1": { + "conversation": "Let's collaborate to make suspicious_stew and golden_carrot.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot. ", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot. " + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1, + "gold_ingot": 4 + }, + "1": { + "dandelion": 1, + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_1_cooked_porkchop_1_cooked_rabbit_blocked_access_0_1": { + "conversation": "Let's collaborate to make cooked_porkchop and cooked_rabbit.", + "agent_count": 2, + "target": { + "cooked_porkchop": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit. ", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit. " + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_cooked_porkchop_1_cookie_blocked_access_0": { + "conversation": "Let's collaborate to make cookie and cooked_porkchop.", + "agent_count": 2, + "target": { + "cookie": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop. ", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_cooked_chicken_1_mushroom_stew": { + "conversation": "Let's collaborate to make mushroom_stew and cooked_chicken.", + "agent_count": 2, + "target": { + "mushroom_stew": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_cooked_porkchop_1_cooked_rabbit": { + "conversation": "Let's collaborate to make cooked_rabbit and cooked_porkchop.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 3, + "difficulty_category": "easy" + }, + "difficulty": "easy", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_cooked_chicken_1_mushroom_stew_blocked_access_1": { + "conversation": "Let's collaborate to make cooked_chicken and mushroom_stew.", + "agent_count": 2, + "target": { + "cooked_chicken": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew. " + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_1_suspicious_stew_blocked_access_1": { + "conversation": "Let's work together to make suspicious_stew.", + "agent_count": 2, + "target": { + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew. " + }, + "difficulty_metrics": { + "total_recipe_steps": 3, + "blocked_agents_count": 1, + "unique_target_items": 1, + "overall_difficulty_score": 3, + "difficulty_category": "easy" + }, + "difficulty": "easy", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_1_cooked_porkchop_1_suspicious_stew_blocked_access_0": { + "conversation": "Let's collaborate to make suspicious_stew and cooked_porkchop.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. ", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1, + "coal": 1 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_1_cooked_rabbit_1_mushroom_stew_blocked_access_0_1": { + "conversation": "Let's collaborate to make cooked_rabbit and mushroom_stew.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. ", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. " + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_1_cooked_rabbit_1_cookie": { + "conversation": "Let's collaborate to make cooked_rabbit and cookie.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_1_cooked_mutton_1_mushroom_stew": { + "conversation": "Let's collaborate to make mushroom_stew and cooked_mutton.", + "agent_count": 2, + "target": { + "mushroom_stew": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_beetroot_soup_1_cooked_porkchop": { + "conversation": "Let's collaborate to make beetroot_soup and cooked_porkchop.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_cooked_chicken_1_cooked_rabbit_blocked_access_1": { + "conversation": "Let's collaborate to make cooked_chicken and cooked_rabbit.", + "agent_count": 2, + "target": { + "cooked_chicken": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. " + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_cooked_chicken_1_cooked_porkchop": { + "conversation": "Let's collaborate to make cooked_porkchop and cooked_chicken.", + "agent_count": 2, + "target": { + "cooked_porkchop": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 3, + "difficulty_category": "easy" + }, + "difficulty": "easy", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew.", + "agent_count": 2, + "target": { + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 3, + "blocked_agents_count": 0, + "unique_target_items": 1, + "overall_difficulty_score": 2, + "difficulty_category": "easy" + }, + "difficulty": "easy", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's collaborate to make pumpkin_pie and suspicious_stew.", + "agent_count": 2, + "target": { + "pumpkin_pie": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "egg": 1, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_1_cooked_chicken_1_mushroom_stew_blocked_access_0_1": { + "conversation": "Let's collaborate to make mushroom_stew and cooked_chicken.", + "agent_count": 2, + "target": { + "mushroom_stew": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. ", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. " + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_cookie_1_golden_carrot": { + "conversation": "Let's collaborate to make cookie and golden_carrot.", + "agent_count": 2, + "target": { + "cookie": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "cocoa_beans": 1, + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_1_beetroot_soup_1_golden_carrot": { + "conversation": "Let's collaborate to make golden_carrot and beetroot_soup.", + "agent_count": 2, + "target": { + "golden_carrot": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "bowl": 1 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_1_cooked_rabbit_1_suspicious_stew_blocked_access_1": { + "conversation": "Let's collaborate to make cooked_rabbit and suspicious_stew.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. " + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_1_beetroot_soup_1_cookie_blocked_access_1": { + "conversation": "Let's collaborate to make beetroot_soup and cookie.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. " + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_1_cooked_mutton_1_suspicious_stew_blocked_access_1": { + "conversation": "Let's collaborate to make suspicious_stew and cooked_mutton.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton. " + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1, + "coal": 1 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_1_cooked_rabbit_1_golden_carrot": { + "conversation": "Let's collaborate to make cooked_rabbit and golden_carrot.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1, + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_1_cooked_rabbit_1_pumpkin_pie_blocked_access_0_1": { + "conversation": "Let's collaborate to make cooked_rabbit and pumpkin_pie.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie. ", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie. " + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "egg": 1 + } + } + }, + "multiagent_cooking_1_cooked_mutton_1_cookie_blocked_access_0_1": { + "conversation": "Let's collaborate to make cooked_mutton and cookie.", + "agent_count": 2, + "target": { + "cooked_mutton": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie. ", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie. " + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's collaborate to make golden_carrot and suspicious_stew.", + "agent_count": 2, + "target": { + "golden_carrot": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "bowl": 1 + }, + "1": { + "gold_ingot": 4, + "dandelion": 1 + } + } + }, + "multiagent_cooking_1_golden_carrot_1_pumpkin_pie_blocked_access_1": { + "conversation": "Let's collaborate to make pumpkin_pie and golden_carrot.", + "agent_count": 2, + "target": { + "pumpkin_pie": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. " + }, + "difficulty_metrics": { + "total_recipe_steps": 7, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "egg": 1, + "gold_ingot": 4 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_1_cooked_mutton_1_cooked_porkchop_blocked_access_1": { + "conversation": "Let's collaborate to make cooked_porkchop and cooked_mutton.", + "agent_count": 2, + "target": { + "cooked_porkchop": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. " + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_cooked_porkchop_1_golden_carrot": { + "conversation": "Let's collaborate to make golden_carrot and cooked_porkchop.", + "agent_count": 2, + "target": { + "golden_carrot": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "gold_ingot": 4, + "coal": 1 + }, + "1": { + "gold_ingot": 4 + } + } + }, + "multiagent_cooking_1_cooked_chicken_1_cooked_porkchop_blocked_access_1": { + "conversation": "Let's collaborate to make cooked_chicken and cooked_porkchop.", + "agent_count": 2, + "target": { + "cooked_chicken": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop. " + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_beetroot_soup_1_suspicious_stew_blocked_access_0_1": { + "conversation": "Let's collaborate to make suspicious_stew and beetroot_soup.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. ", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. " + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "bowl": 1, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_1_cooked_mutton_1_cooked_rabbit": { + "conversation": "Let's collaborate to make cooked_rabbit and cooked_mutton.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 3, + "difficulty_category": "easy" + }, + "difficulty": "easy", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_beetroot_soup_1_cooked_chicken_blocked_access_0": { + "conversation": "Let's collaborate to make beetroot_soup and cooked_chicken.", + "agent_count": 2, + "target": { + "beetroot_soup": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. ", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_cooked_chicken_1_cooked_mutton_blocked_access_0": { + "conversation": "Let's collaborate to make cooked_chicken and cooked_mutton.", + "agent_count": 2, + "target": { + "cooked_chicken": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton. ", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_beetroot_soup_1_cooked_mutton_blocked_access_0_1": { + "conversation": "Let's collaborate to make cooked_mutton and beetroot_soup.", + "agent_count": 2, + "target": { + "cooked_mutton": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [ + "0", + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. ", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. " + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 2, + "unique_target_items": 2, + "overall_difficulty_score": 6, + "difficulty_category": "hard" + }, + "difficulty": "hard", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_1_cooked_rabbit_1_suspicious_stew_blocked_access_0": { + "conversation": "Let's collaborate to make suspicious_stew and cooked_rabbit.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [ + "0" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit. ", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1, + "coal": 1 + }, + "1": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_1_cooked_mutton_1_cookie": { + "conversation": "Let's collaborate to make cookie and cooked_mutton.", + "agent_count": 2, + "target": { + "cookie": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton. Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "cocoa_beans": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_cooked_mutton_1_cooked_porkchop": { + "conversation": "Let's collaborate to make cooked_mutton and cooked_porkchop.", + "agent_count": 2, + "target": { + "cooked_mutton": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 3, + "difficulty_category": "easy" + }, + "difficulty": "easy", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_cooked_chicken_1_cooked_mutton_blocked_access_1": { + "conversation": "Let's collaborate to make cooked_mutton and cooked_chicken.", + "agent_count": 2, + "target": { + "cooked_mutton": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken. " + }, + "difficulty_metrics": { + "total_recipe_steps": 4, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "coal": 1 + } + } + }, + "multiagent_cooking_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's collaborate to make suspicious_stew and mushroom_stew.", + "agent_count": 2, + "target": { + "suspicious_stew": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "difficulty_metrics": { + "total_recipe_steps": 6, + "blocked_agents_count": 0, + "unique_target_items": 2, + "overall_difficulty_score": 4, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "bowl": 1, + "dandelion": 1 + }, + "1": { + "bowl": 1 + } + } + }, + "multiagent_cooking_1_beetroot_soup_1_cooked_rabbit_blocked_access_1": { + "conversation": "Let's collaborate to make cooked_rabbit and beetroot_soup.", + "agent_count": 2, + "target": { + "cooked_rabbit": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [ + "1" + ], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup. " + }, + "difficulty_metrics": { + "total_recipe_steps": 5, + "blocked_agents_count": 1, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium", + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "bowl": 1 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_train_2_items/2_agent_hells_kitchen.json b/tasks/cooking_tasks/require_collab_train_2_items/2_agent_hells_kitchen.json new file mode 100644 index 0000000..311e554 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_train_2_items/2_agent_hells_kitchen.json @@ -0,0 +1,1667 @@ +{ + "multiagent_cooking_mushroom_stew_golden_carrot_hells_kitchen": { + "conversation": "We need to make mushroom_stew and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "mushroom_stew", + "golden_carrot" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make mushroom_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make golden_carrot, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: From your inventory or other agents get a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_mushroom_stew_suspicious_stew_hells_kitchen": { + "conversation": "We need to make mushroom_stew and suspicious_stew together. You are supposed to make suspicious_stew and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "mushroom_stew", + "suspicious_stew" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make mushroom_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: From your inventory or other agents get a bowl and 1 dandelion\nStep 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make suspicious_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: From your inventory or other agents get a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_mushroom_stew_cooked_rabbit_hells_kitchen": { + "conversation": "We need to make mushroom_stew and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "mushroom_stew", + "cooked_rabbit" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make mushroom_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_rabbit, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: From your inventory or other agents get a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_mushroom_stew_cooked_mutton_hells_kitchen": { + "conversation": "We need to make mushroom_stew and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "mushroom_stew", + "cooked_mutton" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make mushroom_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_mutton, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: From your inventory or other agents get a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_mushroom_stew_cooked_chicken_hells_kitchen": { + "conversation": "We need to make mushroom_stew and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "mushroom_stew", + "cooked_chicken" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make mushroom_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_chicken, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: From your inventory or other agents get a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_mushroom_stew_cooked_porkchop_hells_kitchen": { + "conversation": "We need to make mushroom_stew and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "mushroom_stew", + "cooked_porkchop" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make mushroom_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_porkchop, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: From your inventory or other agents get a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_mushroom_stew_beetroot_soup_hells_kitchen": { + "conversation": "We need to make mushroom_stew and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "mushroom_stew", + "beetroot_soup" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make mushroom_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: From your inventory or other agents get a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make beetroot_soup, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: From your inventory or other agents get a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_mushroom_stew_pumpkin_pie_hells_kitchen": { + "conversation": "We need to make mushroom_stew and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "mushroom_stew", + "pumpkin_pie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make mushroom_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Get 1 egg from your inventory or other bots\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make pumpkin_pie, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: From your inventory or other agents get a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_mushroom_stew_cookie_hells_kitchen": { + "conversation": "We need to make mushroom_stew and cookie together. You are supposed to make cookie and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "mushroom_stew", + "cookie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make mushroom_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Get 1 cocoa bean from your inventory or other agents.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cookie, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: From your inventory or other agents get a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_golden_carrot_suspicious_stew_hells_kitchen": { + "conversation": "We need to make golden_carrot and suspicious_stew together. You are supposed to make suspicious_stew and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_carrot", + "suspicious_stew" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_carrot, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: From your inventory or other agents get a bowl and 1 dandelion\nStep 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make suspicious_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_golden_carrot_cooked_rabbit_hells_kitchen": { + "conversation": "We need to make golden_carrot and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_carrot", + "cooked_rabbit" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_carrot, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_rabbit, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_golden_carrot_cooked_mutton_hells_kitchen": { + "conversation": "We need to make golden_carrot and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_carrot", + "cooked_mutton" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_carrot, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_mutton, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_golden_carrot_cooked_chicken_hells_kitchen": { + "conversation": "We need to make golden_carrot and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_carrot", + "cooked_chicken" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_carrot, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_chicken, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_golden_carrot_cooked_porkchop_hells_kitchen": { + "conversation": "We need to make golden_carrot and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_carrot", + "cooked_porkchop" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_carrot, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_porkchop, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_golden_carrot_beetroot_soup_hells_kitchen": { + "conversation": "We need to make golden_carrot and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_carrot", + "beetroot_soup" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_carrot, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: From your inventory or other agents get a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make beetroot_soup, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_golden_carrot_pumpkin_pie_hells_kitchen": { + "conversation": "We need to make golden_carrot and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_carrot", + "pumpkin_pie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_carrot, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Get 1 egg from your inventory or other bots\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make pumpkin_pie, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_golden_carrot_cookie_hells_kitchen": { + "conversation": "We need to make golden_carrot and cookie together. You are supposed to make cookie and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "golden_carrot", + "cookie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make golden_carrot, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Get 1 cocoa bean from your inventory or other agents.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cookie, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_suspicious_stew_cooked_rabbit_hells_kitchen": { + "conversation": "We need to make suspicious_stew and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "suspicious_stew", + "cooked_rabbit" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make suspicious_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_rabbit, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: From your inventory or other agents get a bowl and 1 dandelion\nStep 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_suspicious_stew_cooked_mutton_hells_kitchen": { + "conversation": "We need to make suspicious_stew and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "suspicious_stew", + "cooked_mutton" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make suspicious_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_mutton, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: From your inventory or other agents get a bowl and 1 dandelion\nStep 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_suspicious_stew_cooked_chicken_hells_kitchen": { + "conversation": "We need to make suspicious_stew and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "suspicious_stew", + "cooked_chicken" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make suspicious_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_chicken, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: From your inventory or other agents get a bowl and 1 dandelion\nStep 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_suspicious_stew_cooked_porkchop_hells_kitchen": { + "conversation": "We need to make suspicious_stew and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "suspicious_stew", + "cooked_porkchop" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make suspicious_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_porkchop, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: From your inventory or other agents get a bowl and 1 dandelion\nStep 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_suspicious_stew_beetroot_soup_hells_kitchen": { + "conversation": "We need to make suspicious_stew and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "suspicious_stew", + "beetroot_soup" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make suspicious_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: From your inventory or other agents get a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make beetroot_soup, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: From your inventory or other agents get a bowl and 1 dandelion\nStep 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_suspicious_stew_pumpkin_pie_hells_kitchen": { + "conversation": "We need to make suspicious_stew and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "suspicious_stew", + "pumpkin_pie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make suspicious_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Get 1 egg from your inventory or other bots\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make pumpkin_pie, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: From your inventory or other agents get a bowl and 1 dandelion\nStep 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_suspicious_stew_cookie_hells_kitchen": { + "conversation": "We need to make suspicious_stew and cookie together. You are supposed to make cookie and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "suspicious_stew", + "cookie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make suspicious_stew, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Get 1 cocoa bean from your inventory or other agents.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cookie, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: From your inventory or other agents get a bowl and 1 dandelion\nStep 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_cooked_rabbit_cooked_mutton_hells_kitchen": { + "conversation": "We need to make cooked_rabbit and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_rabbit", + "cooked_mutton" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_rabbit, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_mutton, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_cooked_rabbit_cooked_chicken_hells_kitchen": { + "conversation": "We need to make cooked_rabbit and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_rabbit", + "cooked_chicken" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_rabbit, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_chicken, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_cooked_rabbit_cooked_porkchop_hells_kitchen": { + "conversation": "We need to make cooked_rabbit and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_rabbit", + "cooked_porkchop" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_rabbit, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_porkchop, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_cooked_rabbit_beetroot_soup_hells_kitchen": { + "conversation": "We need to make cooked_rabbit and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_rabbit", + "beetroot_soup" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_rabbit, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: From your inventory or other agents get a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make beetroot_soup, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_cooked_rabbit_pumpkin_pie_hells_kitchen": { + "conversation": "We need to make cooked_rabbit and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_rabbit", + "pumpkin_pie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_rabbit, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Get 1 egg from your inventory or other bots\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make pumpkin_pie, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_cooked_rabbit_cookie_hells_kitchen": { + "conversation": "We need to make cooked_rabbit and cookie together. You are supposed to make cookie and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_rabbit", + "cookie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_rabbit, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Get 1 cocoa bean from your inventory or other agents.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cookie, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_cooked_mutton_cooked_chicken_hells_kitchen": { + "conversation": "We need to make cooked_mutton and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_mutton", + "cooked_chicken" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_mutton, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_chicken, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_cooked_mutton_cooked_porkchop_hells_kitchen": { + "conversation": "We need to make cooked_mutton and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_mutton", + "cooked_porkchop" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_mutton, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_porkchop, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_cooked_mutton_beetroot_soup_hells_kitchen": { + "conversation": "We need to make cooked_mutton and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_mutton", + "beetroot_soup" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_mutton, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: From your inventory or other agents get a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make beetroot_soup, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_cooked_mutton_pumpkin_pie_hells_kitchen": { + "conversation": "We need to make cooked_mutton and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_mutton", + "pumpkin_pie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_mutton, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Get 1 egg from your inventory or other bots\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make pumpkin_pie, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_cooked_mutton_cookie_hells_kitchen": { + "conversation": "We need to make cooked_mutton and cookie together. You are supposed to make cookie and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_mutton", + "cookie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_mutton, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Get 1 cocoa bean from your inventory or other agents.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cookie, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_cooked_chicken_cooked_porkchop_hells_kitchen": { + "conversation": "We need to make cooked_chicken and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_chicken", + "cooked_porkchop" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_chicken, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cooked_porkchop, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_cooked_chicken_beetroot_soup_hells_kitchen": { + "conversation": "We need to make cooked_chicken and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_chicken", + "beetroot_soup" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_chicken, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: From your inventory or other agents get a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make beetroot_soup, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_cooked_chicken_pumpkin_pie_hells_kitchen": { + "conversation": "We need to make cooked_chicken and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_chicken", + "pumpkin_pie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_chicken, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Get 1 egg from your inventory or other bots\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make pumpkin_pie, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_cooked_chicken_cookie_hells_kitchen": { + "conversation": "We need to make cooked_chicken and cookie together. You are supposed to make cookie and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_chicken", + "cookie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_chicken, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Get 1 cocoa bean from your inventory or other agents.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cookie, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_cooked_porkchop_beetroot_soup_hells_kitchen": { + "conversation": "We need to make cooked_porkchop and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_porkchop", + "beetroot_soup" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_porkchop, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: From your inventory or other agents get a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make beetroot_soup, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_cooked_porkchop_pumpkin_pie_hells_kitchen": { + "conversation": "We need to make cooked_porkchop and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_porkchop", + "pumpkin_pie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_porkchop, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Get 1 egg from your inventory or other bots\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make pumpkin_pie, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 8, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_cooked_porkchop_cookie_hells_kitchen": { + "conversation": "We need to make cooked_porkchop and cookie together. You are supposed to make cookie and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "cooked_porkchop", + "cookie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make cooked_porkchop, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Get 1 cocoa bean from your inventory or other agents.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cookie, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Get coal from your inventory or other agents.\nStep 3: Put coal in the furnace\nStep 4: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_beetroot_soup_pumpkin_pie_hells_kitchen": { + "conversation": "We need to make beetroot_soup and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make beetroot_soup, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "beetroot_soup", + "pumpkin_pie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make beetroot_soup, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Get 1 egg from your inventory or other bots\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make pumpkin_pie, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: From your inventory or other agents get a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_beetroot_soup_cookie_hells_kitchen": { + "conversation": "We need to make beetroot_soup and cookie together. You are supposed to make cookie and I am supposed to make beetroot_soup, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "beetroot_soup", + "cookie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make beetroot_soup, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Get 1 cocoa bean from your inventory or other agents.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cookie, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: From your inventory or other agents get a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 6, + "max_steps_per_recipe": 3, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + }, + "multiagent_cooking_pumpkin_pie_cookie_hells_kitchen": { + "conversation": "We need to make pumpkin_pie and cookie together. You are supposed to make cookie and I am supposed to make pumpkin_pie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", + "agent_count": 2, + "target": [ + "pumpkin_pie", + "cookie" + ], + "type": "cooking", + "timeout": 300, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "You need to make pumpkin_pie, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Get 1 cocoa bean from your inventory or other agents.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", + "1": "You need to make cookie, but you don't have the recipe for it, your partner has it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Get 1 egg from your inventory or other bots\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." + }, + "task_type": "cooking", + "difficulty_metrics": { + "total_recipe_steps": 7, + "max_steps_per_recipe": 4, + "unique_target_items": 2, + "overall_difficulty_score": 5, + "difficulty_category": "medium" + }, + "difficulty": "medium" + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_train_2_items/3_agent.json b/tasks/cooking_tasks/require_collab_train_2_items/3_agent.json new file mode 100644 index 0000000..8e40b3b --- /dev/null +++ b/tasks/cooking_tasks/require_collab_train_2_items/3_agent.json @@ -0,0 +1,670 @@ +{ + "multiagent_cooking_2_1_cooked_chicken_1_golden_carrot": { + "conversation": "Let's work together to make cooked_chicken, golden_carrot.", + "agent_count": 3, + "target": { + "cooked_chicken": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "coal": 1, + "gold_ingot": 3 + }, + "1": { + "gold_ingot": 3 + }, + "2": { + "gold_ingot": 2 + } + } + }, + "multiagent_cooking_2_1_cooked_mutton_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cooked_mutton.", + "agent_count": 3, + "target": { + "golden_carrot": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 3 + }, + "1": { + "gold_ingot": 3 + }, + "2": { + "gold_ingot": 2, + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_cookie_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cookie.", + "agent_count": 3, + "target": { + "golden_carrot": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 3 + }, + "1": { + "gold_ingot": 3 + }, + "2": { + "gold_ingot": 2, + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_2_1_cookie_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, cookie.", + "agent_count": 3, + "target": { + "suspicious_stew": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "dandelion": 1 + }, + "2": { + "cocoa_beans": 1 + } + } + }, + "multiagent_cooking_2_1_mushroom_stew_1_suspicious_stew": { + "conversation": "Let's work together to make mushroom_stew, suspicious_stew.", + "agent_count": 3, + "target": { + "mushroom_stew": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew. Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "bowl": 1 + }, + "2": { + "bowl": 0, + "dandelion": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_chicken_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, cooked_chicken.", + "agent_count": 3, + "target": { + "suspicious_stew": 1, + "cooked_chicken": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "dandelion": 1 + }, + "2": { + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_rabbit_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cooked_rabbit.", + "agent_count": 3, + "target": { + "golden_carrot": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 3 + }, + "1": { + "gold_ingot": 3 + }, + "2": { + "gold_ingot": 2, + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_golden_carrot_1_mushroom_stew": { + "conversation": "Let's work together to make golden_carrot, mushroom_stew.", + "agent_count": 3, + "target": { + "golden_carrot": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 3 + }, + "1": { + "gold_ingot": 3 + }, + "2": { + "gold_ingot": 2, + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_golden_carrot_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, golden_carrot.", + "agent_count": 3, + "target": { + "pumpkin_pie": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "egg": 1, + "gold_ingot": 3 + }, + "1": { + "gold_ingot": 3 + }, + "2": { + "gold_ingot": 2 + } + } + }, + "multiagent_cooking_2_1_cooked_porkchop_1_golden_carrot": { + "conversation": "Let's work together to make cooked_porkchop, golden_carrot.", + "agent_count": 3, + "target": { + "cooked_porkchop": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "coal": 1, + "gold_ingot": 3 + }, + "1": { + "gold_ingot": 3 + }, + "2": { + "gold_ingot": 2 + } + } + }, + "multiagent_cooking_2_1_cooked_mutton_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_mutton, suspicious_stew.", + "agent_count": 3, + "target": { + "cooked_mutton": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew. Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "bowl": 1 + }, + "2": { + "dandelion": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_porkchop_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, cooked_porkchop.", + "agent_count": 3, + "target": { + "suspicious_stew": 1, + "cooked_porkchop": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "dandelion": 1 + }, + "2": { + "coal": 1 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, beetroot_soup.", + "agent_count": 3, + "target": { + "suspicious_stew": 1, + "beetroot_soup": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "bowl": 1 + }, + "2": { + "bowl": 0, + "dandelion": 1 + } + } + }, + "multiagent_cooking_2_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's work together to make golden_carrot, suspicious_stew.", + "agent_count": 3, + "target": { + "golden_carrot": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 3, + "dandelion": 1 + }, + "1": { + "gold_ingot": 3 + }, + "2": { + "gold_ingot": 2, + "bowl": 1 + } + } + }, + "multiagent_cooking_2_1_pumpkin_pie_1_suspicious_stew": { + "conversation": "Let's work together to make suspicious_stew, pumpkin_pie.", + "agent_count": 3, + "target": { + "suspicious_stew": 1, + "pumpkin_pie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ], + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']", + "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie. Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']" + }, + "initial_inventory": { + "0": { + "bowl": 1 + }, + "1": { + "dandelion": 1 + }, + "2": { + "egg": 1 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_golden_carrot": { + "conversation": "Let's work together to make beetroot_soup, golden_carrot.", + "agent_count": 3, + "target": { + "beetroot_soup": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "gold_ingot": 3 + }, + "1": { + "gold_ingot": 3 + }, + "2": { + "gold_ingot": 2 + } + } + }, + "multiagent_cooking_2_1_cooked_rabbit_1_suspicious_stew": { + "conversation": "Let's work together to make cooked_rabbit, suspicious_stew.", + "agent_count": 3, + "target": { + "cooked_rabbit": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "initial_inventory": { + "0": { + "coal": 1 + }, + "1": { + "bowl": 1 + }, + "2": { + "dandelion": 1 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_train_2_items/4_agent.json b/tasks/cooking_tasks/require_collab_train_2_items/4_agent.json new file mode 100644 index 0000000..bebbab1 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_train_2_items/4_agent.json @@ -0,0 +1,386 @@ +{ + "multiagent_cooking_2_1_cooked_chicken_1_golden_carrot": { + "conversation": "Let's work together to make cooked_chicken, golden_carrot.", + "agent_count": 4, + "target": { + "cooked_chicken": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "coal": 1, + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 2 + } + } + }, + "multiagent_cooking_2_1_cooked_mutton_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cooked_mutton.", + "agent_count": 4, + "target": { + "golden_carrot": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 2, + "coal": 1 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 2 + } + } + }, + "multiagent_cooking_2_1_cookie_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cookie.", + "agent_count": 4, + "target": { + "golden_carrot": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 2, + "cocoa_beans": 1 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 2 + } + } + }, + "multiagent_cooking_2_1_cooked_rabbit_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cooked_rabbit.", + "agent_count": 4, + "target": { + "golden_carrot": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 2, + "coal": 1 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 2 + } + } + }, + "multiagent_cooking_2_1_golden_carrot_1_mushroom_stew": { + "conversation": "Let's work together to make golden_carrot, mushroom_stew.", + "agent_count": 4, + "target": { + "golden_carrot": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 2, + "bowl": 1 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 2 + } + } + }, + "multiagent_cooking_2_1_golden_carrot_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, golden_carrot.", + "agent_count": 4, + "target": { + "pumpkin_pie": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "egg": 1, + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 2 + } + } + }, + "multiagent_cooking_2_1_cooked_porkchop_1_golden_carrot": { + "conversation": "Let's work together to make cooked_porkchop, golden_carrot.", + "agent_count": 4, + "target": { + "cooked_porkchop": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "coal": 1, + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 2 + } + } + }, + "multiagent_cooking_2_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's work together to make golden_carrot, suspicious_stew.", + "agent_count": 4, + "target": { + "golden_carrot": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 2, + "bowl": 1 + }, + "1": { + "gold_ingot": 2, + "dandelion": 1 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 2 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_golden_carrot": { + "conversation": "Let's work together to make beetroot_soup, golden_carrot.", + "agent_count": 4, + "target": { + "beetroot_soup": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 2 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_train_2_items/5_agent.json b/tasks/cooking_tasks/require_collab_train_2_items/5_agent.json new file mode 100644 index 0000000..426c5d1 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_train_2_items/5_agent.json @@ -0,0 +1,413 @@ +{ + "multiagent_cooking_2_1_cooked_chicken_1_golden_carrot": { + "conversation": "Let's work together to make cooked_chicken, golden_carrot.", + "agent_count": 5, + "target": { + "cooked_chicken": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_chicken": [ + "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the raw chicken." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. Recipe for cooked_chicken:\n['Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the raw chicken.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "coal": 1, + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_mutton_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cooked_mutton.", + "agent_count": 5, + "target": { + "golden_carrot": 1, + "cooked_mutton": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_mutton": [ + "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the mutton." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_mutton:\n['Step 1: Kill a sheep and pick up 1 mutton that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the mutton.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 1, + "coal": 1 + }, + "4": { + "gold_ingot": 1 + } + } + }, + "multiagent_cooking_2_1_cookie_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cookie.", + "agent_count": 5, + "target": { + "golden_carrot": 1, + "cookie": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cookie": [ + "Step 1: Go to the farm and collect 2 wheat.", + "Step 2: Get 1 cocoa bean from your inventory or other agents.", + "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cookie:\n['Step 1: Go to the farm and collect 2 wheat.', 'Step 2: Get 1 cocoa bean from your inventory or other agents.', 'Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 1, + "cocoa_beans": 1 + }, + "4": { + "gold_ingot": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_rabbit_1_golden_carrot": { + "conversation": "Let's work together to make golden_carrot, cooked_rabbit.", + "agent_count": 5, + "target": { + "golden_carrot": 1, + "cooked_rabbit": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "cooked_rabbit": [ + "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 2: Go to furnace and use it to cook the raw rabbit." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for cooked_rabbit:\n['Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to furnace and use it to cook the raw rabbit.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 1, + "coal": 1 + }, + "4": { + "gold_ingot": 1 + } + } + }, + "multiagent_cooking_2_1_golden_carrot_1_mushroom_stew": { + "conversation": "Let's work together to make golden_carrot, mushroom_stew.", + "agent_count": 5, + "target": { + "golden_carrot": 1, + "mushroom_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "mushroom_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for mushroom_stew:\n['Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 1, + "bowl": 1 + }, + "4": { + "gold_ingot": 1 + } + } + }, + "multiagent_cooking_2_1_golden_carrot_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, golden_carrot.", + "agent_count": 5, + "target": { + "pumpkin_pie": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "egg": 1, + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_porkchop_1_golden_carrot": { + "conversation": "Let's work together to make cooked_porkchop, golden_carrot.", + "agent_count": 5, + "target": { + "cooked_porkchop": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "coal": 1, + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 1 + } + } + }, + "multiagent_cooking_2_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's work together to make golden_carrot, suspicious_stew.", + "agent_count": 5, + "target": { + "golden_carrot": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 1, + "bowl": 1 + }, + "4": { + "gold_ingot": 1, + "dandelion": 1 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_golden_carrot": { + "conversation": "Let's work together to make beetroot_soup, golden_carrot.", + "agent_count": 5, + "target": { + "beetroot_soup": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 1 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/require_collab_train_2_items/5_agent_remaining.json b/tasks/cooking_tasks/require_collab_train_2_items/5_agent_remaining.json new file mode 100644 index 0000000..b358973 --- /dev/null +++ b/tasks/cooking_tasks/require_collab_train_2_items/5_agent_remaining.json @@ -0,0 +1,185 @@ +{ + "multiagent_cooking_2_1_golden_carrot_1_pumpkin_pie": { + "conversation": "Let's work together to make pumpkin_pie, golden_carrot.", + "agent_count": 5, + "target": { + "pumpkin_pie": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "pumpkin_pie": [ + "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", + "Step 2: Get 1 egg from your inventory or other bots", + "Step 3: Go to the crafting table and craft the sugar cane into sugar.", + "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. Recipe for pumpkin_pie:\n['Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.', 'Step 2: Get 1 egg from your inventory or other bots', 'Step 3: Go to the crafting table and craft the sugar cane into sugar.', 'Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "egg": 1, + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 1 + } + } + }, + "multiagent_cooking_2_1_cooked_porkchop_1_golden_carrot": { + "conversation": "Let's work together to make cooked_porkchop, golden_carrot.", + "agent_count": 5, + "target": { + "cooked_porkchop": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "cooked_porkchop": [ + "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", + "Step 2: Get coal from your inventory or other agents.", + "Step 3: Put coal in the furnace", + "Step 4: Go to furnace and use it to cook the porkchop." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. Recipe for cooked_porkchop:\n['Step 1: Kill a pig and pick up 1 porkchop that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the porkchop.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "coal": 1, + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 1 + } + } + }, + "multiagent_cooking_2_1_golden_carrot_1_suspicious_stew": { + "conversation": "Let's work together to make golden_carrot, suspicious_stew.", + "agent_count": 5, + "target": { + "golden_carrot": 1, + "suspicious_stew": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ], + "suspicious_stew": [ + "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", + "Step 2: From your inventory or other agents get a bowl and 1 dandelion", + "Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']", + "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']Recipe for suspicious_stew:\n['Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.', 'Step 2: From your inventory or other agents get a bowl and 1 dandelion', 'Step 3: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.']" + }, + "initial_inventory": { + "0": { + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 1, + "bowl": 1 + }, + "4": { + "gold_ingot": 1, + "dandelion": 1 + } + } + }, + "multiagent_cooking_2_1_beetroot_soup_1_golden_carrot": { + "conversation": "Let's work together to make beetroot_soup, golden_carrot.", + "agent_count": 5, + "target": { + "beetroot_soup": 1, + "golden_carrot": 1 + }, + "type": "cooking", + "timeout": 500, + "recipes": { + "beetroot_soup": [ + "Step 1: Go to the farm and collect 6 beetroot.", + "Step 2: From your inventory or other agents get a bowl.", + "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." + ], + "golden_carrot": [ + "Step 1: Go to the farm and collect 1 carrot.", + "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", + "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." + ] + }, + "blocked_access_to_recipe": [], + "goal": { + "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']", + "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. Recipe for beetroot_soup:\n['Step 1: Go to the farm and collect 6 beetroot.', 'Step 2: From your inventory or other agents get a bowl.', 'Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.']Recipe for golden_carrot:\n['Step 1: Go to the farm and collect 1 carrot.', 'Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.', 'Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.']" + }, + "initial_inventory": { + "0": { + "bowl": 1, + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2 + }, + "2": { + "gold_ingot": 2 + }, + "3": { + "gold_ingot": 1 + }, + "4": { + "gold_ingot": 1 + } + } + } +} \ No newline at end of file diff --git a/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json b/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json deleted file mode 100644 index 940cb92..0000000 --- a/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json +++ /dev/null @@ -1,270 +0,0 @@ -{ - "multiagent_cooking_2_1_bread_1_golden_apple": { - "conversation": "Let's work together to make golden_apple, bread.", - "agent_count": 2, - "target": { - "golden_apple": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - } - }, - "multiagent_cooking_2_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make golden_apple, rabbit_stew.", - "agent_count": 2, - "target": { - "golden_apple": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_2_1_bread_1_cake": { - "conversation": "Let's work together to make cake, bread.", - "agent_count": 2, - "target": { - "cake": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 cake, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - } - }, - "multiagent_cooking_2_1_baked_potato_1_golden_apple": { - "conversation": "Let's work together to make baked_potato, golden_apple.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - } - }, - "multiagent_cooking_2_1_baked_potato_1_rabbit_stew": { - "conversation": "Let's work together to make baked_potato, rabbit_stew.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_2_1_bread_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, bread.", - "agent_count": 2, - "target": { - "rabbit_stew": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - } - }, - "multiagent_cooking_2_1_baked_potato_1_bread": { - "conversation": "Let's work together to make bread, baked_potato.", - "agent_count": 2, - "target": { - "bread": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - }, - "multiagent_cooking_2_1_baked_potato_1_cake": { - "conversation": "Let's work together to make baked_potato, cake.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } - }, - "multiagent_cooking_2_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make golden_apple, cooked_beef.", - "agent_count": 2, - "target": { - "golden_apple": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_2_1_bread_1_cooked_beef": { - "conversation": "Let's work together to make bread, cooked_beef.", - "agent_count": 2, - "target": { - "bread": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/test_tasks/3_agent_cooking_test_tasks.json b/tasks/cooking_tasks/test_tasks/3_agent_cooking_test_tasks.json deleted file mode 100644 index 805acc5..0000000 --- a/tasks/cooking_tasks/test_tasks/3_agent_cooking_test_tasks.json +++ /dev/null @@ -1,312 +0,0 @@ -{ - "multiagent_cooking_3_1_baked_potato_1_bread_1_cake": { - "conversation": "Let's work together to make bread, baked_potato, cake.", - "agent_count": 3, - "target": { - "bread": 1, - "baked_potato": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } - }, - "multiagent_cooking_3_1_cake_1_golden_apple": { - "conversation": "Let's work together to make golden_apple, cake.", - "agent_count": 3, - "target": { - "golden_apple": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 cake. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 cake. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "2": "Collaborate with agents around you to make 1 golden_apple, 1 cake. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } - }, - "multiagent_cooking_3_1_baked_potato_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make golden_apple, cooked_beef, baked_potato.", - "agent_count": 3, - "target": { - "golden_apple": 1, - "cooked_beef": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "2": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - }, - "multiagent_cooking_3_1_bread_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make cooked_beef, bread, golden_apple.", - "agent_count": 3, - "target": { - "cooked_beef": 1, - "bread": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - } - }, - "multiagent_cooking_3_1_baked_potato_1_cake": { - "conversation": "Let's work together to make baked_potato, cake.", - "agent_count": 3, - "target": { - "baked_potato": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "2": "Collaborate with agents around you to make 1 baked_potato, 1 cake. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } - }, - "multiagent_cooking_3_1_bread_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, bread, golden_apple.", - "agent_count": 3, - "target": { - "rabbit_stew": 1, - "bread": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - } - }, - "multiagent_cooking_3_1_baked_potato_1_bread_1_cooked_beef": { - "conversation": "Let's work together to make bread, baked_potato, cooked_beef.", - "agent_count": 3, - "target": { - "bread": 1, - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_3_1_baked_potato_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, baked_potato.", - "agent_count": 3, - "target": { - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - }, - "multiagent_cooking_3_1_cake_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make cooked_beef, cake, golden_apple.", - "agent_count": 3, - "target": { - "cooked_beef": 1, - "cake": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - } - }, - "multiagent_cooking_3_1_bread_1_cooked_beef": { - "conversation": "Let's work together to make cooked_beef, bread.", - "agent_count": 3, - "target": { - "cooked_beef": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/test_tasks/4_agent_cooking_test_tasks.json b/tasks/cooking_tasks/test_tasks/4_agent_cooking_test_tasks.json deleted file mode 100644 index 88b2d6a..0000000 --- a/tasks/cooking_tasks/test_tasks/4_agent_cooking_test_tasks.json +++ /dev/null @@ -1,397 +0,0 @@ -{ - "multiagent_cooking_4_1_bread_1_cake_1_cooked_beef": { - "conversation": "Let's work together to make cake, bread, cooked_beef.", - "agent_count": 4, - "target": { - "cake": 1, - "bread": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "2": "Collaborate with agents around you to make 1 cake, 1 bread, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "3": "Collaborate with agents around you to make 1 cake, 1 bread, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_4_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, cooked_beef, cake, golden_apple.", - "agent_count": 4, - "target": { - "rabbit_stew": 1, - "cooked_beef": 1, - "cake": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef, 1 cake, 1 golden_apple. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef, 1 cake, 1 golden_apple. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef, 1 cake, 1 golden_apple. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "3": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef, 1 cake, 1 golden_apple. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - } - }, - "multiagent_cooking_4_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew": { - "conversation": "Let's work together to make baked_potato, rabbit_stew, cooked_beef, cake.", - "agent_count": 4, - "target": { - "baked_potato": 1, - "rabbit_stew": 1, - "cooked_beef": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew, 1 cooked_beef, 1 cake. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew, 1 cooked_beef, 1 cake. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "2": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew, 1 cooked_beef, 1 cake. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "3": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew, 1 cooked_beef, 1 cake. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } - }, - "multiagent_cooking_4_1_baked_potato_1_bread_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make bread, golden_apple, rabbit_stew, baked_potato.", - "agent_count": 4, - "target": { - "bread": 1, - "golden_apple": 1, - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 golden_apple, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 bread, 1 golden_apple, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "2": "Collaborate with agents around you to make 1 bread, 1 golden_apple, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "3": "Collaborate with agents around you to make 1 bread, 1 golden_apple, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - }, - "multiagent_cooking_4_1_cake_1_cooked_beef_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, cooked_beef, cake.", - "agent_count": 4, - "target": { - "rabbit_stew": 1, - "cooked_beef": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef, 1 cake. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef, 1 cake. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef, 1 cake. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "3": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef, 1 cake. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } - }, - "multiagent_cooking_4_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, bread, baked_potato, cooked_beef.", - "agent_count": 4, - "target": { - "rabbit_stew": 1, - "bread": 1, - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 baked_potato, 1 cooked_beef. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 baked_potato, 1 cooked_beef. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 baked_potato, 1 cooked_beef. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "3": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 baked_potato, 1 cooked_beef. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_4_1_baked_potato_1_cooked_beef_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, cooked_beef, baked_potato.", - "agent_count": 4, - "target": { - "rabbit_stew": 1, - "cooked_beef": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "3": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - }, - "multiagent_cooking_4_1_bread_1_cake_1_cooked_beef_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, cooked_beef, cake, bread.", - "agent_count": 4, - "target": { - "rabbit_stew": 1, - "cooked_beef": 1, - "cake": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef, 1 cake, 1 bread. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef, 1 cake, 1 bread. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef, 1 cake, 1 bread. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "3": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef, 1 cake, 1 bread. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - } - }, - "multiagent_cooking_4_1_bread_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make golden_apple, rabbit_stew, bread.", - "agent_count": 4, - "target": { - "golden_apple": 1, - "rabbit_stew": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew, 1 bread. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew, 1 bread. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "2": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew, 1 bread. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "3": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew, 1 bread. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - } - }, - "multiagent_cooking_4_1_baked_potato_1_cake_1_cooked_beef": { - "conversation": "Let's work together to make baked_potato, cooked_beef, cake.", - "agent_count": 4, - "target": { - "baked_potato": 1, - "cooked_beef": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef, 1 cake. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef, 1 cake. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "2": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef, 1 cake. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "3": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef, 1 cake. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/test_tasks/4_agent_cooking_test_tasks_long_timeout.json b/tasks/cooking_tasks/test_tasks/4_agent_cooking_test_tasks_long_timeout.json deleted file mode 100644 index 6545850..0000000 --- a/tasks/cooking_tasks/test_tasks/4_agent_cooking_test_tasks_long_timeout.json +++ /dev/null @@ -1,393 +0,0 @@ -{ - "multiagent_cooking_4_1_bread_1_cake_1_cooked_mutton": { - "conversation": "Let's work together to make cake, cooked_mutton, bread.", - "agent_count": 4, - "target": { - "cake": 1, - "cooked_mutton": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 cooked_mutton, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 cake, 1 cooked_mutton, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "2": "Collaborate with agents around you to make 1 cake, 1 cooked_mutton, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "3": "Collaborate with agents around you to make 1 cake, 1 cooked_mutton, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - } - }, - "multiagent_cooking_4_1_baked_potato_1_cake_1_cookie_1_rabbit_stew": { - "conversation": "Let's work together to make cake, cookie, baked_potato, rabbit_stew.", - "agent_count": 4, - "target": { - "cake": 1, - "cookie": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 cookie, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cake, 1 cookie, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "2": "Collaborate with agents around you to make 1 cake, 1 cookie, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "3": "Collaborate with agents around you to make 1 cake, 1 cookie, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_4_1_cooked_mutton_1_cookie_1_rabbit_stew": { - "conversation": "Let's work together to make cookie, rabbit_stew, cooked_mutton.", - "agent_count": 4, - "target": { - "cookie": 1, - "rabbit_stew": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 rabbit_stew, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 cookie, 1 rabbit_stew, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 cookie, 1 rabbit_stew, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "3": "Collaborate with agents around you to make 1 cookie, 1 rabbit_stew, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_4_1_cooked_chicken_1_golden_carrot_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, golden_carrot, cooked_chicken.", - "agent_count": 4, - "target": { - "rabbit_stew": 1, - "golden_carrot": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_carrot, 1 cooked_chicken. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_carrot, 1 cooked_chicken. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_carrot, 1 cooked_chicken. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "3": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_carrot, 1 cooked_chicken. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - } - }, - "multiagent_cooking_4_1_cake_1_cooked_mutton_1_golden_apple": { - "conversation": "Let's work together to make cake, golden_apple, cooked_mutton.", - "agent_count": 4, - "target": { - "cake": 1, - "golden_apple": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 golden_apple, 1 cooked_mutton. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 cake, 1 golden_apple, 1 cooked_mutton. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 cake, 1 golden_apple, 1 cooked_mutton. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "3": "Collaborate with agents around you to make 1 cake, 1 golden_apple, 1 cooked_mutton. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_4_1_cake_1_cooked_porkchop_1_golden_apple_1_golden_carrot": { - "conversation": "Let's work together to make cake, golden_apple, golden_carrot, cooked_porkchop.", - "agent_count": 4, - "target": { - "cake": 1, - "golden_apple": 1, - "golden_carrot": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 golden_apple, 1 golden_carrot, 1 cooked_porkchop. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 cake, 1 golden_apple, 1 golden_carrot, 1 cooked_porkchop. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "2": "Collaborate with agents around you to make 1 cake, 1 golden_apple, 1 golden_carrot, 1 cooked_porkchop. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "3": "Collaborate with agents around you to make 1 cake, 1 golden_apple, 1 golden_carrot, 1 cooked_porkchop. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - } - }, - "multiagent_cooking_4_1_beetroot_soup_1_cooked_beef_1_cookie_1_rabbit_stew": { - "conversation": "Let's work together to make beetroot_soup, rabbit_stew, cooked_beef, cookie.", - "agent_count": 4, - "target": { - "beetroot_soup": 1, - "rabbit_stew": 1, - "cooked_beef": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 rabbit_stew, 1 cooked_beef, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 rabbit_stew, 1 cooked_beef, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 rabbit_stew, 1 cooked_beef, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "3": "Collaborate with agents around you to make 1 beetroot_soup, 1 rabbit_stew, 1 cooked_beef, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - } - }, - "multiagent_cooking_4_1_cooked_mutton_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make golden_apple, rabbit_stew, cooked_mutton.", - "agent_count": 4, - "target": { - "golden_apple": 1, - "rabbit_stew": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew, 1 cooked_mutton. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew, 1 cooked_mutton. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew, 1 cooked_mutton. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "3": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew, 1 cooked_mutton. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_4_1_cake_1_cooked_beef_1_mushroom_stew_1_suspicious_stew": { - "conversation": "Let's work together to make cake, mushroom_stew, suspicious_stew, cooked_beef.", - "agent_count": 4, - "target": { - "cake": 1, - "mushroom_stew": 1, - "suspicious_stew": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 cake, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "2": "Collaborate with agents around you to make 1 cake, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "3": "Collaborate with agents around you to make 1 cake, 1 mushroom_stew, 1 suspicious_stew, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_4_1_cooked_rabbit_1_cookie_1_golden_carrot_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, cooked_rabbit, golden_carrot, cookie.", - "agent_count": 4, - "target": { - "mushroom_stew": 1, - "cooked_rabbit": 1, - "golden_carrot": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit, 1 golden_carrot, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit, 1 golden_carrot, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit, 1 golden_carrot, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "3": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_rabbit, 1 golden_carrot, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - } - } - } \ No newline at end of file diff --git a/tasks/cooking_tasks/test_tasks/5_agent_cooking_test_tasks.json b/tasks/cooking_tasks/test_tasks/5_agent_cooking_test_tasks.json deleted file mode 100644 index 3b9dbb1..0000000 --- a/tasks/cooking_tasks/test_tasks/5_agent_cooking_test_tasks.json +++ /dev/null @@ -1,455 +0,0 @@ -{ - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew": { - "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", - "agent_count": 5, - "target": { - "cooked_beef": 1, - "baked_potato": 1, - "cake": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "3": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "4": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", - "agent_count": 5, - "target": { - "bread": 1, - "cake": 1, - "golden_apple": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "2": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "3": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "4": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", - "agent_count": 5, - "target": { - "baked_potato": 1, - "bread": 1, - "cooked_beef": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "2": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "3": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "4": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", - "agent_count": 5, - "target": { - "cake": 1, - "bread": 1, - "golden_apple": 1, - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "2": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "3": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "4": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", - "agent_count": 5, - "target": { - "rabbit_stew": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "3": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "4": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - }, - "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", - "agent_count": 5, - "target": { - "bread": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "2": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "3": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "4": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", - "agent_count": 5, - "target": { - "cake": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "2": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "3": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "4": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", - "agent_count": 5, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "3": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "4": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", - "agent_count": 5, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "rabbit_stew": 1, - "bread": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "3": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "4": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew": { - "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", - "agent_count": 5, - "target": { - "bread": 1, - "cooked_beef": 1, - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "2": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "3": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "4": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/test_tasks/5_agent_cooking_test_tasks_long_timeout.json b/tasks/cooking_tasks/test_tasks/5_agent_cooking_test_tasks_long_timeout.json deleted file mode 100644 index 059aebc..0000000 --- a/tasks/cooking_tasks/test_tasks/5_agent_cooking_test_tasks_long_timeout.json +++ /dev/null @@ -1,455 +0,0 @@ -{ - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew": { - "conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.", - "agent_count": 5, - "target": { - "cooked_beef": 1, - "baked_potato": 1, - "cake": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "3": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "4": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.", - "agent_count": 5, - "target": { - "bread": 1, - "cake": 1, - "golden_apple": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "2": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "3": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "4": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.", - "agent_count": 5, - "target": { - "baked_potato": 1, - "bread": 1, - "cooked_beef": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "2": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "3": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "4": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple": { - "conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.", - "agent_count": 5, - "target": { - "cake": 1, - "bread": 1, - "golden_apple": 1, - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "2": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "3": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "4": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.", - "agent_count": 5, - "target": { - "rabbit_stew": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "2": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "3": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "4": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - }, - "multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.", - "agent_count": 5, - "target": { - "bread": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "2": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "3": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "4": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.", - "agent_count": 5, - "target": { - "cake": 1, - "rabbit_stew": 1, - "golden_apple": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "2": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "3": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "4": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - } - }, - "multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.", - "agent_count": 5, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "cake": 1, - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "3": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "4": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - } - }, - "multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.", - "agent_count": 5, - "target": { - "cooked_beef": 1, - "golden_apple": 1, - "rabbit_stew": 1, - "bread": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "2": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "3": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "4": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - } - }, - "multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew": { - "conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.", - "agent_count": 5, - "target": { - "bread": 1, - "cooked_beef": 1, - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 1500, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "2": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "3": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "4": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - } - } - } \ No newline at end of file diff --git a/tasks/cooking_tasks/test_tasks/hells_kitchen_test_tasks.json b/tasks/cooking_tasks/test_tasks/hells_kitchen_test_tasks.json deleted file mode 100644 index b9ce150..0000000 --- a/tasks/cooking_tasks/test_tasks/hells_kitchen_test_tasks.json +++ /dev/null @@ -1,1072 +0,0 @@ -{ - "multiagent_cooking_baked_potato_cake_hells_kitchen": { - "conversation": "We need to make baked_potato and cake together. You are supposed to make cake and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "baked_potato", - "cake" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets (already filled with milk).", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_mutton_mushroom_stew_hells_kitchen": { - "conversation": "We need to make cooked_mutton and mushroom_stew together. You are supposed to make mushroom_stew and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_mutton", - "mushroom_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_mutton_cake_hells_kitchen": { - "conversation": "We need to make cooked_mutton and cake together. You are supposed to make cake and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_mutton", - "cake" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets (already filled with milk).", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_mushroom_stew_baked_potato_hells_kitchen": { - "conversation": "We need to make mushroom_stew and baked_potato together. You are supposed to make baked_potato and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "mushroom_stew", - "baked_potato" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_golden_carrot_cooked_mutton_hells_kitchen": { - "conversation": "We need to make golden_carrot and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_carrot", - "cooked_mutton" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_baked_potato_mushroom_stew_hells_kitchen": { - "conversation": "We need to make baked_potato and mushroom_stew together. You are supposed to make mushroom_stew and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "baked_potato", - "mushroom_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_bread_baked_potato_hells_kitchen": { - "conversation": "We need to make bread and baked_potato together. You are supposed to make baked_potato and I am supposed to make bread, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "bread", - "baked_potato" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cake_bread_hells_kitchen": { - "conversation": "We need to make cake and bread together. You are supposed to make bread and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cake", - "bread" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets (already filled with milk).", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_bread_cake_hells_kitchen": { - "conversation": "We need to make bread and cake together. You are supposed to make cake and I am supposed to make bread, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "bread", - "cake" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets (already filled with milk).", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_mushroom_stew_cooked_mutton_hells_kitchen": { - "conversation": "We need to make mushroom_stew and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "mushroom_stew", - "cooked_mutton" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_mushroom_stew_cake_hells_kitchen": { - "conversation": "We need to make mushroom_stew and cake together. You are supposed to make cake and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "mushroom_stew", - "cake" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets (already filled with milk).", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_mushroom_stew_golden_carrot_hells_kitchen": { - "conversation": "We need to make mushroom_stew and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "mushroom_stew", - "golden_carrot" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_bread_mushroom_stew_hells_kitchen": { - "conversation": "We need to make bread and mushroom_stew together. You are supposed to make mushroom_stew and I am supposed to make bread, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "bread", - "mushroom_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_golden_carrot_cake_hells_kitchen": { - "conversation": "We need to make golden_carrot and cake together. You are supposed to make cake and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_carrot", - "cake" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets (already filled with milk).", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_golden_carrot_bread_hells_kitchen": { - "conversation": "We need to make golden_carrot and bread together. You are supposed to make bread and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_carrot", - "bread" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_baked_potato_cooked_mutton_hells_kitchen": { - "conversation": "We need to make baked_potato and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "baked_potato", - "cooked_mutton" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cake_mushroom_stew_hells_kitchen": { - "conversation": "We need to make cake and mushroom_stew together. You are supposed to make mushroom_stew and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cake", - "mushroom_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets (already filled with milk).", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_bread_cooked_mutton_hells_kitchen": { - "conversation": "We need to make bread and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make bread, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "bread", - "cooked_mutton" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cake_cooked_mutton_hells_kitchen": { - "conversation": "We need to make cake and cooked_mutton together. You are supposed to make cooked_mutton and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cake", - "cooked_mutton" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets (already filled with milk).", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_golden_carrot_baked_potato_hells_kitchen": { - "conversation": "We need to make golden_carrot and baked_potato together. You are supposed to make baked_potato and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_carrot", - "baked_potato" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cake_golden_carrot_hells_kitchen": { - "conversation": "We need to make cake and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cake", - "golden_carrot" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets (already filled with milk).", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_bread_golden_carrot_hells_kitchen": { - "conversation": "We need to make bread and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make bread, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "bread", - "golden_carrot" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_golden_carrot_mushroom_stew_hells_kitchen": { - "conversation": "We need to make golden_carrot and mushroom_stew together. You are supposed to make mushroom_stew and I am supposed to make golden_carrot, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_carrot", - "mushroom_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_mutton_baked_potato_hells_kitchen": { - "conversation": "We need to make cooked_mutton and baked_potato together. You are supposed to make baked_potato and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_mutton", - "baked_potato" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_mushroom_stew_bread_hells_kitchen": { - "conversation": "We need to make mushroom_stew and bread together. You are supposed to make bread and I am supposed to make mushroom_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "mushroom_stew", - "bread" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make mushroom_stew, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make mushroom_stew. You have their recipe:\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_baked_potato_bread_hells_kitchen": { - "conversation": "We need to make baked_potato and bread together. You are supposed to make bread and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "baked_potato", - "bread" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_mutton_golden_carrot_hells_kitchen": { - "conversation": "We need to make cooked_mutton and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_mutton", - "golden_carrot" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_baked_potato_golden_carrot_hells_kitchen": { - "conversation": "We need to make baked_potato and golden_carrot together. You are supposed to make golden_carrot and I am supposed to make baked_potato, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "baked_potato", - "golden_carrot" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make golden_carrot. You have their recipe:\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_carrot, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cake_baked_potato_hells_kitchen": { - "conversation": "We need to make cake and baked_potato together. You are supposed to make baked_potato and I am supposed to make cake, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cake", - "baked_potato" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets (already filled with milk).", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cake, but you don't have the recipe for it!\n\nYour partner needs to make baked_potato. You have their recipe:\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make baked_potato, but you don't have the recipe for it!\n\nYour partner needs to make cake. You have their recipe:\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets (already filled with milk).\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 5, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_mutton_bread_hells_kitchen": { - "conversation": "We need to make cooked_mutton and bread together. You are supposed to make bread and I am supposed to make cooked_mutton, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_mutton", - "bread" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_mutton, but you don't have the recipe for it!\n\nYour partner needs to make bread. You have their recipe:\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make bread, but you don't have the recipe for it!\n\nYour partner needs to make cooked_mutton. You have their recipe:\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/test_tasks/test_tasks.json b/tasks/cooking_tasks/test_tasks/test_tasks.json deleted file mode 100644 index 665ede2..0000000 --- a/tasks/cooking_tasks/test_tasks/test_tasks.json +++ /dev/null @@ -1,1051 +0,0 @@ -{ - "multiagent_cooking_1_cake_1_golden_apple": { - "conversation": "Let's collaborate to make cake and golden_apple.", - "agent_count": 2, - "target": { - "cake": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 golden_apple. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 cake, 1 golden_apple. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cake_1_cooked_beef_blocked_access_0_1": { - "conversation": "Let's collaborate to make cake and cooked_beef.", - "agent_count": 2, - "target": { - "cake": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 cooked_beef. ", - "1": "Collaborate with agents around you to make 1 cake, 1 cooked_beef. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_cake_1_golden_apple_blocked_access_0_1": { - "conversation": "Let's collaborate to make cake and golden_apple.", - "agent_count": 2, - "target": { - "cake": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 golden_apple. ", - "1": "Collaborate with agents around you to make 1 cake, 1 golden_apple. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_rabbit_stew_blocked_access_0_1": { - "conversation": "Let's work together to make rabbit_stew.", - "agent_count": 2, - "target": { - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew. ", - "1": "Collaborate with agents around you to make 1 rabbit_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 2, - "unique_target_items": 1, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_bread_blocked_access_1": { - "conversation": "Let's work together to make bread.", - "agent_count": 2, - "target": { - "bread": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 bread. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 bread. " - }, - "difficulty_metrics": { - "total_recipe_steps": 2, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_cake_1_cooked_beef_blocked_access_0": { - "conversation": "Let's collaborate to make cooked_beef and cake.", - "agent_count": 2, - "target": { - "cooked_beef": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 cake. ", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_baked_potato_1_cake": { - "conversation": "Let's collaborate to make baked_potato and cake.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_baked_potato_1_cooked_beef_blocked_access_0_1": { - "conversation": "Let's collaborate to make baked_potato and cooked_beef.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. ", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_bread_1_golden_apple": { - "conversation": "Let's collaborate to make bread and golden_apple.", - "agent_count": 2, - "target": { - "bread": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 golden_apple. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 bread, 1 golden_apple. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_bread_1_rabbit_stew_blocked_access_0": { - "conversation": "Let's collaborate to make rabbit_stew and bread.", - "agent_count": 2, - "target": { - "rabbit_stew": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. ", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_baked_potato_1_cooked_beef": { - "conversation": "Let's collaborate to make baked_potato and cooked_beef.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_baked_potato": { - "conversation": "Let's work together to make baked_potato.", - "agent_count": 2, - "target": { - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 baked_potato. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - }, - "difficulty_metrics": { - "total_recipe_steps": 2, - "blocked_agents_count": 0, - "unique_target_items": 1, - "overall_difficulty_score": 2, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_baked_potato_1_cake_blocked_access_0_1": { - "conversation": "Let's collaborate to make cake and baked_potato.", - "agent_count": 2, - "target": { - "cake": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 baked_potato. ", - "1": "Collaborate with agents around you to make 1 cake, 1 baked_potato. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_bread_1_cooked_beef": { - "conversation": "Let's collaborate to make bread and cooked_beef.", - "agent_count": 2, - "target": { - "bread": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_cooked_beef_1_golden_apple_blocked_access_0_1": { - "conversation": "Let's collaborate to make cooked_beef and golden_apple.", - "agent_count": 2, - "target": { - "cooked_beef": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple. ", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's collaborate to make golden_apple and rabbit_stew.", - "agent_count": 2, - "target": { - "golden_apple": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_bread_1_golden_apple_blocked_access_1": { - "conversation": "Let's collaborate to make golden_apple and bread.", - "agent_count": 2, - "target": { - "golden_apple": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_beef_blocked_access_0": { - "conversation": "Let's work together to make cooked_beef.", - "agent_count": 2, - "target": { - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef. ", - "1": "Collaborate with agents around you to make 1 cooked_beef. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - }, - "difficulty_metrics": { - "total_recipe_steps": 2, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_cooked_beef_1_rabbit_stew": { - "conversation": "Let's collaborate to make rabbit_stew and cooked_beef.", - "agent_count": 2, - "target": { - "rabbit_stew": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_baked_potato_1_cake_blocked_access_0": { - "conversation": "Let's collaborate to make baked_potato and cake.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. ", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cake_1_golden_apple_blocked_access_0": { - "conversation": "Let's collaborate to make golden_apple and cake.", - "agent_count": 2, - "target": { - "golden_apple": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 cake. ", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 cake. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_rabbit_stew_blocked_access_1": { - "conversation": "Let's work together to make rabbit_stew.", - "agent_count": 2, - "target": { - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 rabbit_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cake_1_golden_apple_blocked_access_1": { - "conversation": "Let's collaborate to make golden_apple and cake.", - "agent_count": 2, - "target": { - "golden_apple": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 cake. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 cake. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_baked_potato_1_golden_apple": { - "conversation": "Let's collaborate to make baked_potato and golden_apple.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_cake_blocked_access_0": { - "conversation": "Let's work together to make cake.", - "agent_count": 2, - "target": { - "cake": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cake. ", - "1": "Collaborate with agents around you to make 1 cake. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_golden_apple": { - "conversation": "Let's work together to make golden_apple.", - "agent_count": 2, - "target": { - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 golden_apple. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - }, - "difficulty_metrics": { - "total_recipe_steps": 2, - "blocked_agents_count": 0, - "unique_target_items": 1, - "overall_difficulty_score": 2, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_baked_potato_1_rabbit_stew_blocked_access_1": { - "conversation": "Let's collaborate to make rabbit_stew and baked_potato.", - "agent_count": 2, - "target": { - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. " - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_baked_potato_blocked_access_0": { - "conversation": "Let's work together to make baked_potato.", - "agent_count": 2, - "target": { - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato. ", - "1": "Collaborate with agents around you to make 1 baked_potato. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - }, - "difficulty_metrics": { - "total_recipe_steps": 2, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew.", - "agent_count": 2, - "target": { - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 rabbit_stew. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_baked_potato_1_rabbit_stew": { - "conversation": "Let's collaborate to make baked_potato and rabbit_stew.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/test_tasks/test_tasks_longer_timeout.json b/tasks/cooking_tasks/test_tasks/test_tasks_longer_timeout.json deleted file mode 100644 index 7b1f817..0000000 --- a/tasks/cooking_tasks/test_tasks/test_tasks_longer_timeout.json +++ /dev/null @@ -1,1051 +0,0 @@ -{ - "multiagent_cooking_1_cake_1_golden_apple": { - "conversation": "Let's collaborate to make cake and golden_apple.", - "agent_count": 2, - "target": { - "cake": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 golden_apple. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 cake, 1 golden_apple. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cake_1_cooked_beef_blocked_access_0_1": { - "conversation": "Let's collaborate to make cake and cooked_beef.", - "agent_count": 2, - "target": { - "cake": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 cooked_beef. ", - "1": "Collaborate with agents around you to make 1 cake, 1 cooked_beef. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_cake_1_golden_apple_blocked_access_0_1": { - "conversation": "Let's collaborate to make cake and golden_apple.", - "agent_count": 2, - "target": { - "cake": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 golden_apple. ", - "1": "Collaborate with agents around you to make 1 cake, 1 golden_apple. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_rabbit_stew_blocked_access_0_1": { - "conversation": "Let's work together to make rabbit_stew.", - "agent_count": 2, - "target": { - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew. ", - "1": "Collaborate with agents around you to make 1 rabbit_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 2, - "unique_target_items": 1, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_bread_blocked_access_1": { - "conversation": "Let's work together to make bread.", - "agent_count": 2, - "target": { - "bread": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 bread. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 bread. " - }, - "difficulty_metrics": { - "total_recipe_steps": 2, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_cake_1_cooked_beef_blocked_access_0": { - "conversation": "Let's collaborate to make cooked_beef and cake.", - "agent_count": 2, - "target": { - "cooked_beef": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 cake. ", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_baked_potato_1_cake": { - "conversation": "Let's collaborate to make baked_potato and cake.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_baked_potato_1_cooked_beef_blocked_access_0_1": { - "conversation": "Let's collaborate to make baked_potato and cooked_beef.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. ", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_bread_1_golden_apple": { - "conversation": "Let's collaborate to make bread and golden_apple.", - "agent_count": 2, - "target": { - "bread": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 golden_apple. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 bread, 1 golden_apple. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_bread_1_rabbit_stew_blocked_access_0": { - "conversation": "Let's collaborate to make rabbit_stew and bread.", - "agent_count": 2, - "target": { - "rabbit_stew": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. ", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread." - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_baked_potato_1_cooked_beef": { - "conversation": "Let's collaborate to make baked_potato and cooked_beef.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cooked_beef. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_baked_potato": { - "conversation": "Let's work together to make baked_potato.", - "agent_count": 2, - "target": { - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 baked_potato. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - }, - "difficulty_metrics": { - "total_recipe_steps": 2, - "blocked_agents_count": 0, - "unique_target_items": 1, - "overall_difficulty_score": 2, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_baked_potato_1_cake_blocked_access_0_1": { - "conversation": "Let's collaborate to make cake and baked_potato.", - "agent_count": 2, - "target": { - "cake": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cake, 1 baked_potato. ", - "1": "Collaborate with agents around you to make 1 cake, 1 baked_potato. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_bread_1_cooked_beef": { - "conversation": "Let's collaborate to make bread and cooked_beef.", - "agent_count": 2, - "target": { - "bread": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_cooked_beef_1_golden_apple_blocked_access_0_1": { - "conversation": "Let's collaborate to make cooked_beef and golden_apple.", - "agent_count": 2, - "target": { - "cooked_beef": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple. ", - "1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_golden_apple_1_rabbit_stew": { - "conversation": "Let's collaborate to make golden_apple and rabbit_stew.", - "agent_count": 2, - "target": { - "golden_apple": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_bread_1_golden_apple_blocked_access_1": { - "conversation": "Let's collaborate to make golden_apple and bread.", - "agent_count": 2, - "target": { - "golden_apple": 1, - "bread": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "bread": [ - "Step 1: Go to the farm and collect 3 wheat.", - "Step 2: Go to the crafting table and use the wheat to craft bread." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_beef_blocked_access_0": { - "conversation": "Let's work together to make cooked_beef.", - "agent_count": 2, - "target": { - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_beef. ", - "1": "Collaborate with agents around you to make 1 cooked_beef. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - }, - "difficulty_metrics": { - "total_recipe_steps": 2, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_cooked_beef_1_rabbit_stew": { - "conversation": "Let's collaborate to make rabbit_stew and cooked_beef.", - "agent_count": 2, - "target": { - "rabbit_stew": 1, - "cooked_beef": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 cooked_beef. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef." - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_baked_potato_1_cake_blocked_access_0": { - "conversation": "Let's collaborate to make baked_potato and cake.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. ", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cake_1_golden_apple_blocked_access_0": { - "conversation": "Let's collaborate to make golden_apple and cake.", - "agent_count": 2, - "target": { - "golden_apple": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 cake. ", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 cake. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_rabbit_stew_blocked_access_1": { - "conversation": "Let's work together to make rabbit_stew.", - "agent_count": 2, - "target": { - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 rabbit_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cake_1_golden_apple_blocked_access_1": { - "conversation": "Let's collaborate to make golden_apple and cake.", - "agent_count": 2, - "target": { - "golden_apple": 1, - "cake": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple, 1 cake. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.", - "1": "Collaborate with agents around you to make 1 golden_apple, 1 cake. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_baked_potato_1_golden_apple": { - "conversation": "Let's collaborate to make baked_potato and golden_apple.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_cake_blocked_access_0": { - "conversation": "Let's work together to make cake.", - "agent_count": 2, - "target": { - "cake": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "cake": [ - "Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.", - "Step 2: Go to the chest and grab 3 milk buckets.", - "Step 3: Go to the chest and grab an egg.", - "Step 4: Go to the crafting table and craft the sugarcane into sugar.", - "Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cake. ", - "1": "Collaborate with agents around you to make 1 cake. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake." - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_golden_apple": { - "conversation": "Let's work together to make golden_apple.", - "agent_count": 2, - "target": { - "golden_apple": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_apple. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.", - "1": "Collaborate with agents around you to make 1 golden_apple. \n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - }, - "difficulty_metrics": { - "total_recipe_steps": 2, - "blocked_agents_count": 0, - "unique_target_items": 1, - "overall_difficulty_score": 2, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_baked_potato_1_rabbit_stew_blocked_access_1": { - "conversation": "Let's collaborate to make rabbit_stew and baked_potato.", - "agent_count": 2, - "target": { - "rabbit_stew": 1, - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.", - "1": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. " - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_baked_potato_blocked_access_0": { - "conversation": "Let's work together to make baked_potato.", - "agent_count": 2, - "target": { - "baked_potato": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato. ", - "1": "Collaborate with agents around you to make 1 baked_potato. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato." - }, - "difficulty_metrics": { - "total_recipe_steps": 2, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_rabbit_stew": { - "conversation": "Let's work together to make rabbit_stew.", - "agent_count": 2, - "target": { - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 rabbit_stew. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 rabbit_stew. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_baked_potato_1_rabbit_stew": { - "conversation": "Let's collaborate to make baked_potato and rabbit_stew.", - "agent_count": 2, - "target": { - "baked_potato": 1, - "rabbit_stew": 1 - }, - "type": "cooking", - "timeout": 900, - "recipes": { - "baked_potato": [ - "Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).", - "Step 2: Go to the furnace and bake the potato." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.", - "1": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 8, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - } - } \ No newline at end of file diff --git a/tasks/cooking_tasks/train_tasks/2_agent_cooking_train_tasks.json b/tasks/cooking_tasks/train_tasks/2_agent_cooking_train_tasks.json deleted file mode 100644 index ac2254a..0000000 --- a/tasks/cooking_tasks/train_tasks/2_agent_cooking_train_tasks.json +++ /dev/null @@ -1,1190 +0,0 @@ -{ - "multiagent_cooking_2_1_cooked_chicken_1_golden_carrot": { - "conversation": "Let's work together to make cooked_chicken, golden_carrot.", - "agent_count": 2, - "target": { - "cooked_chicken": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - } - }, - "multiagent_cooking_2_1_cooked_mutton_1_golden_carrot": { - "conversation": "Let's work together to make golden_carrot, cooked_mutton.", - "agent_count": 2, - "target": { - "golden_carrot": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_2_1_cookie_1_mushroom_stew": { - "conversation": "Let's work together to make cookie, mushroom_stew.", - "agent_count": 2, - "target": { - "cookie": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - } - }, - "multiagent_cooking_2_1_cookie_1_golden_carrot": { - "conversation": "Let's work together to make golden_carrot, cookie.", - "agent_count": 2, - "target": { - "golden_carrot": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cookie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - } - }, - "multiagent_cooking_2_1_cooked_mutton_1_cooked_porkchop": { - "conversation": "Let's work together to make cooked_porkchop, cooked_mutton.", - "agent_count": 2, - "target": { - "cooked_porkchop": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_2_1_cookie_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, cookie.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cookie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - } - }, - "multiagent_cooking_2_1_mushroom_stew_1_suspicious_stew": { - "conversation": "Let's work together to make mushroom_stew, suspicious_stew.", - "agent_count": 2, - "target": { - "mushroom_stew": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - } - }, - "multiagent_cooking_2_1_cookie_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, cookie.", - "agent_count": 2, - "target": { - "pumpkin_pie": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cookie. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - } - }, - "multiagent_cooking_2_1_cooked_chicken_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, cooked_chicken.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_chicken. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - } - }, - "multiagent_cooking_2_1_cooked_chicken_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, cooked_chicken.", - "agent_count": 2, - "target": { - "mushroom_stew": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - } - }, - "multiagent_cooking_2_1_cooked_rabbit_1_golden_carrot": { - "conversation": "Let's work together to make golden_carrot, cooked_rabbit.", - "agent_count": 2, - "target": { - "golden_carrot": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_rabbit. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." - } - }, - "multiagent_cooking_2_1_golden_carrot_1_mushroom_stew": { - "conversation": "Let's work together to make golden_carrot, mushroom_stew.", - "agent_count": 2, - "target": { - "golden_carrot": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - } - }, - "multiagent_cooking_2_1_golden_carrot_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, golden_carrot.", - "agent_count": 2, - "target": { - "pumpkin_pie": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - } - }, - "multiagent_cooking_2_1_cooked_chicken_1_cooked_porkchop": { - "conversation": "Let's work together to make cooked_chicken, cooked_porkchop.", - "agent_count": 2, - "target": { - "cooked_chicken": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - } - }, - "multiagent_cooking_2_1_beetroot_soup_1_cooked_porkchop": { - "conversation": "Let's work together to make beetroot_soup, cooked_porkchop.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - } - }, - "multiagent_cooking_2_1_cooked_porkchop_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, cooked_porkchop.", - "agent_count": 2, - "target": { - "mushroom_stew": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_porkchop. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - } - }, - "multiagent_cooking_2_1_cooked_porkchop_1_golden_carrot": { - "conversation": "Let's work together to make cooked_porkchop, golden_carrot.", - "agent_count": 2, - "target": { - "cooked_porkchop": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - } - }, - "multiagent_cooking_2_1_cooked_porkchop_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_porkchop, pumpkin_pie.", - "agent_count": 2, - "target": { - "cooked_porkchop": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - } - }, - "multiagent_cooking_2_1_cooked_mutton_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_mutton, suspicious_stew.", - "agent_count": 2, - "target": { - "cooked_mutton": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - } - }, - "multiagent_cooking_2_1_mushroom_stew_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, mushroom_stew.", - "agent_count": 2, - "target": { - "pumpkin_pie": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 mushroom_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - } - }, - "multiagent_cooking_2_1_cooked_rabbit_1_mushroom_stew": { - "conversation": "Let's work together to make cooked_rabbit, mushroom_stew.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - } - }, - "multiagent_cooking_2_1_cooked_chicken_1_cookie": { - "conversation": "Let's work together to make cookie, cooked_chicken.", - "agent_count": 2, - "target": { - "cookie": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - } - }, - "multiagent_cooking_2_1_cooked_chicken_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, cooked_chicken.", - "agent_count": 2, - "target": { - "pumpkin_pie": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - } - }, - "multiagent_cooking_2_1_cooked_mutton_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, cooked_mutton.", - "agent_count": 2, - "target": { - "mushroom_stew": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_2_1_cooked_porkchop_1_cooked_rabbit": { - "conversation": "Let's work together to make cooked_rabbit, cooked_porkchop.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - } - }, - "multiagent_cooking_2_1_cooked_porkchop_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, cooked_porkchop.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - } - }, - "multiagent_cooking_2_1_beetroot_soup_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, beetroot_soup.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - } - }, - "multiagent_cooking_2_1_cooked_rabbit_1_cookie": { - "conversation": "Let's work together to make cookie, cooked_rabbit.", - "agent_count": 2, - "target": { - "cookie": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_rabbit. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." - } - }, - "multiagent_cooking_2_1_golden_carrot_1_suspicious_stew": { - "conversation": "Let's work together to make golden_carrot, suspicious_stew.", - "agent_count": 2, - "target": { - "golden_carrot": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - } - }, - "multiagent_cooking_2_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, pumpkin_pie.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - } - }, - "multiagent_cooking_2_1_beetroot_soup_1_cookie": { - "conversation": "Let's work together to make beetroot_soup, cookie.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - } - }, - "multiagent_cooking_2_1_beetroot_soup_1_cooked_mutton": { - "conversation": "Let's work together to make cooked_mutton, beetroot_soup.", - "agent_count": 2, - "target": { - "cooked_mutton": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - } - }, - "multiagent_cooking_2_1_beetroot_soup_1_pumpkin_pie": { - "conversation": "Let's work together to make beetroot_soup, pumpkin_pie.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - } - }, - "multiagent_cooking_2_1_cooked_chicken_1_cooked_rabbit": { - "conversation": "Let's work together to make cooked_chicken, cooked_rabbit.", - "agent_count": 2, - "target": { - "cooked_chicken": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." - } - }, - "multiagent_cooking_2_1_cooked_porkchop_1_cookie": { - "conversation": "Let's work together to make cooked_porkchop, cookie.", - "agent_count": 2, - "target": { - "cooked_porkchop": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - } - }, - "multiagent_cooking_2_1_beetroot_soup_1_golden_carrot": { - "conversation": "Let's work together to make beetroot_soup, golden_carrot.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - } - }, - "multiagent_cooking_2_1_cooked_rabbit_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_rabbit, suspicious_stew.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - } - }, - "multiagent_cooking_2_1_cooked_mutton_1_cooked_rabbit": { - "conversation": "Let's work together to make cooked_rabbit, cooked_mutton.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_2_1_cooked_chicken_1_cooked_mutton": { - "conversation": "Let's work together to make cooked_mutton, cooked_chicken.", - "agent_count": 2, - "target": { - "cooked_mutton": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - } - }, - "multiagent_cooking_2_1_beetroot_soup_1_cooked_rabbit": { - "conversation": "Let's work together to make beetroot_soup, cooked_rabbit.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." - } - }, - "multiagent_cooking_2_1_cooked_mutton_1_cookie": { - "conversation": "Let's work together to make cookie, cooked_mutton.", - "agent_count": 2, - "target": { - "cookie": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_2_1_beetroot_soup_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, beetroot_soup.", - "agent_count": 2, - "target": { - "mushroom_stew": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - } - }, - "multiagent_cooking_2_1_cooked_rabbit_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, cooked_rabbit.", - "agent_count": 2, - "target": { - "pumpkin_pie": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_rabbit. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." - } - }, - "multiagent_cooking_2_1_beetroot_soup_1_cooked_chicken": { - "conversation": "Let's work together to make beetroot_soup, cooked_chicken.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - } - }, - "multiagent_cooking_2_1_cooked_mutton_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_mutton, pumpkin_pie.", - "agent_count": 2, - "target": { - "cooked_mutton": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/train_tasks/3_agent_cooking_train_tasks.json b/tasks/cooking_tasks/train_tasks/3_agent_cooking_train_tasks.json deleted file mode 100644 index bdcb851..0000000 --- a/tasks/cooking_tasks/train_tasks/3_agent_cooking_train_tasks.json +++ /dev/null @@ -1,3093 +0,0 @@ -{ - "multiagent_cooking_3_1_golden_carrot_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, pumpkin_pie, golden_carrot.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "pumpkin_pie": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_cooked_rabbit_1_cookie": { - "conversation": "Let's work together to make cooked_mutton, cooked_rabbit, cookie.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "cooked_rabbit": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_porkchop_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_porkchop, suspicious_stew, beetroot_soup.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "suspicious_stew": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_rabbit": { - "conversation": "Let's work together to make cooked_chicken, cooked_rabbit.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, cooked_mutton.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_mutton_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, cooked_chicken, cooked_mutton.", - "agent_count": 3, - "target": { - "pumpkin_pie": 1, - "cooked_chicken": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_mutton. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_mutton. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken, 1 cooked_mutton. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, cooked_porkchop.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken_1_suspicious_stew": { - "conversation": "Let's work together to make beetroot_soup, suspicious_stew, cooked_chicken.", - "agent_count": 3, - "target": { - "beetroot_soup": 1, - "suspicious_stew": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 suspicious_stew, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 suspicious_stew, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 suspicious_stew, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_cookie_1_suspicious_stew": { - "conversation": "Let's work together to make cookie, cooked_porkchop, suspicious_stew.", - "agent_count": 3, - "target": { - "cookie": 1, - "cooked_porkchop": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, pumpkin_pie, beetroot_soup.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "pumpkin_pie": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - } - }, - "multiagent_cooking_3_1_cookie_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, cookie.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_mutton_1_golden_carrot": { - "conversation": "Let's work together to make beetroot_soup, cooked_mutton, golden_carrot.", - "agent_count": 3, - "target": { - "beetroot_soup": 1, - "cooked_mutton": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton, 1 golden_carrot. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_mutton_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, cooked_mutton, cooked_chicken.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "cooked_mutton": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_golden_carrot_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, golden_carrot, cooked_porkchop.", - "agent_count": 3, - "target": { - "pumpkin_pie": 1, - "golden_carrot": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot, 1 cooked_porkchop. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot, 1 cooked_porkchop. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot, 1 cooked_porkchop. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - } - }, - "multiagent_cooking_3_1_cooked_rabbit_1_cookie_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_rabbit, pumpkin_pie, cookie.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "pumpkin_pie": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 cookie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 cookie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 cookie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - } - }, - "multiagent_cooking_3_1_golden_carrot_1_mushroom_stew": { - "conversation": "Let's work together to make golden_carrot, mushroom_stew.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_cookie": { - "conversation": "Let's work together to make cookie, cooked_porkchop.", - "agent_count": 3, - "target": { - "cookie": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_mushroom_stew_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_porkchop, mushroom_stew, pumpkin_pie.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "mushroom_stew": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - } - }, - "multiagent_cooking_3_1_cooked_rabbit_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_rabbit, suspicious_stew.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, cooked_chicken.", - "agent_count": 3, - "target": { - "pumpkin_pie": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_porkchop_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, beetroot_soup, cooked_porkchop.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "beetroot_soup": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_porkchop_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_porkchop, pumpkin_pie, beetroot_soup.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "pumpkin_pie": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_golden_carrot_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, golden_carrot, cooked_mutton.", - "agent_count": 3, - "target": { - "pumpkin_pie": 1, - "golden_carrot": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_mutton_1_golden_carrot": { - "conversation": "Let's work together to make golden_carrot, cooked_mutton, cooked_chicken.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "cooked_mutton": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_porkchop": { - "conversation": "Let's work together to make cooked_porkchop, cooked_chicken.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_mutton, pumpkin_pie.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, cooked_mutton.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_3_1_golden_carrot_1_mushroom_stew_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, mushroom_stew, golden_carrot.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "mushroom_stew": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cookie": { - "conversation": "Let's work together to make cookie, beetroot_soup.", - "agent_count": 3, - "target": { - "cookie": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "2": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_cooked_rabbit_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_rabbit, cooked_porkchop, suspicious_stew.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "cooked_porkchop": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - } - }, - "multiagent_cooking_3_1_cookie_1_pumpkin_pie": { - "conversation": "Let's work together to make cookie, pumpkin_pie.", - "agent_count": 3, - "target": { - "cookie": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "2": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cookie_1_pumpkin_pie": { - "conversation": "Let's work together to make cookie, pumpkin_pie, cooked_chicken.", - "agent_count": 3, - "target": { - "cookie": 1, - "pumpkin_pie": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 cookie, 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_mushroom_stew_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_mutton, suspicious_stew, mushroom_stew.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "suspicious_stew": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 mushroom_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 mushroom_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 suspicious_stew, 1 mushroom_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - } - }, - "multiagent_cooking_3_1_cooked_rabbit_1_golden_carrot": { - "conversation": "Let's work together to make cooked_rabbit, golden_carrot.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_golden_carrot_1_suspicious_stew": { - "conversation": "Let's work together to make golden_carrot, suspicious_stew, beetroot_soup.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "suspicious_stew": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - } - }, - "multiagent_cooking_3_1_cooked_rabbit_1_mushroom_stew": { - "conversation": "Let's work together to make cooked_rabbit, mushroom_stew.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - } - }, - "multiagent_cooking_3_1_golden_carrot_1_pumpkin_pie": { - "conversation": "Let's work together to make golden_carrot, pumpkin_pie.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_golden_carrot_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, cooked_mutton, golden_carrot.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "cooked_mutton": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 golden_carrot. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 golden_carrot. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton, 1 golden_carrot. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cookie_1_golden_carrot": { - "conversation": "Let's work together to make cookie, cooked_chicken, golden_carrot.", - "agent_count": 3, - "target": { - "cookie": 1, - "cooked_chicken": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken, 1 golden_carrot. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken, 1 golden_carrot. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_chicken, 1 golden_carrot. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_cooked_rabbit_1_golden_carrot": { - "conversation": "Let's work together to make cooked_mutton, cooked_rabbit, golden_carrot.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "cooked_rabbit": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 golden_carrot. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 golden_carrot. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_rabbit, 1 golden_carrot. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken": { - "conversation": "Let's work together to make beetroot_soup, cooked_chicken.", - "agent_count": 3, - "target": { - "beetroot_soup": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - } - }, - "multiagent_cooking_3_1_golden_carrot_1_suspicious_stew": { - "conversation": "Let's work together to make golden_carrot, suspicious_stew.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - } - }, - "multiagent_cooking_3_1_cooked_rabbit_1_golden_carrot_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_rabbit, pumpkin_pie, golden_carrot.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "pumpkin_pie": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 golden_carrot. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 golden_carrot. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie, 1 golden_carrot. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_cookie_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_porkchop, cookie, pumpkin_pie.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "cookie": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_rabbit": { - "conversation": "Let's work together to make cooked_rabbit, beetroot_soup.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_porkchop_1_cookie": { - "conversation": "Let's work together to make cookie, beetroot_soup, cooked_porkchop.", - "agent_count": 3, - "target": { - "cookie": 1, - "beetroot_soup": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "2": "Collaborate with agents around you to make 1 cookie, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_cookie_1_golden_carrot": { - "conversation": "Let's work together to make cooked_porkchop, cookie, golden_carrot.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "cookie": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie, 1 golden_carrot. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie, 1 golden_carrot. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cookie, 1 golden_carrot. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken_1_cooked_porkchop": { - "conversation": "Let's work together to make cooked_porkchop, beetroot_soup, cooked_chicken.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "beetroot_soup": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_golden_carrot_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_chicken, golden_carrot, pumpkin_pie.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "golden_carrot": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_rabbit_1_mushroom_stew": { - "conversation": "Let's work together to make cooked_chicken, cooked_rabbit, mushroom_stew.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "cooked_rabbit": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 mushroom_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 mushroom_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 mushroom_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_cooked_rabbit": { - "conversation": "Let's work together to make cooked_porkchop, cooked_rabbit.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." - } - }, - "multiagent_cooking_3_1_cookie_1_golden_carrot": { - "conversation": "Let's work together to make cookie, golden_carrot.", - "agent_count": 3, - "target": { - "cookie": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "2": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - } - }, - "multiagent_cooking_3_1_cooked_rabbit_1_mushroom_stew_1_suspicious_stew": { - "conversation": "Let's work together to make mushroom_stew, suspicious_stew, cooked_rabbit.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "suspicious_stew": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_rabbit. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_rabbit. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew, 1 cooked_rabbit. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_golden_carrot_1_mushroom_stew": { - "conversation": "Let's work together to make cooked_porkchop, golden_carrot, mushroom_stew.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "golden_carrot": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - } - }, - "multiagent_cooking_3_1_golden_carrot_1_mushroom_stew_1_pumpkin_pie": { - "conversation": "Let's work together to make mushroom_stew, golden_carrot, pumpkin_pie.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "golden_carrot": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 golden_carrot, 1 pumpkin_pie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_rabbit_1_cookie": { - "conversation": "Let's work together to make beetroot_soup, cooked_rabbit, cookie.", - "agent_count": 3, - "target": { - "beetroot_soup": 1, - "cooked_rabbit": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_mushroom_stew": { - "conversation": "Let's work together to make cooked_porkchop, mushroom_stew.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 mushroom_stew. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cookie_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, cookie, cooked_chicken.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "cookie": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cookie, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_golden_carrot_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, cooked_porkchop, golden_carrot.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "cooked_porkchop": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop, 1 golden_carrot. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_mushroom_stew": { - "conversation": "Let's work together to make beetroot_soup, mushroom_stew.", - "agent_count": 3, - "target": { - "beetroot_soup": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 mushroom_stew. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_mutton_1_cookie": { - "conversation": "Let's work together to make beetroot_soup, cookie, cooked_mutton.", - "agent_count": 3, - "target": { - "beetroot_soup": 1, - "cookie": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_mutton. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_mutton. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie, 1 cooked_mutton. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, beetroot_soup, cooked_chicken.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "beetroot_soup": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_mutton_1_cooked_porkchop": { - "conversation": "Let's work together to make cooked_chicken, cooked_porkchop, cooked_mutton.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "cooked_porkchop": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_golden_carrot": { - "conversation": "Let's work together to make golden_carrot, cooked_mutton.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cookie": { - "conversation": "Let's work together to make cooked_chicken, cookie.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cookie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - } - }, - "multiagent_cooking_3_1_cookie_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, pumpkin_pie, cookie.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "pumpkin_pie": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 cookie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 cookie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 cookie. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_mutton": { - "conversation": "Let's work together to make beetroot_soup, cooked_mutton.", - "agent_count": 3, - "target": { - "beetroot_soup": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_mutton. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_cooked_porkchop_1_cooked_rabbit": { - "conversation": "Let's work together to make cooked_mutton, cooked_porkchop, cooked_rabbit.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "cooked_porkchop": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 cooked_rabbit. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 cooked_rabbit. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop, 1 cooked_rabbit. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." - } - }, - "multiagent_cooking_3_1_cooked_rabbit_1_golden_carrot_1_mushroom_stew": { - "conversation": "Let's work together to make cooked_rabbit, golden_carrot, mushroom_stew.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "golden_carrot": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot, 1 mushroom_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_golden_carrot": { - "conversation": "Let's work together to make cooked_porkchop, golden_carrot.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 golden_carrot. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, beetroot_soup.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_porkchop, pumpkin_pie.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 pumpkin_pie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_cooked_rabbit_1_cookie": { - "conversation": "Let's work together to make cooked_porkchop, cooked_rabbit, cookie.", - "agent_count": 3, - "target": { - "cooked_porkchop": 1, - "cooked_rabbit": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit, 1 cookie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit, 1 cookie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit, 1 cookie. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - } - }, - "multiagent_cooking_3_1_mushroom_stew_1_suspicious_stew": { - "conversation": "Let's work together to make mushroom_stew, suspicious_stew.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 suspicious_stew. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_golden_carrot": { - "conversation": "Let's work together to make golden_carrot, beetroot_soup.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_chicken_1_cooked_mutton": { - "conversation": "Let's work together to make cooked_mutton, cooked_chicken, beetroot_soup.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "cooked_chicken": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_mushroom_stew": { - "conversation": "Let's work together to make mushroom_stew, cooked_chicken.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_mutton_1_cooked_rabbit": { - "conversation": "Let's work together to make cooked_rabbit, beetroot_soup, cooked_mutton.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "beetroot_soup": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_3_1_cooked_rabbit_1_cookie": { - "conversation": "Let's work together to make cooked_rabbit, cookie.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_porkchop_1_cooked_rabbit": { - "conversation": "Let's work together to make cooked_rabbit, beetroot_soup, cooked_porkchop.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "beetroot_soup": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_cooked_rabbit_1_mushroom_stew": { - "conversation": "Let's work together to make cooked_mutton, mushroom_stew, cooked_rabbit.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "mushroom_stew": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_rabbit. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_rabbit. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 mushroom_stew, 1 cooked_rabbit. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_cookie_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_mutton, cookie, suspicious_stew.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "cookie": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 suspicious_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 suspicious_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie, 1 suspicious_stew. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_porkchop_1_cookie": { - "conversation": "Let's work together to make cookie, cooked_porkchop, cooked_chicken.", - "agent_count": 3, - "target": { - "cookie": 1, - "cooked_porkchop": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_golden_carrot": { - "conversation": "Let's work together to make cooked_chicken, golden_carrot.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 golden_carrot. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - } - }, - "multiagent_cooking_3_1_cooked_rabbit_1_mushroom_stew_1_pumpkin_pie": { - "conversation": "Let's work together to make mushroom_stew, pumpkin_pie, cooked_rabbit.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "pumpkin_pie": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 pumpkin_pie, 1 cooked_rabbit. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 pumpkin_pie, 1 cooked_rabbit. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 pumpkin_pie, 1 cooked_rabbit. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." - } - }, - "multiagent_cooking_3_1_cooked_porkchop_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make pumpkin_pie, suspicious_stew, cooked_porkchop.", - "agent_count": 3, - "target": { - "pumpkin_pie": 1, - "suspicious_stew": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_porkchop. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_porkchop. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew, 1 cooked_porkchop. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_pumpkin_pie": { - "conversation": "Let's work together to make pumpkin_pie, beetroot_soup.", - "agent_count": 3, - "target": { - "pumpkin_pie": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "2": "Collaborate with agents around you to make 1 pumpkin_pie, 1 beetroot_soup. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_cooked_porkchop_1_cookie": { - "conversation": "Let's work together to make cookie, cooked_porkchop, cooked_mutton.", - "agent_count": 3, - "target": { - "cookie": 1, - "cooked_porkchop": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, pumpkin_pie, cooked_chicken.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "pumpkin_pie": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 pumpkin_pie, 1 cooked_chicken. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_cookie_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_mutton, pumpkin_pie, cookie.", - "agent_count": 3, - "target": { - "cooked_mutton": 1, - "pumpkin_pie": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 cooked_mutton, 1 pumpkin_pie, 1 cookie. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_mutton_1_cooked_rabbit": { - "conversation": "Let's work together to make cooked_chicken, cooked_rabbit, cooked_mutton.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "cooked_rabbit": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_rabbit_1_pumpkin_pie": { - "conversation": "Let's work together to make cooked_chicken, cooked_rabbit, pumpkin_pie.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "cooked_rabbit": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit, 1 pumpkin_pie. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_cooked_rabbit_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_rabbit, cooked_chicken, suspicious_stew.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "cooked_chicken": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - } - }, - "multiagent_cooking_3_1_cookie_1_golden_carrot_1_suspicious_stew": { - "conversation": "Let's work together to make golden_carrot, suspicious_stew, cookie.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "suspicious_stew": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cookie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cookie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "2": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew, 1 cookie. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_cookie_1_golden_carrot": { - "conversation": "Let's work together to make cookie, golden_carrot, cooked_mutton.", - "agent_count": 3, - "target": { - "cookie": 1, - "golden_carrot": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_3_1_cooked_mutton_1_cooked_rabbit": { - "conversation": "Let's work together to make cooked_rabbit, cooked_mutton.", - "agent_count": 3, - "target": { - "cooked_rabbit": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_mushroom_stew_1_pumpkin_pie": { - "conversation": "Let's work together to make mushroom_stew, beetroot_soup, pumpkin_pie.", - "agent_count": 3, - "target": { - "mushroom_stew": 1, - "beetroot_soup": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 pumpkin_pie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 pumpkin_pie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "2": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup, 1 pumpkin_pie. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_mutton_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew, beetroot_soup, cooked_mutton.", - "agent_count": 3, - "target": { - "suspicious_stew": 1, - "beetroot_soup": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 cooked_mutton. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 cooked_mutton. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "2": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup, 1 cooked_mutton. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - } - }, - "multiagent_cooking_3_1_beetroot_soup_1_cooked_porkchop": { - "conversation": "Let's work together to make beetroot_soup, cooked_porkchop.", - "agent_count": 3, - "target": { - "beetroot_soup": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "2": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - } - }, - "multiagent_cooking_3_1_cooked_chicken_1_suspicious_stew": { - "conversation": "Let's work together to make cooked_chicken, suspicious_stew.", - "agent_count": 3, - "target": { - "cooked_chicken": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 500, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "2": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - } - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/train_tasks/hells_kitchen_train_tasks.json b/tasks/cooking_tasks/train_tasks/hells_kitchen_train_tasks.json deleted file mode 100644 index 317257d..0000000 --- a/tasks/cooking_tasks/train_tasks/hells_kitchen_train_tasks.json +++ /dev/null @@ -1,3224 +0,0 @@ -{ - "multiagent_cooking_suspicious_stew_cooked_chicken_hells_kitchen": { - "conversation": "We need to make suspicious_stew and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "suspicious_stew", - "cooked_chicken" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_rabbit_stew_cooked_porkchop_hells_kitchen": { - "conversation": "We need to make rabbit_stew and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "rabbit_stew", - "cooked_porkchop" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_pumpkin_pie_cooked_chicken_hells_kitchen": { - "conversation": "We need to make pumpkin_pie and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make pumpkin_pie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "pumpkin_pie", - "cooked_chicken" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_suspicious_stew_cookie_hells_kitchen": { - "conversation": "We need to make suspicious_stew and cookie together. You are supposed to make cookie and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "suspicious_stew", - "cookie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_pumpkin_pie_beetroot_soup_hells_kitchen": { - "conversation": "We need to make pumpkin_pie and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make pumpkin_pie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "pumpkin_pie", - "beetroot_soup" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_suspicious_stew_cooked_porkchop_hells_kitchen": { - "conversation": "We need to make suspicious_stew and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "suspicious_stew", - "cooked_porkchop" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_chicken_beetroot_soup_hells_kitchen": { - "conversation": "We need to make cooked_chicken and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_chicken", - "beetroot_soup" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_golden_apple_suspicious_stew_hells_kitchen": { - "conversation": "We need to make golden_apple and suspicious_stew together. You are supposed to make suspicious_stew and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_apple", - "suspicious_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_chicken_golden_apple_hells_kitchen": { - "conversation": "We need to make cooked_chicken and golden_apple together. You are supposed to make golden_apple and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_chicken", - "golden_apple" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cookie_cooked_beef_hells_kitchen": { - "conversation": "We need to make cookie and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make cookie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cookie", - "cooked_beef" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_rabbit_stew_cookie_hells_kitchen": { - "conversation": "We need to make rabbit_stew and cookie together. You are supposed to make cookie and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "rabbit_stew", - "cookie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 9, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_rabbit_stew_pumpkin_pie_hells_kitchen": { - "conversation": "We need to make rabbit_stew and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "rabbit_stew", - "pumpkin_pie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 10, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_suspicious_stew_rabbit_stew_hells_kitchen": { - "conversation": "We need to make suspicious_stew and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "suspicious_stew", - "rabbit_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 9, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_beetroot_soup_suspicious_stew_hells_kitchen": { - "conversation": "We need to make beetroot_soup and suspicious_stew together. You are supposed to make suspicious_stew and I am supposed to make beetroot_soup, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "beetroot_soup", - "suspicious_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_suspicious_stew_golden_apple_hells_kitchen": { - "conversation": "We need to make suspicious_stew and golden_apple together. You are supposed to make golden_apple and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "suspicious_stew", - "golden_apple" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_beef_cooked_chicken_hells_kitchen": { - "conversation": "We need to make cooked_beef and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make cooked_beef, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_beef", - "cooked_chicken" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_beef_cookie_hells_kitchen": { - "conversation": "We need to make cooked_beef and cookie together. You are supposed to make cookie and I am supposed to make cooked_beef, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_beef", - "cookie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_suspicious_stew_cooked_beef_hells_kitchen": { - "conversation": "We need to make suspicious_stew and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "suspicious_stew", - "cooked_beef" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_golden_apple_cooked_porkchop_hells_kitchen": { - "conversation": "We need to make golden_apple and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_apple", - "cooked_porkchop" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_pumpkin_pie_golden_apple_hells_kitchen": { - "conversation": "We need to make pumpkin_pie and golden_apple together. You are supposed to make golden_apple and I am supposed to make pumpkin_pie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "pumpkin_pie", - "golden_apple" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cookie_beetroot_soup_hells_kitchen": { - "conversation": "We need to make cookie and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make cookie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cookie", - "beetroot_soup" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_beef_pumpkin_pie_hells_kitchen": { - "conversation": "We need to make cooked_beef and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make cooked_beef, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_beef", - "pumpkin_pie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_chicken_cooked_porkchop_hells_kitchen": { - "conversation": "We need to make cooked_chicken and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_chicken", - "cooked_porkchop" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_beetroot_soup_cookie_hells_kitchen": { - "conversation": "We need to make beetroot_soup and cookie together. You are supposed to make cookie and I am supposed to make beetroot_soup, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "beetroot_soup", - "cookie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_beetroot_soup_rabbit_stew_hells_kitchen": { - "conversation": "We need to make beetroot_soup and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make beetroot_soup, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "beetroot_soup", - "rabbit_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 9, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_cooked_chicken_pumpkin_pie_hells_kitchen": { - "conversation": "We need to make cooked_chicken and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_chicken", - "pumpkin_pie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_porkchop_cooked_beef_hells_kitchen": { - "conversation": "We need to make cooked_porkchop and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_porkchop", - "cooked_beef" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_porkchop_cookie_hells_kitchen": { - "conversation": "We need to make cooked_porkchop and cookie together. You are supposed to make cookie and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_porkchop", - "cookie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_rabbit_cooked_porkchop_hells_kitchen": { - "conversation": "We need to make cooked_rabbit and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_rabbit", - "cooked_porkchop" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_beetroot_soup_cooked_rabbit_hells_kitchen": { - "conversation": "We need to make beetroot_soup and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make beetroot_soup, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "beetroot_soup", - "cooked_rabbit" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_golden_apple_cooked_beef_hells_kitchen": { - "conversation": "We need to make golden_apple and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_apple", - "cooked_beef" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_rabbit_stew_cooked_chicken_hells_kitchen": { - "conversation": "We need to make rabbit_stew and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "rabbit_stew", - "cooked_chicken" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_porkchop_beetroot_soup_hells_kitchen": { - "conversation": "We need to make cooked_porkchop and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_porkchop", - "beetroot_soup" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_porkchop_golden_apple_hells_kitchen": { - "conversation": "We need to make cooked_porkchop and golden_apple together. You are supposed to make golden_apple and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_porkchop", - "golden_apple" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_rabbit_stew_cooked_rabbit_hells_kitchen": { - "conversation": "We need to make rabbit_stew and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "rabbit_stew", - "cooked_rabbit" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_chicken_cooked_beef_hells_kitchen": { - "conversation": "We need to make cooked_chicken and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_chicken", - "cooked_beef" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_golden_apple_pumpkin_pie_hells_kitchen": { - "conversation": "We need to make golden_apple and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_apple", - "pumpkin_pie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_pumpkin_pie_cooked_porkchop_hells_kitchen": { - "conversation": "We need to make pumpkin_pie and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make pumpkin_pie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "pumpkin_pie", - "cooked_porkchop" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_porkchop_rabbit_stew_hells_kitchen": { - "conversation": "We need to make cooked_porkchop and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_porkchop", - "rabbit_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_pumpkin_pie_rabbit_stew_hells_kitchen": { - "conversation": "We need to make pumpkin_pie and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make pumpkin_pie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "pumpkin_pie", - "rabbit_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 10, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_cookie_golden_apple_hells_kitchen": { - "conversation": "We need to make cookie and golden_apple together. You are supposed to make golden_apple and I am supposed to make cookie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cookie", - "golden_apple" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_beef_cooked_porkchop_hells_kitchen": { - "conversation": "We need to make cooked_beef and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make cooked_beef, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_beef", - "cooked_porkchop" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cookie_cooked_rabbit_hells_kitchen": { - "conversation": "We need to make cookie and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make cookie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cookie", - "cooked_rabbit" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_golden_apple_cooked_rabbit_hells_kitchen": { - "conversation": "We need to make golden_apple and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_apple", - "cooked_rabbit" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_porkchop_pumpkin_pie_hells_kitchen": { - "conversation": "We need to make cooked_porkchop and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_porkchop", - "pumpkin_pie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_beetroot_soup_cooked_beef_hells_kitchen": { - "conversation": "We need to make beetroot_soup and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make beetroot_soup, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "beetroot_soup", - "cooked_beef" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_rabbit_stew_beetroot_soup_hells_kitchen": { - "conversation": "We need to make rabbit_stew and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "rabbit_stew", - "beetroot_soup" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 9, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_pumpkin_pie_suspicious_stew_hells_kitchen": { - "conversation": "We need to make pumpkin_pie and suspicious_stew together. You are supposed to make suspicious_stew and I am supposed to make pumpkin_pie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "pumpkin_pie", - "suspicious_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_rabbit_suspicious_stew_hells_kitchen": { - "conversation": "We need to make cooked_rabbit and suspicious_stew together. You are supposed to make suspicious_stew and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_rabbit", - "suspicious_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_beef_golden_apple_hells_kitchen": { - "conversation": "We need to make cooked_beef and golden_apple together. You are supposed to make golden_apple and I am supposed to make cooked_beef, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_beef", - "golden_apple" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_rabbit_golden_apple_hells_kitchen": { - "conversation": "We need to make cooked_rabbit and golden_apple together. You are supposed to make golden_apple and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_rabbit", - "golden_apple" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_beetroot_soup_golden_apple_hells_kitchen": { - "conversation": "We need to make beetroot_soup and golden_apple together. You are supposed to make golden_apple and I am supposed to make beetroot_soup, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "beetroot_soup", - "golden_apple" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_pumpkin_pie_cookie_hells_kitchen": { - "conversation": "We need to make pumpkin_pie and cookie together. You are supposed to make cookie and I am supposed to make pumpkin_pie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "pumpkin_pie", - "cookie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_golden_apple_beetroot_soup_hells_kitchen": { - "conversation": "We need to make golden_apple and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_apple", - "beetroot_soup" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_suspicious_stew_beetroot_soup_hells_kitchen": { - "conversation": "We need to make suspicious_stew and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "suspicious_stew", - "beetroot_soup" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_pumpkin_pie_cooked_beef_hells_kitchen": { - "conversation": "We need to make pumpkin_pie and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make pumpkin_pie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "pumpkin_pie", - "cooked_beef" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_rabbit_cooked_chicken_hells_kitchen": { - "conversation": "We need to make cooked_rabbit and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_rabbit", - "cooked_chicken" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_golden_apple_rabbit_stew_hells_kitchen": { - "conversation": "We need to make golden_apple and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_apple", - "rabbit_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_porkchop_cooked_rabbit_hells_kitchen": { - "conversation": "We need to make cooked_porkchop and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_porkchop", - "cooked_rabbit" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cookie_rabbit_stew_hells_kitchen": { - "conversation": "We need to make cookie and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make cookie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cookie", - "rabbit_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 9, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_cookie_cooked_chicken_hells_kitchen": { - "conversation": "We need to make cookie and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make cookie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cookie", - "cooked_chicken" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_chicken_cookie_hells_kitchen": { - "conversation": "We need to make cooked_chicken and cookie together. You are supposed to make cookie and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_chicken", - "cookie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_rabbit_stew_golden_apple_hells_kitchen": { - "conversation": "We need to make rabbit_stew and golden_apple together. You are supposed to make golden_apple and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "rabbit_stew", - "golden_apple" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_chicken_rabbit_stew_hells_kitchen": { - "conversation": "We need to make cooked_chicken and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_chicken", - "rabbit_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_rabbit_cookie_hells_kitchen": { - "conversation": "We need to make cooked_rabbit and cookie together. You are supposed to make cookie and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_rabbit", - "cookie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cookie_pumpkin_pie_hells_kitchen": { - "conversation": "We need to make cookie and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make cookie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cookie", - "pumpkin_pie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_beetroot_soup_pumpkin_pie_hells_kitchen": { - "conversation": "We need to make beetroot_soup and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make beetroot_soup, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "beetroot_soup", - "pumpkin_pie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_beef_cooked_rabbit_hells_kitchen": { - "conversation": "We need to make cooked_beef and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make cooked_beef, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_beef", - "cooked_rabbit" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_pumpkin_pie_cooked_rabbit_hells_kitchen": { - "conversation": "We need to make pumpkin_pie and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make pumpkin_pie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "pumpkin_pie", - "cooked_rabbit" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_beef_beetroot_soup_hells_kitchen": { - "conversation": "We need to make cooked_beef and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make cooked_beef, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_beef", - "beetroot_soup" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_rabbit_rabbit_stew_hells_kitchen": { - "conversation": "We need to make cooked_rabbit and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_rabbit", - "rabbit_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_rabbit_stew_cooked_beef_hells_kitchen": { - "conversation": "We need to make rabbit_stew and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "rabbit_stew", - "cooked_beef" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_golden_apple_cooked_chicken_hells_kitchen": { - "conversation": "We need to make golden_apple and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_apple", - "cooked_chicken" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_beetroot_soup_cooked_chicken_hells_kitchen": { - "conversation": "We need to make beetroot_soup and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make beetroot_soup, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "beetroot_soup", - "cooked_chicken" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_chicken_suspicious_stew_hells_kitchen": { - "conversation": "We need to make cooked_chicken and suspicious_stew together. You are supposed to make suspicious_stew and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_chicken", - "suspicious_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_suspicious_stew_pumpkin_pie_hells_kitchen": { - "conversation": "We need to make suspicious_stew and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "suspicious_stew", - "pumpkin_pie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 7, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_rabbit_cooked_beef_hells_kitchen": { - "conversation": "We need to make cooked_rabbit and cooked_beef together. You are supposed to make cooked_beef and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_rabbit", - "cooked_beef" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_porkchop_cooked_chicken_hells_kitchen": { - "conversation": "We need to make cooked_porkchop and cooked_chicken together. You are supposed to make cooked_chicken and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_porkchop", - "cooked_chicken" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_beef_rabbit_stew_hells_kitchen": { - "conversation": "We need to make cooked_beef and rabbit_stew together. You are supposed to make rabbit_stew and I am supposed to make cooked_beef, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_beef", - "rabbit_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 8, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_golden_apple_cookie_hells_kitchen": { - "conversation": "We need to make golden_apple and cookie together. You are supposed to make cookie and I am supposed to make golden_apple, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "golden_apple", - "cookie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_apple": [ - "Step 1: Go to the chest and collect 1 apple and 8 gold ingots.", - "Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make golden_apple, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make golden_apple. You have their recipe:\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_rabbit_pumpkin_pie_hells_kitchen": { - "conversation": "We need to make cooked_rabbit and pumpkin_pie together. You are supposed to make pumpkin_pie and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_rabbit", - "pumpkin_pie" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make pumpkin_pie. You have their recipe:\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make pumpkin_pie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 4, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_rabbit_stew_suspicious_stew_hells_kitchen": { - "conversation": "We need to make rabbit_stew and suspicious_stew together. You are supposed to make suspicious_stew and I am supposed to make rabbit_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "rabbit_stew", - "suspicious_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "rabbit_stew": [ - "Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').", - "Step 2: Go to the furnace and bake the potato.", - "Step 3: Go to the chest and grab a bowl", - "Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 6: Go to the furnace and cook the raw rabbit.", - "Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make rabbit_stew, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make rabbit_stew. You have their recipe:\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 9, - "max_steps_per_recipe": 6, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_beetroot_soup_cooked_porkchop_hells_kitchen": { - "conversation": "We need to make beetroot_soup and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make beetroot_soup, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "beetroot_soup", - "cooked_porkchop" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_suspicious_stew_cooked_rabbit_hells_kitchen": { - "conversation": "We need to make suspicious_stew and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make suspicious_stew, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "suspicious_stew", - "cooked_rabbit" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cookie_suspicious_stew_hells_kitchen": { - "conversation": "We need to make cookie and suspicious_stew together. You are supposed to make suspicious_stew and I am supposed to make cookie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cookie", - "suspicious_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 6, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_porkchop_suspicious_stew_hells_kitchen": { - "conversation": "We need to make cooked_porkchop and suspicious_stew together. You are supposed to make suspicious_stew and I am supposed to make cooked_porkchop, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_porkchop", - "suspicious_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_rabbit_beetroot_soup_hells_kitchen": { - "conversation": "We need to make cooked_rabbit and beetroot_soup together. You are supposed to make beetroot_soup and I am supposed to make cooked_rabbit, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_rabbit", - "beetroot_soup" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make beetroot_soup. You have their recipe:\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make beetroot_soup, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cookie_cooked_porkchop_hells_kitchen": { - "conversation": "We need to make cookie and cooked_porkchop together. You are supposed to make cooked_porkchop and I am supposed to make cookie, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cookie", - "cooked_porkchop" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cookie, but you don't have the recipe for it!\n\nYour partner needs to make cooked_porkchop. You have their recipe:\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_porkchop, but you don't have the recipe for it!\n\nYour partner needs to make cookie. You have their recipe:\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_chicken_cooked_rabbit_hells_kitchen": { - "conversation": "We need to make cooked_chicken and cooked_rabbit together. You are supposed to make cooked_rabbit and I am supposed to make cooked_chicken, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_chicken", - "cooked_rabbit" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_chicken, but you don't have the recipe for it!\n\nYour partner needs to make cooked_rabbit. You have their recipe:\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make cooked_rabbit, but you don't have the recipe for it!\n\nYour partner needs to make cooked_chicken. You have their recipe:\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 4, - "max_steps_per_recipe": 2, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_cooked_beef_suspicious_stew_hells_kitchen": { - "conversation": "We need to make cooked_beef and suspicious_stew together. You are supposed to make suspicious_stew and I am supposed to make cooked_beef, but I only have YOUR recipe and you only have access to MY recipe! Let's exchange information and get cooking!", - "agent_count": 2, - "target": [ - "cooked_beef", - "suspicious_stew" - ], - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_beef": [ - "Step 1: Kill a cow and pick up 1 beef that is dropped.", - "Step 2: Go to furnace and use it to cook the beef." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "You need to make cooked_beef, but you don't have the recipe for it!\n\nYour partner needs to make suspicious_stew. You have their recipe:\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking.", - "1": "You need to make suspicious_stew, but you don't have the recipe for it!\n\nYour partner needs to make cooked_beef. You have their recipe:\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nYou must communicate effectively to exchange recipe information and complete both dishes. Note: You can only guide your partner with recipe steps. You cannot help with ingredient collection or cooking." - }, - "task_type": "cooking", - "difficulty_metrics": { - "total_recipe_steps": 5, - "max_steps_per_recipe": 3, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/train_tasks/train_tasks.json b/tasks/cooking_tasks/train_tasks/train_tasks.json deleted file mode 100644 index dc8350e..0000000 --- a/tasks/cooking_tasks/train_tasks/train_tasks.json +++ /dev/null @@ -1,2417 +0,0 @@ -{ - "multiagent_cooking_1_cooked_porkchop_1_cooked_rabbit_blocked_access_0": { - "conversation": "Let's collaborate to make cooked_rabbit and cooked_porkchop.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop. ", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_mutton_blocked_access_1": { - "conversation": "Let's work together to make cooked_mutton.", - "agent_count": 2, - "target": { - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 cooked_mutton. " - }, - "difficulty_metrics": { - "total_recipe_steps": 2, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_cookie_1_mushroom_stew": { - "conversation": "Let's collaborate to make cookie and mushroom_stew.", - "agent_count": 2, - "target": { - "cookie": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 cookie, 1 mushroom_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_beetroot_soup_1_golden_carrot_blocked_access_1": { - "conversation": "Let's collaborate to make beetroot_soup and golden_carrot.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 golden_carrot. " - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_beetroot_soup_1_cooked_mutton": { - "conversation": "Let's collaborate to make cooked_mutton and beetroot_soup.", - "agent_count": 2, - "target": { - "cooked_mutton": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_porkchop": { - "conversation": "Let's work together to make cooked_porkchop.", - "agent_count": 2, - "target": { - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - }, - "difficulty_metrics": { - "total_recipe_steps": 2, - "blocked_agents_count": 0, - "unique_target_items": 1, - "overall_difficulty_score": 2, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_cooked_porkchop_1_pumpkin_pie": { - "conversation": "Let's collaborate to make pumpkin_pie and cooked_porkchop.", - "agent_count": 2, - "target": { - "pumpkin_pie": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_porkchop. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 cooked_porkchop. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_chicken_1_suspicious_stew": { - "conversation": "Let's collaborate to make cooked_chicken and suspicious_stew.", - "agent_count": 2, - "target": { - "cooked_chicken": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 suspicious_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_beetroot_soup_1_cooked_rabbit_blocked_access_0": { - "conversation": "Let's collaborate to make beetroot_soup and cooked_rabbit.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit. ", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_rabbit. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_chicken_1_cooked_rabbit_blocked_access_0_1": { - "conversation": "Let's collaborate to make cooked_rabbit and cooked_chicken.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken. ", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_chicken. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_mutton_1_cookie_blocked_access_1": { - "conversation": "Let's collaborate to make cookie and cooked_mutton.", - "agent_count": 2, - "target": { - "cookie": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton. " - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_beetroot_soup_1_mushroom_stew_blocked_access_0_1": { - "conversation": "Let's collaborate to make mushroom_stew and beetroot_soup.", - "agent_count": 2, - "target": { - "mushroom_stew": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup. ", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup. " - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_beetroot_soup_1_suspicious_stew": { - "conversation": "Let's collaborate to make suspicious_stew and beetroot_soup.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_beetroot_soup_1_cooked_porkchop_blocked_access_0_1": { - "conversation": "Let's collaborate to make beetroot_soup and cooked_porkchop.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. ", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. " - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_beetroot_soup_1_pumpkin_pie_blocked_access_0": { - "conversation": "Let's collaborate to make beetroot_soup and pumpkin_pie.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. ", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 pumpkin_pie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_beetroot_soup_1_mushroom_stew": { - "conversation": "Let's collaborate to make mushroom_stew and beetroot_soup.", - "agent_count": 2, - "target": { - "mushroom_stew": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 beetroot_soup. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cookie_1_suspicious_stew": { - "conversation": "Let's collaborate to make cookie and suspicious_stew.", - "agent_count": 2, - "target": { - "cookie": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 cookie, 1 suspicious_stew. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_beetroot_soup_1_cookie": { - "conversation": "Let's collaborate to make beetroot_soup and cookie.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_golden_carrot_1_pumpkin_pie_blocked_access_0": { - "conversation": "Let's collaborate to make pumpkin_pie and golden_carrot.", - "agent_count": 2, - "target": { - "pumpkin_pie": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. ", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_golden_carrot_1_suspicious_stew_blocked_access_0_1": { - "conversation": "Let's collaborate to make suspicious_stew and golden_carrot.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot. ", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 golden_carrot. " - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_cooked_porkchop_1_cooked_rabbit_blocked_access_0_1": { - "conversation": "Let's collaborate to make cooked_porkchop and cooked_rabbit.", - "agent_count": 2, - "target": { - "cooked_porkchop": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit. ", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_rabbit. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_porkchop_1_cookie_blocked_access_0": { - "conversation": "Let's collaborate to make cookie and cooked_porkchop.", - "agent_count": 2, - "target": { - "cookie": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop. ", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_porkchop. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_chicken_1_mushroom_stew": { - "conversation": "Let's collaborate to make mushroom_stew and cooked_chicken.", - "agent_count": 2, - "target": { - "mushroom_stew": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_porkchop_1_cooked_rabbit": { - "conversation": "Let's collaborate to make cooked_rabbit and cooked_porkchop.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_porkchop. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_cooked_chicken_1_mushroom_stew_blocked_access_1": { - "conversation": "Let's collaborate to make cooked_chicken and mushroom_stew.", - "agent_count": 2, - "target": { - "cooked_chicken": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 mushroom_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cookie_blocked_access_0_1": { - "conversation": "Let's work together to make cookie.", - "agent_count": 2, - "target": { - "cookie": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie. ", - "1": "Collaborate with agents around you to make 1 cookie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 3, - "blocked_agents_count": 2, - "unique_target_items": 1, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_suspicious_stew_blocked_access_1": { - "conversation": "Let's work together to make suspicious_stew.", - "agent_count": 2, - "target": { - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 suspicious_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 3, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_cooked_porkchop_1_suspicious_stew_blocked_access_0": { - "conversation": "Let's collaborate to make suspicious_stew and cooked_porkchop.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. ", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_porkchop. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_rabbit_1_mushroom_stew_blocked_access_0_1": { - "conversation": "Let's collaborate to make cooked_rabbit and mushroom_stew.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. ", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 mushroom_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_cooked_rabbit_1_cookie": { - "conversation": "Let's collaborate to make cooked_rabbit and cookie.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cookie. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_mutton_blocked_access_0_1": { - "conversation": "Let's work together to make cooked_mutton.", - "agent_count": 2, - "target": { - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton. ", - "1": "Collaborate with agents around you to make 1 cooked_mutton. " - }, - "difficulty_metrics": { - "total_recipe_steps": 2, - "blocked_agents_count": 2, - "unique_target_items": 1, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_mutton_1_mushroom_stew": { - "conversation": "Let's collaborate to make mushroom_stew and cooked_mutton.", - "agent_count": 2, - "target": { - "mushroom_stew": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_mutton. \n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_beetroot_soup_1_cooked_porkchop": { - "conversation": "Let's collaborate to make beetroot_soup and cooked_porkchop.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_porkchop. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_chicken_1_cooked_rabbit_blocked_access_1": { - "conversation": "Let's collaborate to make cooked_chicken and cooked_rabbit.", - "agent_count": 2, - "target": { - "cooked_chicken": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_rabbit. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_chicken_1_cooked_porkchop": { - "conversation": "Let's collaborate to make cooked_porkchop and cooked_chicken.", - "agent_count": 2, - "target": { - "cooked_porkchop": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_chicken. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_suspicious_stew": { - "conversation": "Let's work together to make suspicious_stew.", - "agent_count": 2, - "target": { - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 suspicious_stew. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 3, - "blocked_agents_count": 0, - "unique_target_items": 1, - "overall_difficulty_score": 2, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_pumpkin_pie_1_suspicious_stew": { - "conversation": "Let's collaborate to make pumpkin_pie and suspicious_stew.", - "agent_count": 2, - "target": { - "pumpkin_pie": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 suspicious_stew. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_chicken_1_mushroom_stew_blocked_access_0_1": { - "conversation": "Let's collaborate to make mushroom_stew and cooked_chicken.", - "agent_count": 2, - "target": { - "mushroom_stew": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. ", - "1": "Collaborate with agents around you to make 1 mushroom_stew, 1 cooked_chicken. " - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_cookie": { - "conversation": "Let's work together to make cookie.", - "agent_count": 2, - "target": { - "cookie": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 cookie. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - }, - "difficulty_metrics": { - "total_recipe_steps": 3, - "blocked_agents_count": 0, - "unique_target_items": 1, - "overall_difficulty_score": 2, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_cookie_1_golden_carrot": { - "conversation": "Let's collaborate to make cookie and golden_carrot.", - "agent_count": 2, - "target": { - "cookie": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 cookie, 1 golden_carrot. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_beetroot_soup_1_golden_carrot": { - "conversation": "Let's collaborate to make golden_carrot and beetroot_soup.", - "agent_count": 2, - "target": { - "golden_carrot": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 beetroot_soup. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_rabbit_1_suspicious_stew_blocked_access_1": { - "conversation": "Let's collaborate to make cooked_rabbit and suspicious_stew.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 suspicious_stew. " - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_beetroot_soup_1_cookie_blocked_access_1": { - "conversation": "Let's collaborate to make beetroot_soup and cookie.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cookie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_mutton_blocked_access_0": { - "conversation": "Let's work together to make cooked_mutton.", - "agent_count": 2, - "target": { - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton. ", - "1": "Collaborate with agents around you to make 1 cooked_mutton. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - }, - "difficulty_metrics": { - "total_recipe_steps": 2, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_cooked_mutton_1_suspicious_stew_blocked_access_1": { - "conversation": "Let's collaborate to make suspicious_stew and cooked_mutton.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_mutton. " - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_rabbit_1_golden_carrot": { - "conversation": "Let's collaborate to make cooked_rabbit and golden_carrot.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 golden_carrot. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_pumpkin_pie_blocked_access_1": { - "conversation": "Let's work together to make pumpkin_pie.", - "agent_count": 2, - "target": { - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_cooked_porkchop_blocked_access_1": { - "conversation": "Let's work together to make cooked_porkchop.", - "agent_count": 2, - "target": { - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop. " - }, - "difficulty_metrics": { - "total_recipe_steps": 2, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_cooked_rabbit_1_pumpkin_pie_blocked_access_0_1": { - "conversation": "Let's collaborate to make cooked_rabbit and pumpkin_pie.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie. ", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 pumpkin_pie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_cooked_rabbit_blocked_access_0_1": { - "conversation": "Let's work together to make cooked_rabbit.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit. ", - "1": "Collaborate with agents around you to make 1 cooked_rabbit. " - }, - "difficulty_metrics": { - "total_recipe_steps": 2, - "blocked_agents_count": 2, - "unique_target_items": 1, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_mutton_1_cookie_blocked_access_0_1": { - "conversation": "Let's collaborate to make cooked_mutton and cookie.", - "agent_count": 2, - "target": { - "cooked_mutton": 1, - "cookie": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie. ", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cookie. " - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_golden_carrot_1_suspicious_stew": { - "conversation": "Let's collaborate to make golden_carrot and suspicious_stew.", - "agent_count": 2, - "target": { - "golden_carrot": 1, - "suspicious_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 suspicious_stew. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_golden_carrot_1_pumpkin_pie_blocked_access_1": { - "conversation": "Let's collaborate to make pumpkin_pie and golden_carrot.", - "agent_count": 2, - "target": { - "pumpkin_pie": 1, - "golden_carrot": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "pumpkin_pie": [ - "Step 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.", - "Step 2: Go to the chest and grab 1 egg.", - "Step 3: Go to the crafting table and craft the sugar cane into sugar.", - "Step 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie." - ], - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. \n\nRecipe for pumpkin_pie:\nStep 1: Go to the farm and collect 1 pumpkin and 1 sugar cane.\nStep 2: Go to the chest and grab 1 egg.\nStep 3: Go to the crafting table and craft the sugar cane into sugar.\nStep 4: Go to the crafting table and combine the pumpkin, egg, and sugar to make a pumpkin pie.\n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.", - "1": "Collaborate with agents around you to make 1 pumpkin_pie, 1 golden_carrot. " - }, - "difficulty_metrics": { - "total_recipe_steps": 7, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_mutton_1_cooked_porkchop_blocked_access_1": { - "conversation": "Let's collaborate to make cooked_porkchop and cooked_mutton.", - "agent_count": 2, - "target": { - "cooked_porkchop": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. \n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 cooked_porkchop, 1 cooked_mutton. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_porkchop_1_golden_carrot": { - "conversation": "Let's collaborate to make golden_carrot and cooked_porkchop.", - "agent_count": 2, - "target": { - "golden_carrot": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "golden_carrot": [ - "Step 1: Go to the farm and collect 1 carrot.", - "Step 2: Go to the chest and collect gold ingots and convert them to gold nuggets.", - "Step 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 golden_carrot, 1 cooked_porkchop. \n\nRecipe for golden_carrot:\nStep 1: Go to the farm and collect 1 carrot.\nStep 2: Go to the chest and collect gold ingots and convert them to gold nuggets.\nStep 3: Go to the crafting table and surround the carrot with gold nuggets to create a golden carrot.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_chicken_1_cooked_porkchop_blocked_access_1": { - "conversation": "Let's collaborate to make cooked_chicken and cooked_porkchop.", - "agent_count": 2, - "target": { - "cooked_chicken": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_porkchop. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_beetroot_soup_1_suspicious_stew_blocked_access_0_1": { - "conversation": "Let's collaborate to make suspicious_stew and beetroot_soup.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. ", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 beetroot_soup. " - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_beetroot_soup_blocked_access_0": { - "conversation": "Let's work together to make beetroot_soup.", - "agent_count": 2, - "target": { - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup. ", - "1": "Collaborate with agents around you to make 1 beetroot_soup. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - }, - "difficulty_metrics": { - "total_recipe_steps": 3, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_cooked_mutton_1_cooked_rabbit": { - "conversation": "Let's collaborate to make cooked_rabbit and cooked_mutton.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 cooked_mutton. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_beetroot_soup": { - "conversation": "Let's work together to make beetroot_soup.", - "agent_count": 2, - "target": { - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 beetroot_soup. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - }, - "difficulty_metrics": { - "total_recipe_steps": 3, - "blocked_agents_count": 0, - "unique_target_items": 1, - "overall_difficulty_score": 2, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_beetroot_soup_1_cooked_chicken_blocked_access_0": { - "conversation": "Let's collaborate to make beetroot_soup and cooked_chicken.", - "agent_count": 2, - "target": { - "beetroot_soup": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. ", - "1": "Collaborate with agents around you to make 1 beetroot_soup, 1 cooked_chicken. \n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken." - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_chicken_1_cooked_mutton_blocked_access_0": { - "conversation": "Let's collaborate to make cooked_chicken and cooked_mutton.", - "agent_count": 2, - "target": { - "cooked_chicken": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton. ", - "1": "Collaborate with agents around you to make 1 cooked_chicken, 1 cooked_mutton. \n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_beetroot_soup_1_cooked_mutton_blocked_access_0_1": { - "conversation": "Let's collaborate to make cooked_mutton and beetroot_soup.", - "agent_count": 2, - "target": { - "cooked_mutton": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "0", - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. ", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 beetroot_soup. " - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 2, - "unique_target_items": 2, - "overall_difficulty_score": 6, - "difficulty_category": "hard" - }, - "difficulty": "hard" - }, - "multiagent_cooking_1_cookie_blocked_access_0": { - "conversation": "Let's work together to make cookie.", - "agent_count": 2, - "target": { - "cookie": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie. ", - "1": "Collaborate with agents around you to make 1 cookie. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - }, - "difficulty_metrics": { - "total_recipe_steps": 3, - "blocked_agents_count": 1, - "unique_target_items": 1, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_cooked_rabbit_1_suspicious_stew_blocked_access_0": { - "conversation": "Let's collaborate to make suspicious_stew and cooked_rabbit.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "cooked_rabbit": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ] - }, - "blocked_access_to_recipe": [ - "0" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit. ", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 cooked_rabbit. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit." - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_mutton_1_cookie": { - "conversation": "Let's collaborate to make cookie and cooked_mutton.", - "agent_count": 2, - "target": { - "cookie": 1, - "cooked_mutton": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cookie": [ - "Step 1: Go to the farm and collect 2 wheat.", - "Step 2: Go to the chest and grab 1 cocoa bean.", - "Step 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie." - ], - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.", - "1": "Collaborate with agents around you to make 1 cookie, 1 cooked_mutton. \n\nRecipe for cookie:\nStep 1: Go to the farm and collect 2 wheat.\nStep 2: Go to the chest and grab 1 cocoa bean.\nStep 3: Go to the crafting table and combine the wheat and cocoa bean to craft a cookie.\n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton." - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_cooked_mutton_1_cooked_porkchop": { - "conversation": "Let's collaborate to make cooked_mutton and cooked_porkchop.", - "agent_count": 2, - "target": { - "cooked_mutton": 1, - "cooked_porkchop": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cooked_porkchop": [ - "Step 1: Kill a pig and pick up 1 porkchop that is dropped.", - "Step 2: Go to furnace and use it to cook the porkchop." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_porkchop. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_porkchop:\nStep 1: Kill a pig and pick up 1 porkchop that is dropped.\nStep 2: Go to furnace and use it to cook the porkchop." - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 3, - "difficulty_category": "easy" - }, - "difficulty": "easy" - }, - "multiagent_cooking_1_cooked_chicken_1_cooked_mutton_blocked_access_1": { - "conversation": "Let's collaborate to make cooked_mutton and cooked_chicken.", - "agent_count": 2, - "target": { - "cooked_mutton": 1, - "cooked_chicken": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_mutton": [ - "Step 1: Kill a sheep and pick up 1 mutton that is dropped.", - "Step 2: Go to furnace and use it to cook the mutton." - ], - "cooked_chicken": [ - "Step 1: Kill a chicken and pick up 1 raw chicken that is dropped.", - "Step 2: Go to furnace and use it to cook the raw chicken." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken. \n\nRecipe for cooked_mutton:\nStep 1: Kill a sheep and pick up 1 mutton that is dropped.\nStep 2: Go to furnace and use it to cook the mutton.\n\nRecipe for cooked_chicken:\nStep 1: Kill a chicken and pick up 1 raw chicken that is dropped.\nStep 2: Go to furnace and use it to cook the raw chicken.", - "1": "Collaborate with agents around you to make 1 cooked_mutton, 1 cooked_chicken. " - }, - "difficulty_metrics": { - "total_recipe_steps": 4, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_mushroom_stew_1_suspicious_stew": { - "conversation": "Let's collaborate to make suspicious_stew and mushroom_stew.", - "agent_count": 2, - "target": { - "suspicious_stew": 1, - "mushroom_stew": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "suspicious_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl and 1 dandelion", - "Step 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew." - ], - "mushroom_stew": [ - "Step 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - ] - }, - "blocked_access_to_recipe": [], - "goal": { - "0": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew.", - "1": "Collaborate with agents around you to make 1 suspicious_stew, 1 mushroom_stew. \n\nRecipe for suspicious_stew:\nStep 1: Go to the farm and collect 1 red mushroom, 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl and 1 dandelion\nStep 4: Go to the crafting table and combine the mushrooms, dandelion, and bowl to make suspicious stew.\n\nRecipe for mushroom_stew:\nStep 1: Go to the farm and collect 1 red mushroom and 1 brown mushroom.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine both the mushrooms and bowl to make mushroom stew." - }, - "difficulty_metrics": { - "total_recipe_steps": 6, - "blocked_agents_count": 0, - "unique_target_items": 2, - "overall_difficulty_score": 4, - "difficulty_category": "medium" - }, - "difficulty": "medium" - }, - "multiagent_cooking_1_beetroot_soup_1_cooked_rabbit_blocked_access_1": { - "conversation": "Let's collaborate to make cooked_rabbit and beetroot_soup.", - "agent_count": 2, - "target": { - "cooked_rabbit": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 300, - "recipes": { - "cooked_rabbit": [ - "Step 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.", - "Step 2: Go to furnace and use it to cook the raw rabbit." - ], - "beetroot_soup": [ - "Step 1: Go to the farm and collect 6 beetroot.", - "Step 2: Go to the chest and grab a bowl.", - "Step 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup." - ] - }, - "blocked_access_to_recipe": [ - "1" - ], - "goal": { - "0": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup. \n\nRecipe for cooked_rabbit:\nStep 1: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 2: Go to furnace and use it to cook the raw rabbit.\n\nRecipe for beetroot_soup:\nStep 1: Go to the farm and collect 6 beetroot.\nStep 2: Go to the chest and grab a bowl.\nStep 3: Go to the crafting table and combine the 6 beetroot and 1 bowl to make beetroot soup.", - "1": "Collaborate with agents around you to make 1 cooked_rabbit, 1 beetroot_soup. " - }, - "difficulty_metrics": { - "total_recipe_steps": 5, - "blocked_agents_count": 1, - "unique_target_items": 2, - "overall_difficulty_score": 5, - "difficulty_category": "medium" - }, - "difficulty": "medium" - } -} \ No newline at end of file diff --git a/tasks/cooking_tasks/train_tasks/train_tasks_3_agents.json b/tasks/cooking_tasks/train_tasks/train_tasks_3_agents.json deleted file mode 100644 index aeb364c..0000000 --- a/tasks/cooking_tasks/train_tasks/train_tasks_3_agents.json +++ /dev/null @@ -1,2864 +0,0 @@ -{ - "multiagent_cooking_3_1_cooked_mutton_1_golden_carrot_1_pumpkin_pie_blocked_access_0": { - "conversation": "Let's work together to make golden_carrot, cooked_mutton, pumpkin_pie.", - "agent_count": 3, - "target": { - "golden_carrot": 1, - "cooked_mutton": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 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 deleted file mode 100644 index 422a4db..0000000 --- a/tasks/cooking_tasks/train_tasks/train_tasks_4_agents.json +++ /dev/null @@ -1,3345 +0,0 @@ -{ - "multiagent_cooking_4_1_beetroot_soup_1_golden_carrot_1_pumpkin_pie_blocked_access_1_3": { - "conversation": "Let's work together to make golden_carrot, pumpkin_pie, beetroot_soup.", - "agent_count": 4, - "target": { - "golden_carrot": 1, - "pumpkin_pie": 1, - "beetroot_soup": 1 - }, - "type": "cooking", - "timeout": 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 deleted file mode 100644 index b918c5a..0000000 --- a/tasks/cooking_tasks/train_tasks/train_tasks_5_agents.json +++ /dev/null @@ -1,3772 +0,0 @@ -{ - "multiagent_cooking_5_1_cooked_chicken_1_cooked_porkchop_1_cooked_rabbit_1_mushroom_stew_1_pumpkin_pie_blocked_access_1_3": { - "conversation": "Let's work together to make cooked_porkchop, mushroom_stew, cooked_chicken, cooked_rabbit, pumpkin_pie.", - "agent_count": 5, - "target": { - "cooked_porkchop": 1, - "mushroom_stew": 1, - "cooked_chicken": 1, - "cooked_rabbit": 1, - "pumpkin_pie": 1 - }, - "type": "cooking", - "timeout": 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 diff --git a/tasks/crafting_tasks/human_ai_tasks/1_agent_1_human.json b/tasks/crafting_tasks/human_ai_tasks/1_agent_1_human.json new file mode 100644 index 0000000..e539510 --- /dev/null +++ b/tasks/crafting_tasks/human_ai_tasks/1_agent_1_human.json @@ -0,0 +1,793 @@ +{ + "multiagent_crafting_pink_wool_full_plan__depth_0": { + "goal": "Collaborate with other agents to craft an pink_wool", + "conversation": "Let's work together to craft an pink_wool.", + "initial_inventory": { + "0": { + "pink_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 1, + "target": "pink_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "human_count": 1, + "usernames": [ + "izzycw" + ], + "requires_ctable": false + }, + "multiagent_crafting_lime_wool_partial_plan__depth_0": { + "goal": "Collaborate with other agents to craft an lime_wool", + "conversation": "Let's work together to craft an lime_wool.", + "initial_inventory": { + "0": { + "lime_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 1, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [ + "!getCraftingPlan" + ] + }, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "missing_items": [], + "requires_ctable": false + }, + "multiagent_crafting_purple_banner_full_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "purple_wool": 4, + "stick": 1 + }, + "1": { + "purple_wool": 3, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_soul_campfire_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft an soul_campfire", + "conversation": "Let's work together to craft an soul_campfire.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "soul_sand": 1, + "dark_oak_log": 2 + }, + "1": { + "oak_planks": 1, + "dark_oak_log": 1, + "crafting_table": 1 + } + }, + "agent_count": 2, + "target": "soul_campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_bookshelf_full_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a bookshelf", + "conversation": "Let's work together to craft a bookshelf.", + "initial_inventory": { + "0": { + "oak_planks": 4, + "book": 2 + }, + "1": { + "oak_planks": 2, + "book": 1, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_compass_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a compass", + "conversation": "Let's work together to craft a compass.", + "initial_inventory": { + "0": { + "iron_ingot": 2 + }, + "1": { + "iron_ingot": 2, + "redstone": 1, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "compass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_fishing_rod_full_plan_requires_ctable__depth_1": { + "goal": "Collaborate with other agents to craft a fishing_rod", + "conversation": "Let's work together to craft a fishing_rod.", + "initial_inventory": { + "0": { + "string": 1, + "oak_planks": 2 + }, + "1": { + "string": 1, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "fishing_rod", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_cake_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a cake", + "conversation": "Let's work together to craft a cake.", + "initial_inventory": { + "0": { + "wheat": 2, + "sugar": 1, + "egg": 1 + }, + "1": { + "wheat": 1, + "milk_bucket": 2, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "cake", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_golden_carrot_full_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a golden_carrot", + "conversation": "Let's work together to craft a golden_carrot.", + "initial_inventory": { + "0": { + "gold_nugget": 5, + "carrot": 1 + }, + "1": { + "gold_nugget": 3, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "golden_carrot", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_map_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a map", + "conversation": "Let's work together to craft a map.", + "initial_inventory": { + "0": { + "paper": 5 + }, + "1": { + "paper": 3, + "compass": 1, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "map", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_blue_wool_full_plan__depth_0": { + "goal": "Collaborate with other agents to craft blue_wool", + "conversation": "Let's work together to craft blue_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "white_wool": 1 + } + }, + "agent_count": 2, + "target": "blue_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": false + }, + "multiagent_crafting_lime_wool_partial_plan__depth_2": { + "goal": "Collaborate with other agents to craft lime_wool", + "conversation": "Let's work together to craft lime_wool.", + "initial_inventory": { + "0": { + "green_dye": 1 + }, + "1": { + "white_wool": 1, + "bone_meal": 1 + } + }, + "agent_count": 2, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": false + }, + "multiagent_crafting_magenta_wool_full_plan__depth_2": { + "goal": "Collaborate with other agents to craft magenta_wool", + "conversation": "Let's work together to craft magenta_wool.", + "initial_inventory": { + "0": { + "rose_red": 1, + "lapis_lazuli": 1 + }, + "1": { + "white_wool": 1, + "bone_meal": 1 + } + }, + "agent_count": 1, + "target": "magenta_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": false + }, + "multiagent_crafting_chest_full_plan_requires_ctable__depth_1": { + "goal": "Collaborate with other agents to craft a chest", + "conversation": "Let's work together to craft a chest.", + "initial_inventory": { + "0": { + "oak_log": 1 + }, + "1": { + "oak_planks": 4, + "crafting_table": 1 + } + }, + "agent_count": 2, + "target": "chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 1, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_barrel_partial_plan_requires_ctable__depth_1": { + "goal": "Collaborate with other agents to craft a barrel", + "conversation": "Let's work together to craft a barrel.", + "initial_inventory": { + "0": { + "spruce_planks": 3, + "crafting_table": 1 + }, + "1": { + "spruce_planks": 3, + "wooden_slab": 1 + } + }, + "agent_count": 2, + "target": "barrel", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_lectern_full_plan_requires_ctable__depth_2": { + "goal": "Collaborate with other agents to craft a lectern", + "conversation": "Let's work together to craft a lectern.", + "initial_inventory": { + "0": { + "birch_slab": 5, + "crafting_table": 1 + }, + "1": { + "birch_log": 2, + "book": 3 + } + }, + "agent_count": 1, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 2, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_clock_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a clock", + "conversation": "Let's work together to craft a clock.", + "initial_inventory": { + "0": { + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2, + "redstone": 1, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "clock", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_firework_rocket_partial_plan__depth_0": { + "goal": "Collaborate with other agents to craft firework_rocket", + "conversation": "Let's work together to craft firework_rocket.", + "initial_inventory": { + "0": { + "paper": 1 + }, + "1": { + "gunpowder": 3 + } + }, + "agent_count": 2, + "target": "firework_rocket", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": false + }, + "multiagent_crafting_enchanting_table_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft an enchanting_table", + "conversation": "Let's work together to craft an enchanting_table.", + "initial_inventory": { + "0": { + "diamond": 2, + "obsidian": 2, + "crafting_table": 1 + }, + "1": { + "obsidian": 2, + "book": 1 + } + }, + "agent_count": 2, + "target": "enchanting_table", + "number_of_target": 1, + "type": "techtree", + "max_depth": 0, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_jukebox_full_plan_requires_ctable__depth_1": { + "goal": "Collaborate with other agents to craft a jukebox", + "conversation": "Let's work together to craft a jukebox.", + "initial_inventory": { + "0": { + "diamond": 1 + }, + "1": { + "oak_log": 2, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "jukebox", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 1, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_light_gray_wool_full_plan__depth_1": { + "goal": "Collaborate with other agents to craft light_gray_wool", + "conversation": "Let's work together to craft light_gray_wool.", + "initial_inventory": { + "0": { + "black_dye": 1 + }, + "1": { + "white_wool": 1, + "white_dye": 2 + } + }, + "agent_count": 1, + "target": "light_gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": false + }, + "multiagent_crafting_blast_furnace_full_plan_requires_ctable__depth_1": { + "goal": "Collaborate with other agents to craft a blast_furnace", + "conversation": "Let's work together to craft a blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 5, + "smooth_stone": 3 + }, + "1": { + "cobblestone": 8, + "crafting_table": 1 + } + }, + "agent_count": 2, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_activator_rail_full_plan_requires_ctable__depth_2": { + "goal": "Collaborate with other agents to craft activator_rail", + "conversation": "Let's work together to craft activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "oak_planks": 6 + }, + "1": { + "redstone": 1, + "iron_ingot": 3, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_campfire_partial_plan_requires_ctable__depth_2": { + "goal": "Collaborate with other agents to craft campfire", + "conversation": "Let's work together to craft campfire.", + "initial_inventory": { + "0": { + "oak_log": 8 + }, + "1": { + "coal": 1, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_crossbow_full_plan_requires_ctable__depth_2": { + "goal": "Collaborate with other agents to craft a crossbow", + "conversation": "Let's work together to craft a crossbow.", + "initial_inventory": { + "0": { + "oak_planks": 8, + "iron_ingot": 2 + }, + "1": { + "string": 2, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "crossbow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/human_ai_tasks/1_agent_1_human_copy.json b/tasks/crafting_tasks/human_ai_tasks/1_agent_1_human_copy.json new file mode 100644 index 0000000..e539510 --- /dev/null +++ b/tasks/crafting_tasks/human_ai_tasks/1_agent_1_human_copy.json @@ -0,0 +1,793 @@ +{ + "multiagent_crafting_pink_wool_full_plan__depth_0": { + "goal": "Collaborate with other agents to craft an pink_wool", + "conversation": "Let's work together to craft an pink_wool.", + "initial_inventory": { + "0": { + "pink_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 1, + "target": "pink_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "human_count": 1, + "usernames": [ + "izzycw" + ], + "requires_ctable": false + }, + "multiagent_crafting_lime_wool_partial_plan__depth_0": { + "goal": "Collaborate with other agents to craft an lime_wool", + "conversation": "Let's work together to craft an lime_wool.", + "initial_inventory": { + "0": { + "lime_dye": 1 + }, + "1": { + "black_wool": 1 + } + }, + "agent_count": 1, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [ + "!getCraftingPlan" + ] + }, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "missing_items": [], + "requires_ctable": false + }, + "multiagent_crafting_purple_banner_full_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "purple_wool": 4, + "stick": 1 + }, + "1": { + "purple_wool": 3, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_soul_campfire_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft an soul_campfire", + "conversation": "Let's work together to craft an soul_campfire.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "soul_sand": 1, + "dark_oak_log": 2 + }, + "1": { + "oak_planks": 1, + "dark_oak_log": 1, + "crafting_table": 1 + } + }, + "agent_count": 2, + "target": "soul_campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_bookshelf_full_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a bookshelf", + "conversation": "Let's work together to craft a bookshelf.", + "initial_inventory": { + "0": { + "oak_planks": 4, + "book": 2 + }, + "1": { + "oak_planks": 2, + "book": 1, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_compass_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a compass", + "conversation": "Let's work together to craft a compass.", + "initial_inventory": { + "0": { + "iron_ingot": 2 + }, + "1": { + "iron_ingot": 2, + "redstone": 1, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "compass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_fishing_rod_full_plan_requires_ctable__depth_1": { + "goal": "Collaborate with other agents to craft a fishing_rod", + "conversation": "Let's work together to craft a fishing_rod.", + "initial_inventory": { + "0": { + "string": 1, + "oak_planks": 2 + }, + "1": { + "string": 1, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "fishing_rod", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_cake_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a cake", + "conversation": "Let's work together to craft a cake.", + "initial_inventory": { + "0": { + "wheat": 2, + "sugar": 1, + "egg": 1 + }, + "1": { + "wheat": 1, + "milk_bucket": 2, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "cake", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_golden_carrot_full_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a golden_carrot", + "conversation": "Let's work together to craft a golden_carrot.", + "initial_inventory": { + "0": { + "gold_nugget": 5, + "carrot": 1 + }, + "1": { + "gold_nugget": 3, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "golden_carrot", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_map_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a map", + "conversation": "Let's work together to craft a map.", + "initial_inventory": { + "0": { + "paper": 5 + }, + "1": { + "paper": 3, + "compass": 1, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "map", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_blue_wool_full_plan__depth_0": { + "goal": "Collaborate with other agents to craft blue_wool", + "conversation": "Let's work together to craft blue_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1 + }, + "1": { + "white_wool": 1 + } + }, + "agent_count": 2, + "target": "blue_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": false + }, + "multiagent_crafting_lime_wool_partial_plan__depth_2": { + "goal": "Collaborate with other agents to craft lime_wool", + "conversation": "Let's work together to craft lime_wool.", + "initial_inventory": { + "0": { + "green_dye": 1 + }, + "1": { + "white_wool": 1, + "bone_meal": 1 + } + }, + "agent_count": 2, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": false + }, + "multiagent_crafting_magenta_wool_full_plan__depth_2": { + "goal": "Collaborate with other agents to craft magenta_wool", + "conversation": "Let's work together to craft magenta_wool.", + "initial_inventory": { + "0": { + "rose_red": 1, + "lapis_lazuli": 1 + }, + "1": { + "white_wool": 1, + "bone_meal": 1 + } + }, + "agent_count": 1, + "target": "magenta_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": false + }, + "multiagent_crafting_chest_full_plan_requires_ctable__depth_1": { + "goal": "Collaborate with other agents to craft a chest", + "conversation": "Let's work together to craft a chest.", + "initial_inventory": { + "0": { + "oak_log": 1 + }, + "1": { + "oak_planks": 4, + "crafting_table": 1 + } + }, + "agent_count": 2, + "target": "chest", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 1, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_barrel_partial_plan_requires_ctable__depth_1": { + "goal": "Collaborate with other agents to craft a barrel", + "conversation": "Let's work together to craft a barrel.", + "initial_inventory": { + "0": { + "spruce_planks": 3, + "crafting_table": 1 + }, + "1": { + "spruce_planks": 3, + "wooden_slab": 1 + } + }, + "agent_count": 2, + "target": "barrel", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_lectern_full_plan_requires_ctable__depth_2": { + "goal": "Collaborate with other agents to craft a lectern", + "conversation": "Let's work together to craft a lectern.", + "initial_inventory": { + "0": { + "birch_slab": 5, + "crafting_table": 1 + }, + "1": { + "birch_log": 2, + "book": 3 + } + }, + "agent_count": 1, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 2, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_clock_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a clock", + "conversation": "Let's work together to craft a clock.", + "initial_inventory": { + "0": { + "gold_ingot": 2 + }, + "1": { + "gold_ingot": 2, + "redstone": 1, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "clock", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_firework_rocket_partial_plan__depth_0": { + "goal": "Collaborate with other agents to craft firework_rocket", + "conversation": "Let's work together to craft firework_rocket.", + "initial_inventory": { + "0": { + "paper": 1 + }, + "1": { + "gunpowder": 3 + } + }, + "agent_count": 2, + "target": "firework_rocket", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": false + }, + "multiagent_crafting_enchanting_table_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft an enchanting_table", + "conversation": "Let's work together to craft an enchanting_table.", + "initial_inventory": { + "0": { + "diamond": 2, + "obsidian": 2, + "crafting_table": 1 + }, + "1": { + "obsidian": 2, + "book": 1 + } + }, + "agent_count": 2, + "target": "enchanting_table", + "number_of_target": 1, + "type": "techtree", + "max_depth": 0, + "depth": 0, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_jukebox_full_plan_requires_ctable__depth_1": { + "goal": "Collaborate with other agents to craft a jukebox", + "conversation": "Let's work together to craft a jukebox.", + "initial_inventory": { + "0": { + "diamond": 1 + }, + "1": { + "oak_log": 2, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "jukebox", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 1, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_light_gray_wool_full_plan__depth_1": { + "goal": "Collaborate with other agents to craft light_gray_wool", + "conversation": "Let's work together to craft light_gray_wool.", + "initial_inventory": { + "0": { + "black_dye": 1 + }, + "1": { + "white_wool": 1, + "white_dye": 2 + } + }, + "agent_count": 1, + "target": "light_gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": false + }, + "multiagent_crafting_blast_furnace_full_plan_requires_ctable__depth_1": { + "goal": "Collaborate with other agents to craft a blast_furnace", + "conversation": "Let's work together to craft a blast_furnace.", + "initial_inventory": { + "0": { + "iron_ingot": 5, + "smooth_stone": 3 + }, + "1": { + "cobblestone": 8, + "crafting_table": 1 + } + }, + "agent_count": 2, + "target": "blast_furnace", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_activator_rail_full_plan_requires_ctable__depth_2": { + "goal": "Collaborate with other agents to craft activator_rail", + "conversation": "Let's work together to craft activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "oak_planks": 6 + }, + "1": { + "redstone": 1, + "iron_ingot": 3, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_campfire_partial_plan_requires_ctable__depth_2": { + "goal": "Collaborate with other agents to craft campfire", + "conversation": "Let's work together to craft campfire.", + "initial_inventory": { + "0": { + "oak_log": 8 + }, + "1": { + "coal": 1, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "campfire", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_crossbow_full_plan_requires_ctable__depth_2": { + "goal": "Collaborate with other agents to craft a crossbow", + "conversation": "Let's work together to craft a crossbow.", + "initial_inventory": { + "0": { + "oak_planks": 8, + "iron_ingot": 2 + }, + "1": { + "string": 2, + "crafting_table": 1 + } + }, + "agent_count": 1, + "target": "crossbow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "human_count": 1, + "usernames": [ + "izzycw" + ], + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/human_ai_tasks/3_agent_1_human.json b/tasks/crafting_tasks/human_ai_tasks/3_agent_1_human.json new file mode 100644 index 0000000..0b524b0 --- /dev/null +++ b/tasks/crafting_tasks/human_ai_tasks/3_agent_1_human.json @@ -0,0 +1,1060 @@ +{ + "multiagent_crafting_requires_ctable_lectern_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an lectern", + "conversation": "Let's work together to craft an lectern.", + "initial_inventory": { + "0": { + "oak_slab": 1, + "bookshelf": 1, + "crafting_table": 1 + }, + "1": { + "oak_slab": 1 + }, + "2": { + "oak_slab": 1 + }, + "3": { + "oak_slab": 1 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 500, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_polished_granite_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_granite", + "conversation": "Let's work together to craft an polished_granite.", + "initial_inventory": { + "0": { + "granite": 1, + "crafting_table": 1 + }, + "1": { + "granite": 1 + }, + "2": { + "granite": 1 + }, + "3": { + "granite": 1 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "polished_granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 500, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_smoker_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an smoker", + "conversation": "Let's work together to craft an smoker.", + "initial_inventory": { + "0": { + "dark_oak_log": 1, + "furnace": 1, + "crafting_table": 1 + }, + "1": { + "dark_oak_log": 1 + }, + "2": { + "dark_oak_log": 1 + }, + "3": { + "dark_oak_log": 1 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "smoker", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 500, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_white_banner_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_wool": 1, + "stick": 1, + "crafting_table": 1 + }, + "1": { + "white_wool": 3 + }, + "2": { + "white_wool": 1 + }, + "3": { + "white_wool": 1 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 500, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_blue_banner_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an blue_banner", + "conversation": "Let's work together to craft an blue_banner.", + "initial_inventory": { + "0": { + "blue_wool": 1, + "stick": 1, + "crafting_table": 1 + }, + "1": { + "blue_wool": 1 + }, + "2": { + "blue_wool": 1 + }, + "3": { + "blue_wool": 3 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 500, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_red_stained_glass_0_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an red_stained_glass", + "conversation": "Let's work together to craft an red_stained_glass.", + "initial_inventory": { + "0": { + "glass": 2, + "red_dye": 1, + "crafting_table": 1 + }, + "1": { + "glass": 2 + }, + "2": { + "glass": 2 + }, + "3": { + "glass": 2 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "red_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 500, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_white_banner_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_wool": 1, + "stick": 1, + "crafting_table": 1 + }, + "1": { + "white_wool": 3 + }, + "2": { + "white_wool": 1 + }, + "3": { + "white_wool": 1 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 500, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_cyan_stained_glass_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an cyan_stained_glass", + "conversation": "Let's work together to craft an cyan_stained_glass.", + "initial_inventory": { + "0": { + "glass": 2, + "cyan_dye": 1, + "crafting_table": 1 + }, + "1": { + "glass": 2 + }, + "2": { + "glass": 2 + }, + "3": { + "glass": 2 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 500, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_waxed_oxidized_cut_copper_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an waxed_oxidized_cut_copper", + "conversation": "Let's work together to craft an waxed_oxidized_cut_copper.", + "initial_inventory": { + "0": { + "waxed_oxidized_copper": 1, + "crafting_table": 1 + }, + "1": { + "waxed_oxidized_copper": 1 + }, + "2": { + "waxed_oxidized_copper": 1 + }, + "3": { + "waxed_oxidized_copper": 1 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "waxed_oxidized_cut_copper", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 500, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_blue_banner_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an blue_banner", + "conversation": "Let's work together to craft an blue_banner.", + "initial_inventory": { + "0": { + "blue_wool": 1, + "stick": 1, + "crafting_table": 1 + }, + "1": { + "blue_wool": 1 + }, + "2": { + "blue_wool": 1 + }, + "3": { + "blue_wool": 3 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 500, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_white_banner_2_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_wool": 1, + "stick": 1, + "crafting_table": 1 + }, + "1": { + "white_wool": 3 + }, + "2": { + "white_wool": 1 + }, + "3": { + "white_wool": 1 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 500, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_smoker_3_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an smoker", + "conversation": "Let's work together to craft an smoker.", + "initial_inventory": { + "0": { + "dark_oak_log": 1, + "furnace": 1, + "crafting_table": 1 + }, + "1": { + "dark_oak_log": 1 + }, + "2": { + "dark_oak_log": 1 + }, + "3": { + "dark_oak_log": 1 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "smoker", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 500, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_black_banner_1_with_plan__depth_0_num_agents_4": { + "goal": "Collaborate with other agents to craft an black_banner", + "conversation": "Let's work together to craft an black_banner.", + "initial_inventory": { + "0": { + "black_wool": 1, + "stick": 1, + "crafting_table": 1 + }, + "1": { + "black_wool": 1 + }, + "2": { + "black_wool": 1 + }, + "3": { + "black_wool": 3 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "black_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 500, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_cyan_stained_glass_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an cyan_stained_glass", + "conversation": "Let's work together to craft an cyan_stained_glass.", + "initial_inventory": { + "0": { + "glass": 2, + "blue_dye": 1, + "crafting_table": 1 + }, + "1": { + "glass": 2, + "green_dye": 1 + }, + "2": { + "glass": 2 + }, + "3": { + "glass": 2 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "cyan_stained_glass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 500, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_polished_granite_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an polished_granite", + "conversation": "Let's work together to craft an polished_granite.", + "initial_inventory": { + "0": { + "diorite": 1, + "quartz": 1, + "crafting_table": 1 + }, + "1": { + "diorite": 1, + "quartz": 1 + }, + "2": { + "diorite": 1, + "quartz": 1 + }, + "3": { + "diorite": 1, + "quartz": 1 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "polished_granite", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 500, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_cyan_banner_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "cyan_dye": 1, + "black_wool": 1, + "oak_planks": 2, + "crafting_table": 1 + }, + "1": { + "cyan_dye": 1, + "black_wool": 1 + }, + "2": { + "cyan_dye": 3, + "black_wool": 3 + }, + "3": { + "cyan_dye": 1, + "black_wool": 1 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 500, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_white_banner_0_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an white_banner", + "conversation": "Let's work together to craft an white_banner.", + "initial_inventory": { + "0": { + "white_dye": 3, + "black_wool": 1, + "oak_planks": 2, + "crafting_table": 1 + }, + "1": { + "white_dye": 1, + "black_wool": 1 + }, + "2": { + "white_dye": 1, + "black_wool": 1 + }, + "3": { + "white_dye": 1, + "black_wool": 3 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "white_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 500, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_bookshelf_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an bookshelf", + "conversation": "Let's work together to craft an bookshelf.", + "initial_inventory": { + "0": { + "oak_log": 2, + "paper": 3, + "crafting_table": 1 + }, + "1": { + "paper": 2, + "leather": 3 + }, + "2": { + "paper": 2 + }, + "3": { + "paper": 2 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 500, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_spectral_arrow_1_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an spectral_arrow", + "conversation": "Let's work together to craft an spectral_arrow.", + "initial_inventory": { + "0": { + "glowstone_dust": 1, + "flint": 1, + "crafting_table": 1 + }, + "1": { + "glowstone_dust": 1, + "stick": 1 + }, + "2": { + "glowstone_dust": 1, + "feather": 1 + }, + "3": { + "glowstone_dust": 1 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 500, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_chest_minecart_2_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an chest_minecart", + "conversation": "Let's work together to craft an chest_minecart.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "iron_ingot": 1, + "crafting_table": 1 + }, + "1": { + "oak_planks": 2, + "iron_ingot": 2 + }, + "2": { + "oak_planks": 2, + "iron_ingot": 1 + }, + "3": { + "oak_planks": 2, + "iron_ingot": 1 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 500, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_chest_minecart_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an chest_minecart", + "conversation": "Let's work together to craft an chest_minecart.", + "initial_inventory": { + "0": { + "oak_planks": 2, + "iron_ingot": 1, + "crafting_table": 1 + }, + "1": { + "oak_planks": 2, + "iron_ingot": 2 + }, + "2": { + "oak_planks": 2, + "iron_ingot": 1 + }, + "3": { + "oak_planks": 2, + "iron_ingot": 1 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "chest_minecart", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 500, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_blue_banner_3_with_plan__depth_1_num_agents_4": { + "goal": "Collaborate with other agents to craft an blue_banner", + "conversation": "Let's work together to craft an blue_banner.", + "initial_inventory": { + "0": { + "blue_wool": 1, + "oak_planks": 2, + "crafting_table": 1 + }, + "1": { + "blue_wool": 3 + }, + "2": { + "blue_wool": 1 + }, + "3": { + "blue_wool": 1 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "blue_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 500, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [ + "!getCraftingPlan" + ], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_cyan_banner_0_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "blue_dye": 3, + "black_wool": 1, + "crafting_table": 1 + }, + "1": { + "green_dye": 3, + "black_wool": 3 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 500, + "blocked_actions": { + "0": [], + "1": [], + "2": [], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_cyan_banner_2_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an cyan_banner", + "conversation": "Let's work together to craft an cyan_banner.", + "initial_inventory": { + "0": { + "blue_dye": 3, + "black_wool": 1, + "crafting_table": 1 + }, + "1": { + "green_dye": 3, + "black_wool": 3 + }, + "2": { + "black_wool": 1, + "oak_log": 1 + }, + "3": { + "black_wool": 1 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "cyan_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 500, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + }, + "multiagent_crafting_requires_ctable_spectral_arrow_2_with_plan__depth_2_num_agents_4": { + "goal": "Collaborate with other agents to craft an spectral_arrow", + "conversation": "Let's work together to craft an spectral_arrow.", + "initial_inventory": { + "0": { + "glowstone_dust": 1, + "flint": 1, + "crafting_table": 1 + }, + "1": { + "glowstone_dust": 1, + "oak_planks": 2 + }, + "2": { + "glowstone_dust": 1, + "feather": 1 + }, + "3": { + "glowstone_dust": 1 + } + }, + "agent_count": 3, + "human_count": 1, + "target": "spectral_arrow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 500, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [ + "!getCraftingPlan" + ], + "2": [], + "3": [] + }, + "missing_items": [], + "requires_crafting_table": true, + "usernames": [ + "izzycw" + ] + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/test_tasks/1_agent.json b/tasks/crafting_tasks/test_tasks/1_agent.json new file mode 100644 index 0000000..2a61d07 --- /dev/null +++ b/tasks/crafting_tasks/test_tasks/1_agent.json @@ -0,0 +1,406 @@ +{ + "multiagent_crafting_pink_wool_full_plan__depth_0": { + "goal": "Collaborate with other agents to craft an pink_wool", + "conversation": "Let's work together to craft an pink_wool.", + "initial_inventory": { + "0": { + "pink_dye": 1 + } + }, + "agent_count": 1, + "target": "pink_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": false + }, + "multiagent_crafting_lime_wool_partial_plan__depth_0": { + "goal": "Collaborate with other agents to craft an lime_wool", + "conversation": "Let's work together to craft an lime_wool.", + "initial_inventory": { + "0": { + "lime_dye": 1 + } + }, + "agent_count": 1, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [ + ], + "1": ["!getCraftingPlan"] + }, + "missing_items": [ + ], + "requires_ctable": false + }, + "multiagent_crafting_purple_banner_full_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft an purple_banner", + "conversation": "Let's work together to craft an purple_banner.", + "initial_inventory": { + "0": { + "purple_wool": 4, + "stick": 1 + } + }, + "agent_count": 1, + "target": "purple_banner", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, +"multiagent_crafting_bookshelf_full_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a bookshelf", + "conversation": "Let's work together to craft a bookshelf.", + "initial_inventory": { + "0": { + "oak_planks": 4, + "book": 2 + } + }, + "agent_count": 1, + "target": "bookshelf", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true +}, +"multiagent_crafting_compass_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a compass", + "conversation": "Let's work together to craft a compass.", + "initial_inventory": { + "0": { + "iron_ingot": 2 + } + }, + "agent_count": 1, + "target": "compass", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true +}, +"multiagent_crafting_fishing_rod_full_plan_requires_ctable__depth_1": { + "goal": "Collaborate with other agents to craft a fishing_rod", + "conversation": "Let's work together to craft a fishing_rod.", + "initial_inventory": { + "0": { + "string": 1, + "oak_planks": 2 + } + }, + "agent_count": 1, + "target": "fishing_rod", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 1, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": true +}, +"multiagent_crafting_cake_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a cake", + "conversation": "Let's work together to craft a cake.", + "initial_inventory": { + "0": { + "wheat": 2, + "sugar": 1, + "egg": 1 + } + }, + "agent_count": 1, + "target": "cake", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true +}, +"multiagent_crafting_golden_apple_full_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a golden_apple", + "conversation": "Let's work together to craft a golden_apple.", + "initial_inventory": { + "0": { + "gold_nugget": 5, + "apple": 1 + } + }, + "agent_count": 1, + "target": "golden_apple", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": true +}, +"multiagent_crafting_blue_wool_full_plan__depth_0": { + "goal": "Collaborate with other agents to craft blue_wool", + "conversation": "Let's work together to craft blue_wool.", + "initial_inventory": { + "0": { + "blue_dye": 1 + } + }, + "agent_count": 1, + "target": "blue_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 1, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [], + "requires_ctable": false +}, +"multiagent_crafting_lime_wool_partial_plan__depth_2": { + "goal": "Collaborate with other agents to craft lime_wool", + "conversation": "Let's work together to craft lime_wool.", + "initial_inventory": { + "0": { + "green_dye": 1 + } + }, + "agent_count": 1, + "target": "lime_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": false +}, +"multiagent_crafting_magenta_wool_full_plan__depth_2": { + "goal": "Collaborate with other agents to craft magenta_wool", + "conversation": "Let's work together to craft magenta_wool.", + "initial_inventory": { + "0": { + "rose_red": 1, + "lapis_lazuli": 1 + } + }, + "agent_count": 1, + "target": "magenta_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": false +}, +"multiagent_crafting_lectern_full_plan_requires_ctable__depth_2": { + "goal": "Collaborate with other agents to craft a lectern", + "conversation": "Let's work together to craft a lectern.", + "initial_inventory": { + "0": { + "birch_slab": 5, + "crafting_table": 1, + "book": 1 + } + }, + "agent_count": 1, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": true +}, +"multiagent_crafting_clock_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a clock", + "conversation": "Let's work together to craft a clock.", + "initial_inventory": { + "0": { + "gold_ingot": 2 + } + }, + "agent_count": 1, + "target": "clock", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true +}, +"multiagent_crafting_firework_rocket_partial_plan__depth_0": { + "goal": "Collaborate with other agents to craft firework_rocket", + "conversation": "Let's work together to craft firework_rocket.", + "initial_inventory": { + "0": { + "paper": 1 + } + }, + "agent_count": 1, + "target": "firework_rocket", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": false +}, +"multiagent_crafting_light_gray_wool_full_plan__depth_1": { + "goal": "Collaborate with other agents to craft light_gray_wool", + "conversation": "Let's work together to craft light_gray_wool.", + "initial_inventory": { + "0": { + "black_dye": 1 + } + }, + "agent_count": 1, + "target": "light_gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": false +}, +"multiagent_crafting_activator_rail_full_plan_requires_ctable__depth_2": { + "goal": "Collaborate with other agents to craft activator_rail", + "conversation": "Let's work together to craft activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "oak_planks": 6 + } + }, + "agent_count": 1, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": true +}, +"multiagent_crafting_crossbow_full_plan_requires_ctable__depth_2": { + "goal": "Collaborate with other agents to craft a crossbow", + "conversation": "Let's work together to craft a crossbow.", + "initial_inventory": { + "0": { + "oak_planks": 8, + "iron_ingot": 2 + } + }, + "agent_count": 1, + "target": "crossbow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": true +} +} \ No newline at end of file diff --git a/tasks/crafting_tasks/test_tasks/1_agent_remaining.json b/tasks/crafting_tasks/test_tasks/1_agent_remaining.json new file mode 100644 index 0000000..1a6f11b --- /dev/null +++ b/tasks/crafting_tasks/test_tasks/1_agent_remaining.json @@ -0,0 +1,146 @@ +{ + "multiagent_crafting_lectern_full_plan_requires_ctable__depth_2": { + "goal": "Collaborate with other agents to craft a lectern", + "conversation": "Let's work together to craft a lectern.", + "initial_inventory": { + "0": { + "birch_slab": 5, + "crafting_table": 1, + "book": 1 + } + }, + "agent_count": 1, + "target": "lectern", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": true + }, + "multiagent_crafting_clock_partial_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a clock", + "conversation": "Let's work together to craft a clock.", + "initial_inventory": { + "0": { + "gold_ingot": 2 + } + }, + "agent_count": 1, + "target": "clock", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": true + }, + "multiagent_crafting_firework_rocket_partial_plan__depth_0": { + "goal": "Collaborate with other agents to craft firework_rocket", + "conversation": "Let's work together to craft firework_rocket.", + "initial_inventory": { + "0": { + "paper": 1 + } + }, + "agent_count": 1, + "target": "firework_rocket", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 0, + "timeout": 300, + "blocked_actions": { + "0": [ + "!getCraftingPlan" + ], + "1": [] + }, + "missing_items": [], + "requires_ctable": false + }, + "multiagent_crafting_light_gray_wool_full_plan__depth_1": { + "goal": "Collaborate with other agents to craft light_gray_wool", + "conversation": "Let's work together to craft light_gray_wool.", + "initial_inventory": { + "0": { + "black_dye": 1 + } + }, + "agent_count": 1, + "target": "light_gray_wool", + "number_of_target": 1, + "type": "techtree", + "max_depth": 2, + "depth": 1, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": false + }, + "multiagent_crafting_activator_rail_full_plan_requires_ctable__depth_2": { + "goal": "Collaborate with other agents to craft activator_rail", + "conversation": "Let's work together to craft activator_rail.", + "initial_inventory": { + "0": { + "iron_ingot": 3, + "oak_planks": 6 + } + }, + "agent_count": 1, + "target": "activator_rail", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": true + }, + "multiagent_crafting_crossbow_full_plan_requires_ctable__depth_2": { + "goal": "Collaborate with other agents to craft a crossbow", + "conversation": "Let's work together to craft a crossbow.", + "initial_inventory": { + "0": { + "oak_planks": 8, + "iron_ingot": 2 + } + }, + "agent_count": 1, + "target": "crossbow", + "number_of_target": 1, + "type": "techtree", + "max_depth": 3, + "depth": 2, + "timeout": 300, + "blocked_actions": { + "0": [], + "1": [] + }, + "missing_items": [ + ], + "requires_ctable": true + } +} \ No newline at end of file diff --git a/tasks/crafting_tasks/test_tasks/2_agent.json b/tasks/crafting_tasks/test_tasks/2_agent.json index c7e91cf..c4ddb15 100644 --- a/tasks/crafting_tasks/test_tasks/2_agent.json +++ b/tasks/crafting_tasks/test_tasks/2_agent.json @@ -78,37 +78,6 @@ "missing_items": [], "requires_ctable": true }, - "multiagent_crafting_soul_campfire_partial_plan_requires_ctable__depth_0": { - "goal": "Collaborate with other agents to craft an soul_campfire", - "conversation": "Let's work together to craft an soul_campfire.", - "initial_inventory": { - "0": { - "oak_planks": 2, - "soul_sand": 1, - "dark_oak_log": 2 - }, - "1": { - "oak_planks": 1, - "dark_oak_log": 1, - "crafting_table": 1 - } - }, - "agent_count": 2, - "target": "soul_campfire", - "number_of_target": 1, - "type": "techtree", - "max_depth": 2, - "depth": 0, - "timeout": 300, - "blocked_actions": { - "0": [ - "!getCraftingPlan" - ], - "1": [] - }, - "missing_items": [], - "requires_ctable": true - }, "multiagent_crafting_bookshelf_full_plan_requires_ctable__depth_0": { "goal": "Collaborate with other agents to craft a bookshelf", "conversation": "Let's work together to craft a bookshelf.", @@ -225,13 +194,13 @@ "missing_items": [], "requires_ctable": true }, - "multiagent_crafting_golden_carrot_full_plan_requires_ctable__depth_0": { - "goal": "Collaborate with other agents to craft a golden_carrot", - "conversation": "Let's work together to craft a golden_carrot.", + "multiagent_crafting_golden_apple_full_plan_requires_ctable__depth_0": { + "goal": "Collaborate with other agents to craft a golden_apple", + "conversation": "Let's work together to craft a golden_apple.", "initial_inventory": { "0": { "gold_nugget": 5, - "carrot": 1 + "apple": 1 }, "1": { "gold_nugget": 3, @@ -239,7 +208,7 @@ } }, "agent_count": 2, - "target": "golden_carrot", + "target": "golden_apple", "number_of_target": 1, "type": "techtree", "max_depth": 2, @@ -252,35 +221,6 @@ "missing_items": [], "requires_ctable": true }, - "multiagent_crafting_map_partial_plan_requires_ctable__depth_0": { - "goal": "Collaborate with other agents to craft a map", - "conversation": "Let's work together to craft a map.", - "initial_inventory": { - "0": { - "paper": 5 - }, - "1": { - "paper": 3, - "compass": 1, - "crafting_table": 1 - } - }, - "agent_count": 2, - "target": "map", - "number_of_target": 1, - "type": "techtree", - "max_depth": 1, - "depth": 0, - "timeout": 300, - "blocked_actions": { - "0": [ - "!getCraftingPlan" - ], - "1": [] - }, - "missing_items": [], - "requires_ctable": true - }, "multiagent_crafting_blue_wool_full_plan__depth_0": { "goal": "Collaborate with other agents to craft blue_wool", "conversation": "Let's work together to craft blue_wool.", @@ -363,73 +303,18 @@ ], "requires_ctable": false }, - "multiagent_crafting_chest_full_plan_requires_ctable__depth_1": { - "goal": "Collaborate with other agents to craft a chest", - "conversation": "Let's work together to craft a chest.", - "initial_inventory": { - "0": { - "oak_log": 1 - }, - "1": { - "oak_planks": 4, - "crafting_table": 1 - } - }, - "agent_count": 2, - "target": "chest", - "number_of_target": 1, - "type": "techtree", - "max_depth": 1, - "depth": 1, - "timeout": 300, - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [], - "requires_ctable": true - }, - "multiagent_crafting_barrel_partial_plan_requires_ctable__depth_1": { - "goal": "Collaborate with other agents to craft a barrel", - "conversation": "Let's work together to craft a barrel.", - "initial_inventory": { - "0": { - "spruce_planks": 3, - "crafting_table": 1 - }, - "1": { - "spruce_planks": 3, - "wooden_slab": 1 - } - }, - "agent_count": 2, - "target": "barrel", - "number_of_target": 1, - "type": "techtree", - "max_depth": 2, - "depth": 1, - "timeout": 300, - "blocked_actions": { - "0": [ - "!getCraftingPlan" - ], - "1": [] - }, - "missing_items": [ - ], - "requires_ctable": true - }, "multiagent_crafting_lectern_full_plan_requires_ctable__depth_2": { "goal": "Collaborate with other agents to craft a lectern", "conversation": "Let's work together to craft a lectern.", "initial_inventory": { "0": { "birch_slab": 5, - "crafting_table": 1 + "crafting_table": 1, + "book": 1 }, "1": { "birch_log": 2, - "book": 3 + "book": 2 } }, "agent_count": 2, @@ -503,62 +388,6 @@ "missing_items": [], "requires_ctable": false }, - "multiagent_crafting_enchanting_table_partial_plan_requires_ctable__depth_0": { - "goal": "Collaborate with other agents to craft an enchanting_table", - "conversation": "Let's work together to craft an enchanting_table.", - "initial_inventory": { - "0": { - "diamond": 2, - "obsidian": 2, - "crafting_table": 1 - }, - "1": { - "obsidian": 2, - "book": 1 - } - }, - "agent_count": 2, - "target": "enchanting_table", - "number_of_target": 1, - "type": "techtree", - "max_depth": 0, - "depth": 0, - "timeout": 300, - "blocked_actions": { - "0": [ - "!getCraftingPlan" - ], - "1": [] - }, - "missing_items": [], - "requires_ctable": true - }, - "multiagent_crafting_jukebox_full_plan_requires_ctable__depth_1": { - "goal": "Collaborate with other agents to craft a jukebox", - "conversation": "Let's work together to craft a jukebox.", - "initial_inventory": { - "0": { - "diamond": 1 - }, - "1": { - "oak_log": 2, - "crafting_table": 1 - } - }, - "agent_count": 2, - "target": "jukebox", - "number_of_target": 1, - "type": "techtree", - "max_depth": 1, - "depth": 1, - "timeout": 300, - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [], - "requires_ctable": true - }, "multiagent_crafting_light_gray_wool_full_plan__depth_1": { "goal": "Collaborate with other agents to craft light_gray_wool", "conversation": "Let's work together to craft light_gray_wool.", @@ -586,34 +415,6 @@ ], "requires_ctable": false }, - "multiagent_crafting_blast_furnace_full_plan_requires_ctable__depth_1": { - "goal": "Collaborate with other agents to craft a blast_furnace", - "conversation": "Let's work together to craft a blast_furnace.", - "initial_inventory": { - "0": { - "iron_ingot": 5, - "smooth_stone": 3 - }, - "1": { - "cobblestone": 8, - "crafting_table": 1 - } - }, - "agent_count": 2, - "target": "blast_furnace", - "number_of_target": 1, - "type": "techtree", - "max_depth": 2, - "depth": 1, - "timeout": 300, - "blocked_actions": { - "0": [], - "1": [] - }, - "missing_items": [ - ], - "requires_ctable": true - }, "multiagent_crafting_activator_rail_full_plan_requires_ctable__depth_2": { "goal": "Collaborate with other agents to craft activator_rail", "conversation": "Let's work together to craft activator_rail.", @@ -643,35 +444,6 @@ ], "requires_ctable": true }, - "multiagent_crafting_campfire_partial_plan_requires_ctable__depth_2": { - "goal": "Collaborate with other agents to craft campfire", - "conversation": "Let's work together to craft campfire.", - "initial_inventory": { - "0": { - "oak_log": 8 - }, - "1": { - "coal": 1, - "crafting_table": 1 - } - }, - "agent_count": 2, - "target": "campfire", - "number_of_target": 1, - "type": "techtree", - "max_depth": 3, - "depth": 2, - "timeout": 300, - "blocked_actions": { - "0": [ - "!getCraftingPlan" - ], - "1": [] - }, - "missing_items": [ - ], - "requires_ctable": true - }, "multiagent_crafting_crossbow_full_plan_requires_ctable__depth_2": { "goal": "Collaborate with other agents to craft a crossbow", "conversation": "Let's work together to craft a crossbow.", diff --git a/tasks/crafting_tasks/test_tasks/filtered_tasks_3_agents.json b/tasks/crafting_tasks/test_tasks/filtered_tasks_3_agents.json index 49ce490..26df64f 100644 --- a/tasks/crafting_tasks/test_tasks/filtered_tasks_3_agents.json +++ b/tasks/crafting_tasks/test_tasks/filtered_tasks_3_agents.json @@ -155,7 +155,7 @@ "missing_items": [], "requires_crafting_table": true }, - "multiagent_crafting_requires_ctable_blue_banner_2_with_plan__depth_0_num_agents_3": { + "multiagent_crafting_requires_ctable_blue_banner_2_with_partial_plan__depth_0_num_agents_3": { "goal": "Collaborate with other agents to craft an blue_banner", "conversation": "Let's work together to craft an blue_banner.", "initial_inventory": { @@ -190,7 +190,7 @@ "missing_items": [], "requires_crafting_table": true }, - "multiagent_crafting_requires_ctable_cyan_bed_1_with_plan__depth_0_num_agents_3": { + "multiagent_crafting_requires_ctable_cyan_bed_1_with_partial_plan__depth_0_num_agents_3": { "goal": "Collaborate with other agents to craft an cyan_bed", "conversation": "Let's work together to craft an cyan_bed.", "initial_inventory": { diff --git a/tasks/evaluation_script.py b/tasks/evaluation_script.py index d91940f..cb380f5 100644 --- a/tasks/evaluation_script.py +++ b/tasks/evaluation_script.py @@ -13,7 +13,6 @@ import json import glob import socket -from tqdm import tqdm import boto3 BLOCKED_ACTIONS_COOKING = [ @@ -119,7 +118,7 @@ def aggregate_results(local_folders): elif "construction" in task_type: task_type = "construction" - for folder_path in tqdm(local_folders): + for folder_path in local_folders: folder_name = os.path.basename(folder_path) try: @@ -743,6 +742,7 @@ def main(): parser.add_argument('--no-pruning', action='store_true', help='Disable pruning of the actions') parser.add_argument('--block_conversation', action='store_true', help='Block conversation actions') parser.add_argument('--check', metavar='FOLDER_PATH', help='Check and evaluate results in the specified folder without running experiments') + parser.add_argument('--usernames', default="", help='Comma-separated list of usernames for the agents') args = parser.parse_args() print(args) @@ -763,6 +763,24 @@ def main(): clean_up_server_files(args.num_parallel) if args.add_keys: update_keys_json() + + # change task file to include usernames + with open(args.task_path, 'r') as f: + content = f.read() + task = json.loads(content) + # check if human count for first task is non zero + if "human_count" in task[list(task.keys())[0]]: + # check if human count is non zero + human_count = task[list(task.keys())[0]]["human_count"] + username_lst = args.usernames.replace(" ", "").split(",") + if len(username_lst) != human_count: + raise ValueError(f"Number of usernames provided ({len(username_lst)}) does not match human count ({human_count})") + if human_count > 0: + for task_id in task.keys(): + task[task_id]["usernames"] = username_lst + # dump to task_path + with open(args.task_path, 'w') as f: + json.dump(task, f, indent=4) launch_parallel_experiments(args.task_path, num_exp=args.num_exp, diff --git a/tasks/example_tasks.json b/tasks/example_tasks.json index 7a08ce4..8122649 100644 --- a/tasks/example_tasks.json +++ b/tasks/example_tasks.json @@ -21,7 +21,9 @@ "goal": "Just stand at a place and don't do anything", "agent_count": 1, "initial_inventory": { - "iron_ingot": 1 + "0" : { + "iron_ingot": 1 + } }, "type": "debug", "timeout": 60 @@ -100,6 +102,11 @@ "type": "debug", "timeout": 60 }, + "debug_goal": { + "goal": "Reply to all messages with star emojis when prompted", + "agent_count": 1, + "type": "debug" + }, "debug_different_goal": { "goal": { "0": "Reply to all messages with star emojis when prompted", @@ -111,7 +118,9 @@ "debug_inventory_restriction": { "goal": "Place 1 oak plank, then place 1 stone brick", "initial_inventory": { - "oak_planks": 20 + "0" : { + "oak_planks": 20 + } }, "type": "debug", "restrict_to_inventory": true @@ -120,13 +129,17 @@ "type": "construction", "goal": "Build a house", "initial_inventory": { - "oak_planks": 20 + "0" : { + "oak_planks": 20 + } } }, "techtree_1_shears_with_2_iron_ingot": { "goal": "Build a shear.", "initial_inventory": { - "iron_ingot": 2 + "0": { + "iron_ingot": 2 + } }, "target": "shears", "number_of_target": 1, diff --git a/tasks/experiment_script.sh b/tasks/experiment_script.sh new file mode 100644 index 0000000..f5cd34e --- /dev/null +++ b/tasks/experiment_script.sh @@ -0,0 +1,9 @@ +python3 tasks/evaluation_script.py --model claude-3-5-sonnet-latest --num_parallel 1 --num_exp 1 --exp_name "claude_2_agent_block_recipe" --template_profile ./profiles/tasks/cooking_profile.json --task_path tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen_full.json --num_agents 2 +sleep 360 +python3 tasks/evaluation_script.py --model claude-3-5-sonnet-latest --num_parallel 1 --num_exp 1 --exp_name "claude_2_agent_block_recipe" --template_profile ./profiles/tasks/cooking_profile.json --task_path tasks/cooking_tasks/require_collab_test_2_items/2_agent_full.json --num_agents 2 +sleep 360 +python3 tasks/evaluation_script.py --model gpt-4o --num_parallel 1 --num_exp 1 --exp_name "4o_2_agent_block_recipe" --template_profile ./profiles/tasks/cooking_profile.json --task_path tasks/cooking_tasks/require_collab_test_2_items/2_agent_hells_kitchen_full.json --num_agents 2 +sleep 360 +python3 tasks/evaluation_script.py --model gpt-4o --num_parallel 1 --num_exp 1 --exp_name "4o_2_agent_block_recipe" --template_profile ./profiles/tasks/cooking_profile.json --task_path tasks/cooking_tasks/require_collab_test_2_items/2_agent_full.json --num_agents 2 +sleep 360 +python3 tasks/evaluation_script.py --model gpt-4o --num_parallel 1 --num_exp 1 --exp_name "claude_2_agent_block_recipe" --template_profile ./profiles/tasks/cooking_profile.json --task_path tasks/cooking_tasks/require_collab_test_2_items/2_agent_block_recipe_full.json --num_agents 2 \ No newline at end of file diff --git a/tasks/human_ai_tasks.py b/tasks/human_ai_tasks.py new file mode 100644 index 0000000..11fec7a --- /dev/null +++ b/tasks/human_ai_tasks.py @@ -0,0 +1,58 @@ +# run all tasks in a given file + +import os +import json +import argparse +import subprocess +import time + +def run_task(task_path, task_id, profiles=None): + """Run a single task using main.js""" + # Convert task_path to absolute path if it's relative + if not os.path.isabs(task_path): + task_path = os.path.abspath(task_path) + + cmd = ["node", "main.js", "--task_path", task_path, "--task_id", task_id] + + # Add profiles if provided + if profiles: + cmd.extend(["--profiles", *profiles]) + + print(f"Running task: {task_id}") + + project_root = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) + + # Execute the command from the project root directory + process = subprocess.run(cmd, check=True, cwd=project_root) + + return process.returncode == 0 + +def main(): + parser = argparse.ArgumentParser(description='Run all tasks in a JSON file sequentially') + parser.add_argument('--task_path', required=True, help='Path to the task file') + parser.add_argument('--profiles', nargs='+', help='List of agent profile paths') + parser.add_argument('--delay', type=int, default=2, help='Delay in seconds between tasks') + + args = parser.parse_args() + + # Load the task file + with open(args.task_path, 'r') as f: + tasks = json.load(f) + + print(f"Found {len(tasks)} tasks in {args.task_path}") + + # Run each task sequentially + successful_tasks = 0 + for task_id in tasks: + success = run_task(args.task_path, task_id, args.profiles) + if success: + successful_tasks += 1 + + # Wait between tasks + time.sleep(args.delay) + + print(f"Completed {successful_tasks}/{len(tasks)} tasks successfully") + +if __name__ == "__main__": + main() + diff --git a/tasks/human_evaluation.js b/tasks/human_evaluation.js new file mode 100644 index 0000000..dbefe44 --- /dev/null +++ b/tasks/human_evaluation.js @@ -0,0 +1,133 @@ +import mineflayer from 'mineflayer'; +import yargs from 'yargs'; +import { hideBin } from 'yargs/helpers'; +import { Blueprint, ConstructionTaskValidator } from '../src/agent/tasks/construction_tasks.js'; +import { CookingTaskInitiator } from '../src/agent/tasks/cooking_tasks.js'; + +import fs from 'fs'; +import { start } from 'repl'; + +// add a mineflayer bot the world named Andy +const bot = mineflayer.createBot({ + host: 'localhost', // Replace with your server IP or hostname + port: 55916, // Replace with your server port + username: 'andy', // Replace with your bot's username + // password: 'your_bot_password' // Only if the server has online-mode=true +}); + +function parseArguments() { + return yargs(hideBin(process.argv)) + .option('usernames', { + type: 'array', + describe: 'List of usernames to give items to', + }) + .option('task_path', { + type: 'string', + describe: 'Path to task file to execute' + }) + .option('task_id', { + type: 'string', + describe: 'Task ID to execute' + }) + .help() + .alias('help', 'h') + .parse(); +} + +class Agent { + constructor(bot) { + this.bot = bot; + } +} + +// parse arguments +const args = parseArguments(); +console.log(args); + +// load in the task path +const taskPath = fs.readFileSync(args.task_path, 'utf8'); +const taskData = JSON.parse(taskPath); +const task_id = args.task_id; + +// give the required inventory items to the usernames specified in the usernames list +bot.on('spawn', async () => { + await new Promise(resolve => setTimeout(resolve, 5000)); + console.log("Bot spawned. Starting task..."); + + + // initiate the world according to the construction or cooking world + const usernames = args.usernames; + console.log(usernames); + bot.chat(`/tp andy ${usernames[0]}`); + await new Promise(resolve => setTimeout(resolve, 5000)); + // console.log(taskData); + console.log(`Task id is ${task_id}`) + console.log(task_id); + const task = taskData[task_id]; + console.log(task); + + // give the items to the users + for (let i = 0; i < usernames.length; i++) { + const user = usernames[i]; + bot.chat(`/clear ${user}`); + let userInventory = null; + if (task.initial_inventory) { + userInventory = task.initial_inventory[i]; + } + + if (userInventory) { + for (const item in userInventory) { + const count = userInventory[item]; + bot.chat(`/give ${user} ${item} ${count}`); + } + } else { + console.log(`No inventory found for user: ${user}`); + } + let validator = null; + + if (task.type === "techtree" ) { + bot.chat(`/tell ${user} You have the goal to ${task.goal}`); + } + + if (task.type === "construction") { + console.log(task.blueprint); + const blueprint = new Blueprint(task.blueprint); + console.log(blueprint); + const result = blueprint.autoDelete(); + const commands = result.commands; + // for (const command of commands) { + // bot.chat(command); + // } + // bot.chat(`/tp @a ${task.blueprint.levels[0].coordinates[0]} ${task.blueprint.levels[0].coordinates[1]} ${task.blueprint.levels[0].coordinates[2]}`); + // bot.chat(`/tell ${user} You have the goal to ${task.goal}`); + //todo: some sort of blueprint visualizer + } + if (task.type === "cooking") { + if (i === 0) { + const cooking_initiator = new CookingTaskInitiator(task, bot); + cooking_initiator.init(); + console.log("Cooking task initiated"); + } + await new Promise(resolve => setTimeout(resolve, 20000)); + const user_goal = task.goal[i]; + bot.chat(`You have the goal to ${user_goal}`); + } + } + + const timeout = task.timeout; + console.log(`Timeout set to ${timeout} seconds`); + // await new Promise(resolve => setTimeout(resolve, timeout * 1000)); + if (task.type === "construction") { + const blueprint = new Blueprint(task.blueprint); + const check = blueprint.explainBlueprintDifference(bot); + console.log(check); + const agent = new Agent(bot); + const validator = new ConstructionTaskValidator(task, agent); + const result = validator.validate(); + console.log(result); + bot.chat(`Score is ${result.score}`); + } + bot.chat(`Time is up!`); +}); +// give required information to the users in some way +// do some automatic timer sort of thing to give the users time to do the task diff --git a/tasks/new_analyze_construction_tasks.py b/tasks/new_analyze_construction_tasks.py new file mode 100644 index 0000000..0ebef63 --- /dev/null +++ b/tasks/new_analyze_construction_tasks.py @@ -0,0 +1,17 @@ +from evaluation_script import analyze_json_file, extract_result, aggregate_results, check_folder_results +import argparse + +def main(): + + parser = argparse.ArgumentParser(description="Analyze JSON files for construction tasks.") + parser.add_argument('--log_dir', type=str, nargs='+', help='Log dir to analyze') + + args = parser.parse_args() + log_dir = args.log_dir[0] + print(log_dir) + + results = check_folder_results(log_dir) + print(results) + +if __name__ == "__main__": + main() \ No newline at end of file