mirror of
https://github.com/kolbytn/mindcraft.git
synced 2025-08-10 09:15:34 +02:00
2 and 3 item tasks
This commit is contained in:
parent
156e5d87fc
commit
216a4cde5d
13 changed files with 5674 additions and 12 deletions
|
@ -244,7 +244,7 @@ chest_items = {
|
||||||
"iron_ingot": 64,
|
"iron_ingot": 64,
|
||||||
}
|
}
|
||||||
|
|
||||||
def reconfigure_tasks(task_path, new_task_path):
|
def reconfigure_tasks(task_path, new_task_path, num_agents=None):
|
||||||
with open(task_path, 'r') as f:
|
with open(task_path, 'r') as f:
|
||||||
tasks = json.load(f)
|
tasks = json.load(f)
|
||||||
task_ids = tasks.keys()
|
task_ids = tasks.keys()
|
||||||
|
@ -265,14 +265,23 @@ def reconfigure_tasks(task_path, new_task_path):
|
||||||
print(inventory)
|
print(inventory)
|
||||||
task["recipes"] = new_recipes
|
task["recipes"] = new_recipes
|
||||||
# assign inventory to the agents
|
# assign inventory to the agents
|
||||||
num_agents = task.get("agent_count", 0) + task.get("human_count", 0)
|
if num_agents is None:
|
||||||
|
num_agents = task.get("agent_count", 0) + task.get("human_count", 0)
|
||||||
|
else:
|
||||||
|
task["agent_count"] = num_agents
|
||||||
initial_inventory = {}
|
initial_inventory = {}
|
||||||
for i in range(num_agents):
|
for i in range(num_agents):
|
||||||
initial_inventory[i] = {}
|
initial_inventory[i] = {}
|
||||||
items_lst = list(inventory.keys())
|
items_lst = list(inventory.keys())
|
||||||
for i in range(len(items_lst)):
|
for i in range(len(items_lst)):
|
||||||
agent_num = i % num_agents
|
agent_num = i % num_agents
|
||||||
initial_inventory[agent_num][items_lst[i]] = inventory[items_lst[i]]
|
if inventory[items_lst[i]] == 1:
|
||||||
|
initial_inventory[agent_num][items_lst[i]] = 1
|
||||||
|
elif inventory[items_lst[i]] > 1:
|
||||||
|
num_per_agent = inventory[items_lst[i]] // num_agents + 1
|
||||||
|
for j in range(num_agents):
|
||||||
|
initial_inventory[j][items_lst[i]] = num_per_agent
|
||||||
|
# initial_inventory[agent_num][items_lst[i]] = inventory[items_lst[i]]
|
||||||
task["initial_inventory"] = initial_inventory
|
task["initial_inventory"] = initial_inventory
|
||||||
|
|
||||||
goals = task.get("goal", {})
|
goals = task.get("goal", {})
|
||||||
|
@ -292,13 +301,23 @@ def reconfigure_tasks(task_path, new_task_path):
|
||||||
with open(new_task_path, 'w') as f:
|
with open(new_task_path, 'w') as f:
|
||||||
json.dump(tasks, f, indent=4)
|
json.dump(tasks, f, indent=4)
|
||||||
|
|
||||||
reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/2_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/2_agent.json")
|
|
||||||
reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/3_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/3_agent.json")
|
|
||||||
reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/4_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/4_agent.json")
|
|
||||||
reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/5_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/5_agent.json")
|
|
||||||
|
|
||||||
reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/2_agent_cooking_train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train/2_agent.json")
|
|
||||||
reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train/2_agent_blocked_access.json")
|
reconfigure_tasks("mindcraft/tasks/cooking_tasks/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/train_tasks/train_tasks_3_agents.json", "mindcraft/tasks/cooking_tasks/require_collab_train/3_agent.json")
|
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/train_tasks/train_tasks_4_agents.json", "mindcraft/tasks/cooking_tasks/require_collab_train/4_agent.json")
|
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/train_tasks/train_tasks_5_agents.json", "mindcraft/tasks/cooking_tasks/require_collab_train/5_agent.json")
|
reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/3_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_3_items/5_agent.json", 5)
|
||||||
|
|
||||||
|
reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/2_agent.json", 2)
|
||||||
|
reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/3_agent.json", 3)
|
||||||
|
reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/4_agent.json", 4)
|
||||||
|
reconfigure_tasks("mindcraft/tasks/cooking_tasks/test_tasks/2_agent_cooking_test_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_test_2_items/5_agent.json", 5)
|
||||||
|
# reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/3_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/3_agent.json")
|
||||||
|
# reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/4_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/4_agent.json")
|
||||||
|
# reconfigure_tasks("mindcraft/tasks/cooking_tasks/equal_load_test_tasks/5_agent.json", "mindcraft/tasks/cooking_tasks/require_collab_test/5_agent.json")
|
||||||
|
|
||||||
|
# reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/2_agent_cooking_train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train/2_agent.json")
|
||||||
|
# reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/train_tasks.json", "mindcraft/tasks/cooking_tasks/require_collab_train/2_agent_blocked_access.json")
|
||||||
|
# reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/train_tasks_3_agents.json", "mindcraft/tasks/cooking_tasks/require_collab_train/3_agent.json")
|
||||||
|
# reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/train_tasks_4_agents.json", "mindcraft/tasks/cooking_tasks/require_collab_train/4_agent.json")
|
||||||
|
# reconfigure_tasks("mindcraft/tasks/cooking_tasks/train_tasks/train_tasks_5_agents.json", "mindcraft/tasks/cooking_tasks/require_collab_train/5_agent.json")
|
380
tasks/cooking_tasks/require_collab_test_2_items/2_agent.json
Normal file
380
tasks/cooking_tasks/require_collab_test_2_items/2_agent.json
Normal file
|
@ -0,0 +1,380 @@
|
||||||
|
{
|
||||||
|
"multiagent_cooking_2_1_bread_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make golden_apple, bread.",
|
||||||
|
"agent_count": 2,
|
||||||
|
"target": {
|
||||||
|
"golden_apple": 1,
|
||||||
|
"bread": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"gold_ingot": 5
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"gold_ingot": 5,
|
||||||
|
"apple": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_golden_apple_1_rabbit_stew": {
|
||||||
|
"conversation": "Let's work together to make golden_apple, rabbit_stew.",
|
||||||
|
"agent_count": 2,
|
||||||
|
"target": {
|
||||||
|
"golden_apple": 1,
|
||||||
|
"rabbit_stew": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to the furnace and bake the potato.",
|
||||||
|
"Step 5: From your inventory or other agents get a bowl",
|
||||||
|
"Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 7: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"gold_ingot": 5,
|
||||||
|
"bowl": 1
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"gold_ingot": 5,
|
||||||
|
"apple": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_bread_1_cake": {
|
||||||
|
"conversation": "Let's work together to make cake, bread.",
|
||||||
|
"agent_count": 2,
|
||||||
|
"target": {
|
||||||
|
"cake": 1,
|
||||||
|
"bread": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).",
|
||||||
|
"Step 3: Get an egg from your inventory or other agents.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"milk_bucket": 2
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"milk_bucket": 2,
|
||||||
|
"egg": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_baked_potato_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make baked_potato, golden_apple.",
|
||||||
|
"agent_count": 2,
|
||||||
|
"target": {
|
||||||
|
"baked_potato": 1,
|
||||||
|
"golden_apple": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 5,
|
||||||
|
"gold_ingot": 5,
|
||||||
|
"apple": 1
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 5,
|
||||||
|
"gold_ingot": 5
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_baked_potato_1_rabbit_stew": {
|
||||||
|
"conversation": "Let's work together to make baked_potato, rabbit_stew.",
|
||||||
|
"agent_count": 2,
|
||||||
|
"target": {
|
||||||
|
"baked_potato": 1,
|
||||||
|
"rabbit_stew": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to the furnace and bake the potato.",
|
||||||
|
"Step 5: From your inventory or other agents get a bowl",
|
||||||
|
"Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 7: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 5
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 5,
|
||||||
|
"bowl": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_bread_1_rabbit_stew": {
|
||||||
|
"conversation": "Let's work together to make rabbit_stew, bread.",
|
||||||
|
"agent_count": 2,
|
||||||
|
"target": {
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"bread": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to the furnace and bake the potato.",
|
||||||
|
"Step 5: From your inventory or other agents get a bowl",
|
||||||
|
"Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 7: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"bowl": 1
|
||||||
|
},
|
||||||
|
"1": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_baked_potato_1_bread": {
|
||||||
|
"conversation": "Let's work together to make bread, baked_potato.",
|
||||||
|
"agent_count": 2,
|
||||||
|
"target": {
|
||||||
|
"bread": 1,
|
||||||
|
"baked_potato": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 bread, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 bread, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 5
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 5
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_baked_potato_1_cake": {
|
||||||
|
"conversation": "Let's work together to make baked_potato, cake.",
|
||||||
|
"agent_count": 2,
|
||||||
|
"target": {
|
||||||
|
"baked_potato": 1,
|
||||||
|
"cake": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).",
|
||||||
|
"Step 3: Get an egg from your inventory or other agents.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 5,
|
||||||
|
"milk_bucket": 2,
|
||||||
|
"egg": 1
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 5,
|
||||||
|
"milk_bucket": 2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_cooked_beef_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make golden_apple, cooked_beef.",
|
||||||
|
"agent_count": 2,
|
||||||
|
"target": {
|
||||||
|
"golden_apple": 1,
|
||||||
|
"cooked_beef": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"gold_ingot": 5,
|
||||||
|
"coal": 5
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"gold_ingot": 5,
|
||||||
|
"apple": 1,
|
||||||
|
"coal": 5
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_bread_1_cooked_beef": {
|
||||||
|
"conversation": "Let's work together to make bread, cooked_beef.",
|
||||||
|
"agent_count": 2,
|
||||||
|
"target": {
|
||||||
|
"bread": 1,
|
||||||
|
"cooked_beef": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 5
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 5
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
411
tasks/cooking_tasks/require_collab_test_2_items/3_agent.json
Normal file
411
tasks/cooking_tasks/require_collab_test_2_items/3_agent.json
Normal file
|
@ -0,0 +1,411 @@
|
||||||
|
{
|
||||||
|
"multiagent_cooking_2_1_bread_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make golden_apple, bread.",
|
||||||
|
"agent_count": 3,
|
||||||
|
"target": {
|
||||||
|
"golden_apple": 1,
|
||||||
|
"bread": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"gold_ingot": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"apple": 1
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"gold_ingot": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_golden_apple_1_rabbit_stew": {
|
||||||
|
"conversation": "Let's work together to make golden_apple, rabbit_stew.",
|
||||||
|
"agent_count": 3,
|
||||||
|
"target": {
|
||||||
|
"golden_apple": 1,
|
||||||
|
"rabbit_stew": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to the furnace and bake the potato.",
|
||||||
|
"Step 5: From your inventory or other agents get a bowl",
|
||||||
|
"Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 7: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"gold_ingot": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"apple": 1
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"bowl": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_bread_1_cake": {
|
||||||
|
"conversation": "Let's work together to make cake, bread.",
|
||||||
|
"agent_count": 3,
|
||||||
|
"target": {
|
||||||
|
"cake": 1,
|
||||||
|
"bread": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).",
|
||||||
|
"Step 3: Get an egg from your inventory or other agents.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"milk_bucket": 2
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"milk_bucket": 2,
|
||||||
|
"egg": 1
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"milk_bucket": 2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_baked_potato_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make baked_potato, golden_apple.",
|
||||||
|
"agent_count": 3,
|
||||||
|
"target": {
|
||||||
|
"baked_potato": 1,
|
||||||
|
"golden_apple": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 3,
|
||||||
|
"gold_ingot": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 3,
|
||||||
|
"gold_ingot": 3
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 3,
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"apple": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_baked_potato_1_rabbit_stew": {
|
||||||
|
"conversation": "Let's work together to make baked_potato, rabbit_stew.",
|
||||||
|
"agent_count": 3,
|
||||||
|
"target": {
|
||||||
|
"baked_potato": 1,
|
||||||
|
"rabbit_stew": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to the furnace and bake the potato.",
|
||||||
|
"Step 5: From your inventory or other agents get a bowl",
|
||||||
|
"Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 7: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 3,
|
||||||
|
"bowl": 1
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_bread_1_rabbit_stew": {
|
||||||
|
"conversation": "Let's work together to make rabbit_stew, bread.",
|
||||||
|
"agent_count": 3,
|
||||||
|
"target": {
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"bread": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to the furnace and bake the potato.",
|
||||||
|
"Step 5: From your inventory or other agents get a bowl",
|
||||||
|
"Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 7: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"bowl": 1
|
||||||
|
},
|
||||||
|
"1": {},
|
||||||
|
"2": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_baked_potato_1_bread": {
|
||||||
|
"conversation": "Let's work together to make bread, baked_potato.",
|
||||||
|
"agent_count": 3,
|
||||||
|
"target": {
|
||||||
|
"bread": 1,
|
||||||
|
"baked_potato": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 bread, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 bread, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_baked_potato_1_cake": {
|
||||||
|
"conversation": "Let's work together to make baked_potato, cake.",
|
||||||
|
"agent_count": 3,
|
||||||
|
"target": {
|
||||||
|
"baked_potato": 1,
|
||||||
|
"cake": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).",
|
||||||
|
"Step 3: Get an egg from your inventory or other agents.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 2
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 2
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 2,
|
||||||
|
"egg": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_cooked_beef_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make golden_apple, cooked_beef.",
|
||||||
|
"agent_count": 3,
|
||||||
|
"target": {
|
||||||
|
"golden_apple": 1,
|
||||||
|
"cooked_beef": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"apple": 1,
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"coal": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_bread_1_cooked_beef": {
|
||||||
|
"conversation": "Let's work together to make bread, cooked_beef.",
|
||||||
|
"agent_count": 3,
|
||||||
|
"target": {
|
||||||
|
"bread": 1,
|
||||||
|
"cooked_beef": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
442
tasks/cooking_tasks/require_collab_test_2_items/4_agent.json
Normal file
442
tasks/cooking_tasks/require_collab_test_2_items/4_agent.json
Normal file
|
@ -0,0 +1,442 @@
|
||||||
|
{
|
||||||
|
"multiagent_cooking_2_1_bread_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make golden_apple, bread.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"golden_apple": 1,
|
||||||
|
"bread": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"gold_ingot": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"apple": 1
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"gold_ingot": 3
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"gold_ingot": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_golden_apple_1_rabbit_stew": {
|
||||||
|
"conversation": "Let's work together to make golden_apple, rabbit_stew.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"golden_apple": 1,
|
||||||
|
"rabbit_stew": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to the furnace and bake the potato.",
|
||||||
|
"Step 5: From your inventory or other agents get a bowl",
|
||||||
|
"Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 7: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"gold_ingot": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"apple": 1
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"bowl": 1
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"gold_ingot": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_bread_1_cake": {
|
||||||
|
"conversation": "Let's work together to make cake, bread.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"cake": 1,
|
||||||
|
"bread": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).",
|
||||||
|
"Step 3: Get an egg from your inventory or other agents.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"milk_bucket": 1,
|
||||||
|
"egg": 1
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"milk_bucket": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_baked_potato_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make baked_potato, golden_apple.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"baked_potato": 1,
|
||||||
|
"golden_apple": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 3,
|
||||||
|
"gold_ingot": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 3,
|
||||||
|
"gold_ingot": 3
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 3,
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"apple": 1
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 3,
|
||||||
|
"gold_ingot": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_baked_potato_1_rabbit_stew": {
|
||||||
|
"conversation": "Let's work together to make baked_potato, rabbit_stew.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"baked_potato": 1,
|
||||||
|
"rabbit_stew": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to the furnace and bake the potato.",
|
||||||
|
"Step 5: From your inventory or other agents get a bowl",
|
||||||
|
"Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 7: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 3,
|
||||||
|
"bowl": 1
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_bread_1_rabbit_stew": {
|
||||||
|
"conversation": "Let's work together to make rabbit_stew, bread.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"bread": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to the furnace and bake the potato.",
|
||||||
|
"Step 5: From your inventory or other agents get a bowl",
|
||||||
|
"Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 7: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"bowl": 1
|
||||||
|
},
|
||||||
|
"1": {},
|
||||||
|
"2": {},
|
||||||
|
"3": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_baked_potato_1_bread": {
|
||||||
|
"conversation": "Let's work together to make bread, baked_potato.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"bread": 1,
|
||||||
|
"baked_potato": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 bread, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 bread, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_baked_potato_1_cake": {
|
||||||
|
"conversation": "Let's work together to make baked_potato, cake.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"baked_potato": 1,
|
||||||
|
"cake": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).",
|
||||||
|
"Step 3: Get an egg from your inventory or other agents.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 1,
|
||||||
|
"egg": 1
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_cooked_beef_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make golden_apple, cooked_beef.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"golden_apple": 1,
|
||||||
|
"cooked_beef": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"apple": 1,
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"coal": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_bread_1_cooked_beef": {
|
||||||
|
"conversation": "Let's work together to make bread, cooked_beef.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"bread": 1,
|
||||||
|
"cooked_beef": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,442 @@
|
||||||
|
{
|
||||||
|
"multiagent_cooking_2_1_bread_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make golden_apple, bread.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"golden_apple": 1,
|
||||||
|
"bread": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"gold_ingot": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"apple": 1
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"gold_ingot": 3
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"gold_ingot": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_golden_apple_1_rabbit_stew": {
|
||||||
|
"conversation": "Let's work together to make golden_apple, rabbit_stew.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"golden_apple": 1,
|
||||||
|
"rabbit_stew": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to the furnace and bake the potato.",
|
||||||
|
"Step 5: From your inventory or other agents get a bowl",
|
||||||
|
"Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 7: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"gold_ingot": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"apple": 1
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"bowl": 1
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"gold_ingot": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_bread_1_cake": {
|
||||||
|
"conversation": "Let's work together to make cake, bread.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"cake": 1,
|
||||||
|
"bread": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).",
|
||||||
|
"Step 3: Get an egg from your inventory or other agents.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"milk_bucket": 1,
|
||||||
|
"egg": 1
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"milk_bucket": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_baked_potato_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make baked_potato, golden_apple.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"baked_potato": 1,
|
||||||
|
"golden_apple": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 3,
|
||||||
|
"gold_ingot": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 3,
|
||||||
|
"gold_ingot": 3
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 3,
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"apple": 1
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 3,
|
||||||
|
"gold_ingot": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_baked_potato_1_rabbit_stew": {
|
||||||
|
"conversation": "Let's work together to make baked_potato, rabbit_stew.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"baked_potato": 1,
|
||||||
|
"rabbit_stew": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to the furnace and bake the potato.",
|
||||||
|
"Step 5: From your inventory or other agents get a bowl",
|
||||||
|
"Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 7: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 3,
|
||||||
|
"bowl": 1
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_bread_1_rabbit_stew": {
|
||||||
|
"conversation": "Let's work together to make rabbit_stew, bread.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"bread": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to the furnace and bake the potato.",
|
||||||
|
"Step 5: From your inventory or other agents get a bowl",
|
||||||
|
"Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 7: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"bowl": 1
|
||||||
|
},
|
||||||
|
"1": {},
|
||||||
|
"2": {},
|
||||||
|
"3": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_baked_potato_1_bread": {
|
||||||
|
"conversation": "Let's work together to make bread, baked_potato.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"bread": 1,
|
||||||
|
"baked_potato": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 bread, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 bread, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_baked_potato_1_cake": {
|
||||||
|
"conversation": "Let's work together to make baked_potato, cake.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"baked_potato": 1,
|
||||||
|
"cake": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).",
|
||||||
|
"Step 3: Get an egg from your inventory or other agents.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 1,
|
||||||
|
"egg": 1
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_cooked_beef_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make golden_apple, cooked_beef.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"golden_apple": 1,
|
||||||
|
"cooked_beef": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"apple": 1,
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"coal": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_bread_1_cooked_beef": {
|
||||||
|
"conversation": "Let's work together to make bread, cooked_beef.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"bread": 1,
|
||||||
|
"cooked_beef": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
473
tasks/cooking_tasks/require_collab_test_2_items/5_agent.json
Normal file
473
tasks/cooking_tasks/require_collab_test_2_items/5_agent.json
Normal file
|
@ -0,0 +1,473 @@
|
||||||
|
{
|
||||||
|
"multiagent_cooking_2_1_bread_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make golden_apple, bread.",
|
||||||
|
"agent_count": 5,
|
||||||
|
"target": {
|
||||||
|
"golden_apple": 1,
|
||||||
|
"bread": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"gold_ingot": 2
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"gold_ingot": 2,
|
||||||
|
"apple": 1
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"gold_ingot": 2
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"gold_ingot": 2
|
||||||
|
},
|
||||||
|
"4": {
|
||||||
|
"gold_ingot": 2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_golden_apple_1_rabbit_stew": {
|
||||||
|
"conversation": "Let's work together to make golden_apple, rabbit_stew.",
|
||||||
|
"agent_count": 5,
|
||||||
|
"target": {
|
||||||
|
"golden_apple": 1,
|
||||||
|
"rabbit_stew": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to the furnace and bake the potato.",
|
||||||
|
"Step 5: From your inventory or other agents get a bowl",
|
||||||
|
"Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 7: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"gold_ingot": 2
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"gold_ingot": 2,
|
||||||
|
"apple": 1
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"gold_ingot": 2,
|
||||||
|
"bowl": 1
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"gold_ingot": 2
|
||||||
|
},
|
||||||
|
"4": {
|
||||||
|
"gold_ingot": 2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_bread_1_cake": {
|
||||||
|
"conversation": "Let's work together to make cake, bread.",
|
||||||
|
"agent_count": 5,
|
||||||
|
"target": {
|
||||||
|
"cake": 1,
|
||||||
|
"bread": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).",
|
||||||
|
"Step 3: Get an egg from your inventory or other agents.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"milk_bucket": 1,
|
||||||
|
"egg": 1
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"4": {
|
||||||
|
"milk_bucket": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_baked_potato_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make baked_potato, golden_apple.",
|
||||||
|
"agent_count": 5,
|
||||||
|
"target": {
|
||||||
|
"baked_potato": 1,
|
||||||
|
"golden_apple": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 2,
|
||||||
|
"gold_ingot": 2
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 2,
|
||||||
|
"gold_ingot": 2
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 2,
|
||||||
|
"gold_ingot": 2,
|
||||||
|
"apple": 1
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 2,
|
||||||
|
"gold_ingot": 2
|
||||||
|
},
|
||||||
|
"4": {
|
||||||
|
"coal": 2,
|
||||||
|
"gold_ingot": 2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_baked_potato_1_rabbit_stew": {
|
||||||
|
"conversation": "Let's work together to make baked_potato, rabbit_stew.",
|
||||||
|
"agent_count": 5,
|
||||||
|
"target": {
|
||||||
|
"baked_potato": 1,
|
||||||
|
"rabbit_stew": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to the furnace and bake the potato.",
|
||||||
|
"Step 5: From your inventory or other agents get a bowl",
|
||||||
|
"Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 7: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 2
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 2,
|
||||||
|
"bowl": 1
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 2
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 2
|
||||||
|
},
|
||||||
|
"4": {
|
||||||
|
"coal": 2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_bread_1_rabbit_stew": {
|
||||||
|
"conversation": "Let's work together to make rabbit_stew, bread.",
|
||||||
|
"agent_count": 5,
|
||||||
|
"target": {
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"bread": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to the furnace and bake the potato.",
|
||||||
|
"Step 5: From your inventory or other agents get a bowl",
|
||||||
|
"Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 7: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"bowl": 1
|
||||||
|
},
|
||||||
|
"1": {},
|
||||||
|
"2": {},
|
||||||
|
"3": {},
|
||||||
|
"4": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_baked_potato_1_bread": {
|
||||||
|
"conversation": "Let's work together to make bread, baked_potato.",
|
||||||
|
"agent_count": 5,
|
||||||
|
"target": {
|
||||||
|
"bread": 1,
|
||||||
|
"baked_potato": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 bread, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 bread, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 2
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 2
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 2
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 2
|
||||||
|
},
|
||||||
|
"4": {
|
||||||
|
"coal": 2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_baked_potato_1_cake": {
|
||||||
|
"conversation": "Let's work together to make baked_potato, cake.",
|
||||||
|
"agent_count": 5,
|
||||||
|
"target": {
|
||||||
|
"baked_potato": 1,
|
||||||
|
"cake": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).",
|
||||||
|
"Step 3: Get an egg from your inventory or other agents.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 2,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 2,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 2,
|
||||||
|
"milk_bucket": 1,
|
||||||
|
"egg": 1
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 2,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"4": {
|
||||||
|
"coal": 2,
|
||||||
|
"milk_bucket": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_cooked_beef_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make golden_apple, cooked_beef.",
|
||||||
|
"agent_count": 5,
|
||||||
|
"target": {
|
||||||
|
"golden_apple": 1,
|
||||||
|
"cooked_beef": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"gold_ingot": 2,
|
||||||
|
"coal": 2
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"gold_ingot": 2,
|
||||||
|
"apple": 1,
|
||||||
|
"coal": 2
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"gold_ingot": 2,
|
||||||
|
"coal": 2
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"gold_ingot": 2,
|
||||||
|
"coal": 2
|
||||||
|
},
|
||||||
|
"4": {
|
||||||
|
"gold_ingot": 2,
|
||||||
|
"coal": 2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_bread_1_cooked_beef": {
|
||||||
|
"conversation": "Let's work together to make bread, cooked_beef.",
|
||||||
|
"agent_count": 5,
|
||||||
|
"target": {
|
||||||
|
"bread": 1,
|
||||||
|
"cooked_beef": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 2
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 2
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 2
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 2
|
||||||
|
},
|
||||||
|
"4": {
|
||||||
|
"coal": 2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,442 @@
|
||||||
|
{
|
||||||
|
"multiagent_cooking_2_1_bread_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make golden_apple, bread.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"golden_apple": 1,
|
||||||
|
"bread": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 golden_apple, 1 bread. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"gold_ingot": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"apple": 1
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"gold_ingot": 3
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"gold_ingot": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_golden_apple_1_rabbit_stew": {
|
||||||
|
"conversation": "Let's work together to make golden_apple, rabbit_stew.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"golden_apple": 1,
|
||||||
|
"rabbit_stew": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to the furnace and bake the potato.",
|
||||||
|
"Step 5: From your inventory or other agents get a bowl",
|
||||||
|
"Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 7: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 golden_apple, 1 rabbit_stew. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"gold_ingot": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"apple": 1
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"bowl": 1
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"gold_ingot": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_bread_1_cake": {
|
||||||
|
"conversation": "Let's work together to make cake, bread.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"cake": 1,
|
||||||
|
"bread": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).",
|
||||||
|
"Step 3: Get an egg from your inventory or other agents.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cake, 1 bread. Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"milk_bucket": 1,
|
||||||
|
"egg": 1
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"milk_bucket": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_baked_potato_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make baked_potato, golden_apple.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"baked_potato": 1,
|
||||||
|
"golden_apple": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 baked_potato, 1 golden_apple. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 3,
|
||||||
|
"gold_ingot": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 3,
|
||||||
|
"gold_ingot": 3
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 3,
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"apple": 1
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 3,
|
||||||
|
"gold_ingot": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_baked_potato_1_rabbit_stew": {
|
||||||
|
"conversation": "Let's work together to make baked_potato, rabbit_stew.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"baked_potato": 1,
|
||||||
|
"rabbit_stew": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to the furnace and bake the potato.",
|
||||||
|
"Step 5: From your inventory or other agents get a bowl",
|
||||||
|
"Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 7: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 baked_potato, 1 rabbit_stew. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 3,
|
||||||
|
"bowl": 1
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_bread_1_rabbit_stew": {
|
||||||
|
"conversation": "Let's work together to make rabbit_stew, bread.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"bread": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to the furnace and bake the potato.",
|
||||||
|
"Step 5: From your inventory or other agents get a bowl",
|
||||||
|
"Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 7: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"bowl": 1
|
||||||
|
},
|
||||||
|
"1": {},
|
||||||
|
"2": {},
|
||||||
|
"3": {}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_baked_potato_1_bread": {
|
||||||
|
"conversation": "Let's work together to make bread, baked_potato.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"bread": 1,
|
||||||
|
"baked_potato": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 bread, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 bread, 1 baked_potato. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_baked_potato_1_cake": {
|
||||||
|
"conversation": "Let's work together to make baked_potato, cake.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"baked_potato": 1,
|
||||||
|
"cake": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).",
|
||||||
|
"Step 3: Get an egg from your inventory or other agents.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 1,
|
||||||
|
"egg": 1
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_cooked_beef_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make golden_apple, cooked_beef.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"golden_apple": 1,
|
||||||
|
"cooked_beef": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"apple": 1,
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"coal": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_2_1_bread_1_cooked_beef": {
|
||||||
|
"conversation": "Let's work together to make bread, cooked_beef.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"bread": 1,
|
||||||
|
"cooked_beef": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
441
tasks/cooking_tasks/require_collab_test_3_items/2_agent.json
Normal file
441
tasks/cooking_tasks/require_collab_test_3_items/2_agent.json
Normal file
|
@ -0,0 +1,441 @@
|
||||||
|
{
|
||||||
|
"multiagent_cooking_3_1_baked_potato_1_bread_1_cake": {
|
||||||
|
"conversation": "Let's work together to make bread, baked_potato, cake.",
|
||||||
|
"agent_count": 2,
|
||||||
|
"target": {
|
||||||
|
"bread": 1,
|
||||||
|
"baked_potato": 1,
|
||||||
|
"cake": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).",
|
||||||
|
"Step 3: Get an egg from your inventory or other agents.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 5,
|
||||||
|
"milk_bucket": 2,
|
||||||
|
"egg": 1
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 5,
|
||||||
|
"milk_bucket": 2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_cake_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make golden_apple, cake.",
|
||||||
|
"agent_count": 2,
|
||||||
|
"target": {
|
||||||
|
"golden_apple": 1,
|
||||||
|
"cake": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).",
|
||||||
|
"Step 3: Get an egg from your inventory or other agents.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"gold_ingot": 5,
|
||||||
|
"milk_bucket": 2
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"gold_ingot": 5,
|
||||||
|
"apple": 1,
|
||||||
|
"milk_bucket": 2,
|
||||||
|
"egg": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_baked_potato_1_cooked_beef_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make golden_apple, cooked_beef, baked_potato.",
|
||||||
|
"agent_count": 2,
|
||||||
|
"target": {
|
||||||
|
"golden_apple": 1,
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"baked_potato": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"gold_ingot": 5,
|
||||||
|
"coal": 9
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"gold_ingot": 5,
|
||||||
|
"apple": 1,
|
||||||
|
"coal": 9
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_bread_1_cooked_beef_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make cooked_beef, bread, golden_apple.",
|
||||||
|
"agent_count": 2,
|
||||||
|
"target": {
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"bread": 1,
|
||||||
|
"golden_apple": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 5,
|
||||||
|
"gold_ingot": 5,
|
||||||
|
"apple": 1
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 5,
|
||||||
|
"gold_ingot": 5
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_baked_potato_1_cake": {
|
||||||
|
"conversation": "Let's work together to make baked_potato, cake.",
|
||||||
|
"agent_count": 2,
|
||||||
|
"target": {
|
||||||
|
"baked_potato": 1,
|
||||||
|
"cake": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).",
|
||||||
|
"Step 3: Get an egg from your inventory or other agents.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 5,
|
||||||
|
"milk_bucket": 2,
|
||||||
|
"egg": 1
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 5,
|
||||||
|
"milk_bucket": 2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_bread_1_golden_apple_1_rabbit_stew": {
|
||||||
|
"conversation": "Let's work together to make rabbit_stew, bread, golden_apple.",
|
||||||
|
"agent_count": 2,
|
||||||
|
"target": {
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"bread": 1,
|
||||||
|
"golden_apple": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to the furnace and bake the potato.",
|
||||||
|
"Step 5: From your inventory or other agents get a bowl",
|
||||||
|
"Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 7: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"bowl": 1,
|
||||||
|
"gold_ingot": 5,
|
||||||
|
"apple": 1
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"gold_ingot": 5
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_baked_potato_1_bread_1_cooked_beef": {
|
||||||
|
"conversation": "Let's work together to make bread, baked_potato, cooked_beef.",
|
||||||
|
"agent_count": 2,
|
||||||
|
"target": {
|
||||||
|
"bread": 1,
|
||||||
|
"baked_potato": 1,
|
||||||
|
"cooked_beef": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 9
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 9
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_baked_potato_1_rabbit_stew": {
|
||||||
|
"conversation": "Let's work together to make rabbit_stew, baked_potato.",
|
||||||
|
"agent_count": 2,
|
||||||
|
"target": {
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"baked_potato": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to the furnace and bake the potato.",
|
||||||
|
"Step 5: From your inventory or other agents get a bowl",
|
||||||
|
"Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 7: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"bowl": 1,
|
||||||
|
"coal": 5
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 5
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_cake_1_cooked_beef_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make cooked_beef, cake, golden_apple.",
|
||||||
|
"agent_count": 2,
|
||||||
|
"target": {
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"cake": 1,
|
||||||
|
"golden_apple": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).",
|
||||||
|
"Step 3: Get an egg from your inventory or other agents.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 5,
|
||||||
|
"milk_bucket": 2,
|
||||||
|
"egg": 1,
|
||||||
|
"gold_ingot": 5,
|
||||||
|
"apple": 1
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 5,
|
||||||
|
"milk_bucket": 2,
|
||||||
|
"gold_ingot": 5
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_bread_1_cooked_beef": {
|
||||||
|
"conversation": "Let's work together to make cooked_beef, bread.",
|
||||||
|
"agent_count": 2,
|
||||||
|
"target": {
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"bread": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 5
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 5
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
478
tasks/cooking_tasks/require_collab_test_3_items/3_agent.json
Normal file
478
tasks/cooking_tasks/require_collab_test_3_items/3_agent.json
Normal file
|
@ -0,0 +1,478 @@
|
||||||
|
{
|
||||||
|
"multiagent_cooking_3_1_baked_potato_1_bread_1_cake": {
|
||||||
|
"conversation": "Let's work together to make bread, baked_potato, cake.",
|
||||||
|
"agent_count": 3,
|
||||||
|
"target": {
|
||||||
|
"bread": 1,
|
||||||
|
"baked_potato": 1,
|
||||||
|
"cake": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).",
|
||||||
|
"Step 3: Get an egg from your inventory or other agents.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 2
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 2
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 2,
|
||||||
|
"egg": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_cake_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make golden_apple, cake.",
|
||||||
|
"agent_count": 3,
|
||||||
|
"target": {
|
||||||
|
"golden_apple": 1,
|
||||||
|
"cake": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).",
|
||||||
|
"Step 3: Get an egg from your inventory or other agents.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"milk_bucket": 2,
|
||||||
|
"egg": 1
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"apple": 1,
|
||||||
|
"milk_bucket": 2
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"milk_bucket": 2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_baked_potato_1_cooked_beef_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make golden_apple, cooked_beef, baked_potato.",
|
||||||
|
"agent_count": 3,
|
||||||
|
"target": {
|
||||||
|
"golden_apple": 1,
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"baked_potato": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"coal": 6
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"apple": 1,
|
||||||
|
"coal": 6
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"coal": 6
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_bread_1_cooked_beef_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make cooked_beef, bread, golden_apple.",
|
||||||
|
"agent_count": 3,
|
||||||
|
"target": {
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"bread": 1,
|
||||||
|
"golden_apple": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 3,
|
||||||
|
"gold_ingot": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 3,
|
||||||
|
"gold_ingot": 3
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 3,
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"apple": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_baked_potato_1_cake": {
|
||||||
|
"conversation": "Let's work together to make baked_potato, cake.",
|
||||||
|
"agent_count": 3,
|
||||||
|
"target": {
|
||||||
|
"baked_potato": 1,
|
||||||
|
"cake": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).",
|
||||||
|
"Step 3: Get an egg from your inventory or other agents.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 2
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 2
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 2,
|
||||||
|
"egg": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_bread_1_golden_apple_1_rabbit_stew": {
|
||||||
|
"conversation": "Let's work together to make rabbit_stew, bread, golden_apple.",
|
||||||
|
"agent_count": 3,
|
||||||
|
"target": {
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"bread": 1,
|
||||||
|
"golden_apple": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to the furnace and bake the potato.",
|
||||||
|
"Step 5: From your inventory or other agents get a bowl",
|
||||||
|
"Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 7: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"bowl": 1,
|
||||||
|
"gold_ingot": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"gold_ingot": 3
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"apple": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_baked_potato_1_bread_1_cooked_beef": {
|
||||||
|
"conversation": "Let's work together to make bread, baked_potato, cooked_beef.",
|
||||||
|
"agent_count": 3,
|
||||||
|
"target": {
|
||||||
|
"bread": 1,
|
||||||
|
"baked_potato": 1,
|
||||||
|
"cooked_beef": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 6
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 6
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 6
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_baked_potato_1_rabbit_stew": {
|
||||||
|
"conversation": "Let's work together to make rabbit_stew, baked_potato.",
|
||||||
|
"agent_count": 3,
|
||||||
|
"target": {
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"baked_potato": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to the furnace and bake the potato.",
|
||||||
|
"Step 5: From your inventory or other agents get a bowl",
|
||||||
|
"Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 7: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"bowl": 1,
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_cake_1_cooked_beef_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make cooked_beef, cake, golden_apple.",
|
||||||
|
"agent_count": 3,
|
||||||
|
"target": {
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"cake": 1,
|
||||||
|
"golden_apple": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).",
|
||||||
|
"Step 3: Get an egg from your inventory or other agents.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 2,
|
||||||
|
"gold_ingot": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 2,
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"apple": 1
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 2,
|
||||||
|
"egg": 1,
|
||||||
|
"gold_ingot": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_bread_1_cooked_beef": {
|
||||||
|
"conversation": "Let's work together to make cooked_beef, bread.",
|
||||||
|
"agent_count": 3,
|
||||||
|
"target": {
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"bread": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
515
tasks/cooking_tasks/require_collab_test_3_items/4_agent.json
Normal file
515
tasks/cooking_tasks/require_collab_test_3_items/4_agent.json
Normal file
|
@ -0,0 +1,515 @@
|
||||||
|
{
|
||||||
|
"multiagent_cooking_3_1_baked_potato_1_bread_1_cake": {
|
||||||
|
"conversation": "Let's work together to make bread, baked_potato, cake.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"bread": 1,
|
||||||
|
"baked_potato": 1,
|
||||||
|
"cake": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).",
|
||||||
|
"Step 3: Get an egg from your inventory or other agents.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 1,
|
||||||
|
"egg": 1
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_cake_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make golden_apple, cake.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"golden_apple": 1,
|
||||||
|
"cake": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).",
|
||||||
|
"Step 3: Get an egg from your inventory or other agents.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"apple": 1,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"milk_bucket": 1,
|
||||||
|
"egg": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_baked_potato_1_cooked_beef_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make golden_apple, cooked_beef, baked_potato.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"golden_apple": 1,
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"baked_potato": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"coal": 5
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"apple": 1,
|
||||||
|
"coal": 5
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"coal": 5
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"coal": 5
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_bread_1_cooked_beef_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make cooked_beef, bread, golden_apple.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"bread": 1,
|
||||||
|
"golden_apple": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 3,
|
||||||
|
"gold_ingot": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 3,
|
||||||
|
"gold_ingot": 3
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 3,
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"apple": 1
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 3,
|
||||||
|
"gold_ingot": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_baked_potato_1_cake": {
|
||||||
|
"conversation": "Let's work together to make baked_potato, cake.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"baked_potato": 1,
|
||||||
|
"cake": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).",
|
||||||
|
"Step 3: Get an egg from your inventory or other agents.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 1,
|
||||||
|
"egg": 1
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_bread_1_golden_apple_1_rabbit_stew": {
|
||||||
|
"conversation": "Let's work together to make rabbit_stew, bread, golden_apple.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"bread": 1,
|
||||||
|
"golden_apple": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to the furnace and bake the potato.",
|
||||||
|
"Step 5: From your inventory or other agents get a bowl",
|
||||||
|
"Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 7: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"bowl": 1,
|
||||||
|
"gold_ingot": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"gold_ingot": 3
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"apple": 1
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"gold_ingot": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_baked_potato_1_bread_1_cooked_beef": {
|
||||||
|
"conversation": "Let's work together to make bread, baked_potato, cooked_beef.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"bread": 1,
|
||||||
|
"baked_potato": 1,
|
||||||
|
"cooked_beef": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 5
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 5
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 5
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 5
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_baked_potato_1_rabbit_stew": {
|
||||||
|
"conversation": "Let's work together to make rabbit_stew, baked_potato.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"baked_potato": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to the furnace and bake the potato.",
|
||||||
|
"Step 5: From your inventory or other agents get a bowl",
|
||||||
|
"Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 7: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"bowl": 1,
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_cake_1_cooked_beef_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make cooked_beef, cake, golden_apple.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"cake": 1,
|
||||||
|
"golden_apple": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).",
|
||||||
|
"Step 3: Get an egg from your inventory or other agents.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 1,
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"apple": 1
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 1,
|
||||||
|
"gold_ingot": 3
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 1,
|
||||||
|
"egg": 1,
|
||||||
|
"gold_ingot": 3
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 1,
|
||||||
|
"gold_ingot": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_bread_1_cooked_beef": {
|
||||||
|
"conversation": "Let's work together to make cooked_beef, bread.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"bread": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,515 @@
|
||||||
|
{
|
||||||
|
"multiagent_cooking_3_1_baked_potato_1_bread_1_cake": {
|
||||||
|
"conversation": "Let's work together to make bread, baked_potato, cake.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"bread": 1,
|
||||||
|
"baked_potato": 1,
|
||||||
|
"cake": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 1500,
|
||||||
|
"recipes": {
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).",
|
||||||
|
"Step 3: Get an egg from your inventory or other agents.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 1,
|
||||||
|
"egg": 1
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_cake_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make golden_apple, cake.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"golden_apple": 1,
|
||||||
|
"cake": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 1500,
|
||||||
|
"recipes": {
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).",
|
||||||
|
"Step 3: Get an egg from your inventory or other agents.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"apple": 1,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"milk_bucket": 1,
|
||||||
|
"egg": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_baked_potato_1_cooked_beef_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make golden_apple, cooked_beef, baked_potato.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"golden_apple": 1,
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"baked_potato": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 1500,
|
||||||
|
"recipes": {
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"coal": 5
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"apple": 1,
|
||||||
|
"coal": 5
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"coal": 5
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"coal": 5
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_bread_1_cooked_beef_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make cooked_beef, bread, golden_apple.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"bread": 1,
|
||||||
|
"golden_apple": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 1500,
|
||||||
|
"recipes": {
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 3,
|
||||||
|
"gold_ingot": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 3,
|
||||||
|
"gold_ingot": 3
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 3,
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"apple": 1
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 3,
|
||||||
|
"gold_ingot": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_baked_potato_1_cake": {
|
||||||
|
"conversation": "Let's work together to make baked_potato, cake.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"baked_potato": 1,
|
||||||
|
"cake": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 1500,
|
||||||
|
"recipes": {
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).",
|
||||||
|
"Step 3: Get an egg from your inventory or other agents.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 1,
|
||||||
|
"egg": 1
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_bread_1_golden_apple_1_rabbit_stew": {
|
||||||
|
"conversation": "Let's work together to make rabbit_stew, bread, golden_apple.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"bread": 1,
|
||||||
|
"golden_apple": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 1500,
|
||||||
|
"recipes": {
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to the furnace and bake the potato.",
|
||||||
|
"Step 5: From your inventory or other agents get a bowl",
|
||||||
|
"Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 7: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"bowl": 1,
|
||||||
|
"gold_ingot": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"gold_ingot": 3
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"apple": 1
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"gold_ingot": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_baked_potato_1_bread_1_cooked_beef": {
|
||||||
|
"conversation": "Let's work together to make bread, baked_potato, cooked_beef.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"bread": 1,
|
||||||
|
"baked_potato": 1,
|
||||||
|
"cooked_beef": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 1500,
|
||||||
|
"recipes": {
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 5
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 5
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 5
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 5
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_baked_potato_1_rabbit_stew": {
|
||||||
|
"conversation": "Let's work together to make rabbit_stew, baked_potato.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"baked_potato": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 1500,
|
||||||
|
"recipes": {
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to the furnace and bake the potato.",
|
||||||
|
"Step 5: From your inventory or other agents get a bowl",
|
||||||
|
"Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 7: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"bowl": 1,
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_cake_1_cooked_beef_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make cooked_beef, cake, golden_apple.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"cake": 1,
|
||||||
|
"golden_apple": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 1500,
|
||||||
|
"recipes": {
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).",
|
||||||
|
"Step 3: Get an egg from your inventory or other agents.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 1,
|
||||||
|
"gold_ingot": 3,
|
||||||
|
"apple": 1
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 1,
|
||||||
|
"gold_ingot": 3
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 1,
|
||||||
|
"egg": 1,
|
||||||
|
"gold_ingot": 3
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 3,
|
||||||
|
"milk_bucket": 1,
|
||||||
|
"gold_ingot": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_bread_1_cooked_beef": {
|
||||||
|
"conversation": "Let's work together to make cooked_beef, bread.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"target": {
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"bread": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 1500,
|
||||||
|
"recipes": {
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 3
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 3
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
552
tasks/cooking_tasks/require_collab_test_3_items/5_agent.json
Normal file
552
tasks/cooking_tasks/require_collab_test_3_items/5_agent.json
Normal file
|
@ -0,0 +1,552 @@
|
||||||
|
{
|
||||||
|
"multiagent_cooking_3_1_baked_potato_1_bread_1_cake": {
|
||||||
|
"conversation": "Let's work together to make bread, baked_potato, cake.",
|
||||||
|
"agent_count": 5,
|
||||||
|
"target": {
|
||||||
|
"bread": 1,
|
||||||
|
"baked_potato": 1,
|
||||||
|
"cake": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).",
|
||||||
|
"Step 3: Get an egg from your inventory or other agents.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 2,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 2,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 2,
|
||||||
|
"milk_bucket": 1,
|
||||||
|
"egg": 1
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 2,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"4": {
|
||||||
|
"coal": 2,
|
||||||
|
"milk_bucket": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_cake_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make golden_apple, cake.",
|
||||||
|
"agent_count": 5,
|
||||||
|
"target": {
|
||||||
|
"golden_apple": 1,
|
||||||
|
"cake": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).",
|
||||||
|
"Step 3: Get an egg from your inventory or other agents.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"gold_ingot": 2,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"gold_ingot": 2,
|
||||||
|
"apple": 1,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"gold_ingot": 2,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"gold_ingot": 2,
|
||||||
|
"milk_bucket": 1,
|
||||||
|
"egg": 1
|
||||||
|
},
|
||||||
|
"4": {
|
||||||
|
"gold_ingot": 2,
|
||||||
|
"milk_bucket": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_baked_potato_1_cooked_beef_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make golden_apple, cooked_beef, baked_potato.",
|
||||||
|
"agent_count": 5,
|
||||||
|
"target": {
|
||||||
|
"golden_apple": 1,
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"baked_potato": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"gold_ingot": 2,
|
||||||
|
"coal": 4
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"gold_ingot": 2,
|
||||||
|
"apple": 1,
|
||||||
|
"coal": 4
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"gold_ingot": 2,
|
||||||
|
"coal": 4
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"gold_ingot": 2,
|
||||||
|
"coal": 4
|
||||||
|
},
|
||||||
|
"4": {
|
||||||
|
"gold_ingot": 2,
|
||||||
|
"coal": 4
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_bread_1_cooked_beef_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make cooked_beef, bread, golden_apple.",
|
||||||
|
"agent_count": 5,
|
||||||
|
"target": {
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"bread": 1,
|
||||||
|
"golden_apple": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 2,
|
||||||
|
"gold_ingot": 2
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 2,
|
||||||
|
"gold_ingot": 2
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 2,
|
||||||
|
"gold_ingot": 2,
|
||||||
|
"apple": 1
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 2,
|
||||||
|
"gold_ingot": 2
|
||||||
|
},
|
||||||
|
"4": {
|
||||||
|
"coal": 2,
|
||||||
|
"gold_ingot": 2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_baked_potato_1_cake": {
|
||||||
|
"conversation": "Let's work together to make baked_potato, cake.",
|
||||||
|
"agent_count": 5,
|
||||||
|
"target": {
|
||||||
|
"baked_potato": 1,
|
||||||
|
"cake": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).",
|
||||||
|
"Step 3: Get an egg from your inventory or other agents.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 2,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 2,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 2,
|
||||||
|
"milk_bucket": 1,
|
||||||
|
"egg": 1
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 2,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"4": {
|
||||||
|
"coal": 2,
|
||||||
|
"milk_bucket": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_bread_1_golden_apple_1_rabbit_stew": {
|
||||||
|
"conversation": "Let's work together to make rabbit_stew, bread, golden_apple.",
|
||||||
|
"agent_count": 5,
|
||||||
|
"target": {
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"bread": 1,
|
||||||
|
"golden_apple": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to the furnace and bake the potato.",
|
||||||
|
"Step 5: From your inventory or other agents get a bowl",
|
||||||
|
"Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 7: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"bowl": 1,
|
||||||
|
"gold_ingot": 2
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"gold_ingot": 2
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"gold_ingot": 2,
|
||||||
|
"apple": 1
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"gold_ingot": 2
|
||||||
|
},
|
||||||
|
"4": {
|
||||||
|
"gold_ingot": 2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_baked_potato_1_bread_1_cooked_beef": {
|
||||||
|
"conversation": "Let's work together to make bread, baked_potato, cooked_beef.",
|
||||||
|
"agent_count": 5,
|
||||||
|
"target": {
|
||||||
|
"bread": 1,
|
||||||
|
"baked_potato": 1,
|
||||||
|
"cooked_beef": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 4
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 4
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 4
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 4
|
||||||
|
},
|
||||||
|
"4": {
|
||||||
|
"coal": 4
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_baked_potato_1_rabbit_stew": {
|
||||||
|
"conversation": "Let's work together to make rabbit_stew, baked_potato.",
|
||||||
|
"agent_count": 5,
|
||||||
|
"target": {
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"baked_potato": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to the furnace and bake the potato.",
|
||||||
|
"Step 5: From your inventory or other agents get a bowl",
|
||||||
|
"Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 7: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"bowl": 1,
|
||||||
|
"coal": 2
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 2
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 2
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 2
|
||||||
|
},
|
||||||
|
"4": {
|
||||||
|
"coal": 2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_cake_1_cooked_beef_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make cooked_beef, cake, golden_apple.",
|
||||||
|
"agent_count": 5,
|
||||||
|
"target": {
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"cake": 1,
|
||||||
|
"golden_apple": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).",
|
||||||
|
"Step 3: Get an egg from your inventory or other agents.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 2,
|
||||||
|
"milk_bucket": 1,
|
||||||
|
"gold_ingot": 2
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 2,
|
||||||
|
"milk_bucket": 1,
|
||||||
|
"gold_ingot": 2
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 2,
|
||||||
|
"milk_bucket": 1,
|
||||||
|
"egg": 1,
|
||||||
|
"gold_ingot": 2
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 2,
|
||||||
|
"milk_bucket": 1,
|
||||||
|
"gold_ingot": 2
|
||||||
|
},
|
||||||
|
"4": {
|
||||||
|
"coal": 2,
|
||||||
|
"milk_bucket": 1,
|
||||||
|
"gold_ingot": 2,
|
||||||
|
"apple": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_bread_1_cooked_beef": {
|
||||||
|
"conversation": "Let's work together to make cooked_beef, bread.",
|
||||||
|
"agent_count": 5,
|
||||||
|
"target": {
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"bread": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 2
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 2
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 2
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 2
|
||||||
|
},
|
||||||
|
"4": {
|
||||||
|
"coal": 2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,552 @@
|
||||||
|
{
|
||||||
|
"multiagent_cooking_3_1_baked_potato_1_bread_1_cake": {
|
||||||
|
"conversation": "Let's work together to make bread, baked_potato, cake.",
|
||||||
|
"agent_count": 5,
|
||||||
|
"target": {
|
||||||
|
"bread": 1,
|
||||||
|
"baked_potato": 1,
|
||||||
|
"cake": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 1500,
|
||||||
|
"recipes": {
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).",
|
||||||
|
"Step 3: Get an egg from your inventory or other agents.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cake. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 2,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 2,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 2,
|
||||||
|
"milk_bucket": 1,
|
||||||
|
"egg": 1
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 2,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"4": {
|
||||||
|
"coal": 2,
|
||||||
|
"milk_bucket": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_cake_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make golden_apple, cake.",
|
||||||
|
"agent_count": 5,
|
||||||
|
"target": {
|
||||||
|
"golden_apple": 1,
|
||||||
|
"cake": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 1500,
|
||||||
|
"recipes": {
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).",
|
||||||
|
"Step 3: Get an egg from your inventory or other agents.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 golden_apple, 1 cake. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"gold_ingot": 2,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"gold_ingot": 2,
|
||||||
|
"apple": 1,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"gold_ingot": 2,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"gold_ingot": 2,
|
||||||
|
"milk_bucket": 1,
|
||||||
|
"egg": 1
|
||||||
|
},
|
||||||
|
"4": {
|
||||||
|
"gold_ingot": 2,
|
||||||
|
"milk_bucket": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_baked_potato_1_cooked_beef_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make golden_apple, cooked_beef, baked_potato.",
|
||||||
|
"agent_count": 5,
|
||||||
|
"target": {
|
||||||
|
"golden_apple": 1,
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"baked_potato": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 1500,
|
||||||
|
"recipes": {
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 golden_apple, 1 cooked_beef, 1 baked_potato. Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"gold_ingot": 2,
|
||||||
|
"coal": 4
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"gold_ingot": 2,
|
||||||
|
"apple": 1,
|
||||||
|
"coal": 4
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"gold_ingot": 2,
|
||||||
|
"coal": 4
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"gold_ingot": 2,
|
||||||
|
"coal": 4
|
||||||
|
},
|
||||||
|
"4": {
|
||||||
|
"gold_ingot": 2,
|
||||||
|
"coal": 4
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_bread_1_cooked_beef_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make cooked_beef, bread, golden_apple.",
|
||||||
|
"agent_count": 5,
|
||||||
|
"target": {
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"bread": 1,
|
||||||
|
"golden_apple": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 1500,
|
||||||
|
"recipes": {
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 cooked_beef, 1 bread, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 2,
|
||||||
|
"gold_ingot": 2
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 2,
|
||||||
|
"gold_ingot": 2
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 2,
|
||||||
|
"gold_ingot": 2,
|
||||||
|
"apple": 1
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 2,
|
||||||
|
"gold_ingot": 2
|
||||||
|
},
|
||||||
|
"4": {
|
||||||
|
"coal": 2,
|
||||||
|
"gold_ingot": 2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_baked_potato_1_cake": {
|
||||||
|
"conversation": "Let's work together to make baked_potato, cake.",
|
||||||
|
"agent_count": 5,
|
||||||
|
"target": {
|
||||||
|
"baked_potato": 1,
|
||||||
|
"cake": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 1500,
|
||||||
|
"recipes": {
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).",
|
||||||
|
"Step 3: Get an egg from your inventory or other agents.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 baked_potato, 1 cake. Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 2,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 2,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 2,
|
||||||
|
"milk_bucket": 1,
|
||||||
|
"egg": 1
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 2,
|
||||||
|
"milk_bucket": 1
|
||||||
|
},
|
||||||
|
"4": {
|
||||||
|
"coal": 2,
|
||||||
|
"milk_bucket": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_bread_1_golden_apple_1_rabbit_stew": {
|
||||||
|
"conversation": "Let's work together to make rabbit_stew, bread, golden_apple.",
|
||||||
|
"agent_count": 5,
|
||||||
|
"target": {
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"bread": 1,
|
||||||
|
"golden_apple": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 1500,
|
||||||
|
"recipes": {
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to the furnace and bake the potato.",
|
||||||
|
"Step 5: From your inventory or other agents get a bowl",
|
||||||
|
"Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 7: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 rabbit_stew, 1 bread, 1 golden_apple. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"bowl": 1,
|
||||||
|
"gold_ingot": 2
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"gold_ingot": 2
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"gold_ingot": 2,
|
||||||
|
"apple": 1
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"gold_ingot": 2
|
||||||
|
},
|
||||||
|
"4": {
|
||||||
|
"gold_ingot": 2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_baked_potato_1_bread_1_cooked_beef": {
|
||||||
|
"conversation": "Let's work together to make bread, baked_potato, cooked_beef.",
|
||||||
|
"agent_count": 5,
|
||||||
|
"target": {
|
||||||
|
"bread": 1,
|
||||||
|
"baked_potato": 1,
|
||||||
|
"cooked_beef": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 1500,
|
||||||
|
"recipes": {
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 bread, 1 baked_potato, 1 cooked_beef. Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 4
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 4
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 4
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 4
|
||||||
|
},
|
||||||
|
"4": {
|
||||||
|
"coal": 4
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_baked_potato_1_rabbit_stew": {
|
||||||
|
"conversation": "Let's work together to make rabbit_stew, baked_potato.",
|
||||||
|
"agent_count": 5,
|
||||||
|
"target": {
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"baked_potato": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 1500,
|
||||||
|
"recipes": {
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to the furnace and bake the potato.",
|
||||||
|
"Step 5: From your inventory or other agents get a bowl",
|
||||||
|
"Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 7: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 rabbit_stew, 1 baked_potato. Recipe for rabbit_stew:\n[\"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to the furnace and bake the potato.', 'Step 5: From your inventory or other agents get a bowl', 'Step 6: Kill a rabbit and pick up 1 raw rabbit that is dropped.', 'Step 7: Go to the furnace and cook the raw rabbit.', 'Step 8: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.']Recipe for baked_potato:\n[\"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\", 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 2: Go to the furnace and bake the potato.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"bowl": 1,
|
||||||
|
"coal": 2
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 2
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 2
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 2
|
||||||
|
},
|
||||||
|
"4": {
|
||||||
|
"coal": 2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_cake_1_cooked_beef_1_golden_apple": {
|
||||||
|
"conversation": "Let's work together to make cooked_beef, cake, golden_apple.",
|
||||||
|
"agent_count": 5,
|
||||||
|
"target": {
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"cake": 1,
|
||||||
|
"golden_apple": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 1500,
|
||||||
|
"recipes": {
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).",
|
||||||
|
"Step 3: Get an egg from your inventory or other agents.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 cooked_beef, 1 cake, 1 golden_apple. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for cake:\n['Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.', 'Step 2: From your inventory or other agents get 3 milk buckets (already filled with milk).', 'Step 3: Get an egg from your inventory or other agents.', 'Step 4: Go to the crafting table and craft the sugarcane into sugar.', 'Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.']Recipe for golden_apple:\n['Step 1: Get 1 apple and 8 gold ingots from your inventory or other bots.', 'Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 2,
|
||||||
|
"milk_bucket": 1,
|
||||||
|
"gold_ingot": 2
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 2,
|
||||||
|
"milk_bucket": 1,
|
||||||
|
"gold_ingot": 2
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 2,
|
||||||
|
"milk_bucket": 1,
|
||||||
|
"egg": 1,
|
||||||
|
"gold_ingot": 2
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 2,
|
||||||
|
"milk_bucket": 1,
|
||||||
|
"gold_ingot": 2
|
||||||
|
},
|
||||||
|
"4": {
|
||||||
|
"coal": 2,
|
||||||
|
"milk_bucket": 1,
|
||||||
|
"gold_ingot": 2,
|
||||||
|
"apple": 1
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_3_1_bread_1_cooked_beef": {
|
||||||
|
"conversation": "Let's work together to make cooked_beef, bread.",
|
||||||
|
"agent_count": 5,
|
||||||
|
"target": {
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"bread": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 1500,
|
||||||
|
"recipes": {
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Get coal from your inventory or other agents.",
|
||||||
|
"Step 3: Put coal in the furnace",
|
||||||
|
"Step 4: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']",
|
||||||
|
"2": "Collaborate with agents around you to make 1 cooked_beef, 1 bread. Recipe for cooked_beef:\n['Step 1: Kill a cow and pick up 1 beef that is dropped.', 'Step 2: Get coal from your inventory or other agents.', 'Step 3: Put coal in the furnace', 'Step 4: Go to furnace and use it to cook the beef.']Recipe for bread:\n['Step 1: Go to the farm and collect 3 wheat.', 'Step 2: Go to the crafting table and use the wheat to craft bread.']"
|
||||||
|
},
|
||||||
|
"initial_inventory": {
|
||||||
|
"0": {
|
||||||
|
"coal": 2
|
||||||
|
},
|
||||||
|
"1": {
|
||||||
|
"coal": 2
|
||||||
|
},
|
||||||
|
"2": {
|
||||||
|
"coal": 2
|
||||||
|
},
|
||||||
|
"3": {
|
||||||
|
"coal": 2
|
||||||
|
},
|
||||||
|
"4": {
|
||||||
|
"coal": 2
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Add table
Reference in a new issue