mirror of
https://github.com/kolbytn/mindcraft.git
synced 2025-09-08 02:52:59 +02:00
fix human evaluations for construction
This commit is contained in:
parent
abf3532433
commit
e88185602b
13 changed files with 4447 additions and 14 deletions
76
tasks/construction_tasks/blueprint_visualizer.py
Normal file
76
tasks/construction_tasks/blueprint_visualizer.py
Normal file
|
@ -0,0 +1,76 @@
|
||||||
|
import json
|
||||||
|
import matplotlib.pyplot as plt
|
||||||
|
import numpy as np
|
||||||
|
|
||||||
|
def display_3d_blocks(data):
|
||||||
|
"""Displays a 3D array of blocks with different types in a single figure with subplots for each level,
|
||||||
|
including block coordinates. Dynamically adjusts the height of the figure.
|
||||||
|
|
||||||
|
Args:
|
||||||
|
data: A dictionary containing the block data, structured like the JSON example.
|
||||||
|
"""
|
||||||
|
|
||||||
|
block_types = {
|
||||||
|
"air": "white",
|
||||||
|
"oak_planks": "brown",
|
||||||
|
"stone_bricks": "gray",
|
||||||
|
"oak_door": "brown",
|
||||||
|
"oak_stairs": "brown",
|
||||||
|
"quartz_block": "white",
|
||||||
|
"glass_pane": "lightblue",
|
||||||
|
"torch": "orange"
|
||||||
|
}
|
||||||
|
|
||||||
|
# Extract data from the JSON
|
||||||
|
levels = data["levels"]
|
||||||
|
num_levels = len(levels)
|
||||||
|
|
||||||
|
# Create a figure and subplots grid
|
||||||
|
fig, axes = plt.subplots(num_levels, 1, figsize=(10, 5 * num_levels)) # One column, dynamic height
|
||||||
|
axes[0].legend(handles=[plt.Rectangle((0, 0), 1, 1, color=color) for color in block_types.values()],
|
||||||
|
labels=block_types.keys(), loc='upper right')
|
||||||
|
starting_coords = levels[0]["coordinates"]
|
||||||
|
|
||||||
|
# Iterate over each level and corresponding subplot
|
||||||
|
for i, level in enumerate(levels):
|
||||||
|
ax = axes[i]
|
||||||
|
ax.set_title(f"Level {level['level']}")
|
||||||
|
placement = level["placement"]
|
||||||
|
|
||||||
|
# Convert placement data to NumPy array
|
||||||
|
block_array = np.array([
|
||||||
|
[block_types.get(block, 'gray') for block in row] for row in placement
|
||||||
|
])
|
||||||
|
|
||||||
|
# Iterate over each block in the level
|
||||||
|
for x in range(block_array.shape[1]):
|
||||||
|
for y in range(block_array.shape[0]):
|
||||||
|
block_type = block_array[y, x]
|
||||||
|
|
||||||
|
# Plot the block as a rectangle
|
||||||
|
rect = plt.Rectangle((x, y), 1, 1, color=block_type)
|
||||||
|
ax.add_patch(rect)
|
||||||
|
|
||||||
|
# Add coordinate text to the center of the block
|
||||||
|
real_x = x + starting_coords[0]
|
||||||
|
real_y = level['level'] + starting_coords[1]
|
||||||
|
real_z = y + starting_coords[2]
|
||||||
|
ax.text(x + 0.5, y + 0.5, f"({real_x},{real_y},{real_z})", ha='center', va='center', fontsize=8)
|
||||||
|
|
||||||
|
# Set axis limits and labels
|
||||||
|
ax.set_xlim([0, block_array.shape[1]])
|
||||||
|
ax.set_ylim([0, block_array.shape[0]])
|
||||||
|
ax.set_xlabel("X")
|
||||||
|
ax.set_ylabel("Y")
|
||||||
|
|
||||||
|
|
||||||
|
plt.tight_layout() # Adjust spacing between subplots
|
||||||
|
# plt.show()
|
||||||
|
plt.savefig("construction_tasks/church_three_agents.pdf", bbox_inches='tight')
|
||||||
|
|
||||||
|
# Example usage:
|
||||||
|
with open("construction_tasks/custom/church_three_agents.json", "r") as f:
|
||||||
|
data = json.load(f)
|
||||||
|
data = data["church_three_agents"]["blueprint"]
|
||||||
|
|
||||||
|
display_3d_blocks(data)
|
BIN
tasks/construction_tasks/church_three_agents.pdf
Normal file
BIN
tasks/construction_tasks/church_three_agents.pdf
Normal file
Binary file not shown.
2348
tasks/construction_tasks/custom/church_one_agent.json
Normal file
2348
tasks/construction_tasks/custom/church_one_agent.json
Normal file
File diff suppressed because it is too large
Load diff
435
tasks/cooking_tasks/human_ai_tasks/1_agent_1_human.json
Normal file
435
tasks/cooking_tasks/human_ai_tasks/1_agent_1_human.json
Normal file
|
@ -0,0 +1,435 @@
|
||||||
|
{
|
||||||
|
"multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew_1_human_1_agent": {
|
||||||
|
"conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.",
|
||||||
|
"agent_count": 1,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"baked_potato": 1,
|
||||||
|
"cake": 1,
|
||||||
|
"rabbit_stew": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: Go to the chest and grab 3 milk buckets.",
|
||||||
|
"Step 3: Go to the chest and grab an egg.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Go to the furnace and bake the potato.",
|
||||||
|
"Step 3: Go to the chest and grab a bowl",
|
||||||
|
"Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 6: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_1_human_1_agent": {
|
||||||
|
"conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.",
|
||||||
|
"agent_count": 1,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"bread": 1,
|
||||||
|
"cake": 1,
|
||||||
|
"golden_apple": 1,
|
||||||
|
"baked_potato": 1,
|
||||||
|
"rabbit_stew": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: Go to the chest and grab 3 milk buckets.",
|
||||||
|
"Step 3: Go to the chest and grab an egg.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Go to the chest and collect 1 apple and 8 gold ingots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Go to the furnace and bake the potato.",
|
||||||
|
"Step 3: Go to the chest and grab a bowl",
|
||||||
|
"Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 6: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.",
|
||||||
|
"1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple_1_human_1_agent": {
|
||||||
|
"conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.",
|
||||||
|
"agent_count": 1,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"baked_potato": 1,
|
||||||
|
"bread": 1,
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"golden_apple": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Go to the chest and collect 1 apple and 8 gold ingots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.",
|
||||||
|
"1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_human_1_agent": {
|
||||||
|
"conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.",
|
||||||
|
"agent_count": 1,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"cake": 1,
|
||||||
|
"bread": 1,
|
||||||
|
"golden_apple": 1,
|
||||||
|
"baked_potato": 1,
|
||||||
|
"cooked_beef": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: Go to the chest and grab 3 milk buckets.",
|
||||||
|
"Step 3: Go to the chest and grab an egg.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Go to the chest and collect 1 apple and 8 gold ingots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Go to furnace and use it to cook the beef."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew_1_human_1_agent": {
|
||||||
|
"conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.",
|
||||||
|
"agent_count": 1,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"golden_apple": 1,
|
||||||
|
"cake": 1,
|
||||||
|
"baked_potato": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Go to the furnace and bake the potato.",
|
||||||
|
"Step 3: Go to the chest and grab a bowl",
|
||||||
|
"Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 6: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Go to the chest and collect 1 apple and 8 gold ingots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: Go to the chest and grab 3 milk buckets.",
|
||||||
|
"Step 3: Go to the chest and grab an egg.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.",
|
||||||
|
"1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_human_1_agent": {
|
||||||
|
"conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.",
|
||||||
|
"agent_count": 1,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"bread": 1,
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"golden_apple": 1,
|
||||||
|
"cooked_beef": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Go to the furnace and bake the potato.",
|
||||||
|
"Step 3: Go to the chest and grab a bowl",
|
||||||
|
"Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 6: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Go to the chest and collect 1 apple and 8 gold ingots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Go to furnace and use it to cook the beef."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.",
|
||||||
|
"1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_1_human_1_agent": {
|
||||||
|
"conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.",
|
||||||
|
"agent_count": 1,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"cake": 1,
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"golden_apple": 1,
|
||||||
|
"bread": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: Go to the chest and grab 3 milk buckets.",
|
||||||
|
"Step 3: Go to the chest and grab an egg.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Go to the furnace and bake the potato.",
|
||||||
|
"Step 3: Go to the chest and grab a bowl",
|
||||||
|
"Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 6: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Go to the chest and collect 1 apple and 8 gold ingots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_human_1_agent": {
|
||||||
|
"conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.",
|
||||||
|
"agent_count": 1,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"golden_apple": 1,
|
||||||
|
"cake": 1,
|
||||||
|
"baked_potato": 1,
|
||||||
|
"rabbit_stew": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Go to the chest and collect 1 apple and 8 gold ingots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: Go to the chest and grab 3 milk buckets.",
|
||||||
|
"Step 3: Go to the chest and grab an egg.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Go to the furnace and bake the potato.",
|
||||||
|
"Step 3: Go to the chest and grab a bowl",
|
||||||
|
"Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 6: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_human_1_agent": {
|
||||||
|
"conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.",
|
||||||
|
"agent_count": 1,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"golden_apple": 1,
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"bread": 1,
|
||||||
|
"cake": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Go to the chest and collect 1 apple and 8 gold ingots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Go to the furnace and bake the potato.",
|
||||||
|
"Step 3: Go to the chest and grab a bowl",
|
||||||
|
"Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 6: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: Go to the chest and grab 3 milk buckets.",
|
||||||
|
"Step 3: Go to the chest and grab an egg.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_1_human_1_agent": {
|
||||||
|
"conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.",
|
||||||
|
"agent_count": 1,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"bread": 1,
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"baked_potato": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Go to the furnace and bake the potato.",
|
||||||
|
"Step 3: Go to the chest and grab a bowl",
|
||||||
|
"Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 6: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.",
|
||||||
|
"1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
435
tasks/cooking_tasks/human_ai_tasks/2_agent_1_human.json
Normal file
435
tasks/cooking_tasks/human_ai_tasks/2_agent_1_human.json
Normal file
|
@ -0,0 +1,435 @@
|
||||||
|
{
|
||||||
|
"multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew_1_human_2_agents": {
|
||||||
|
"conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.",
|
||||||
|
"agent_count": 2,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"baked_potato": 1,
|
||||||
|
"cake": 1,
|
||||||
|
"rabbit_stew": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: Go to the chest and grab 3 milk buckets.",
|
||||||
|
"Step 3: Go to the chest and grab an egg.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Go to the furnace and bake the potato.",
|
||||||
|
"Step 3: Go to the chest and grab a bowl",
|
||||||
|
"Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 6: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_1_human_2_agents": {
|
||||||
|
"conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.",
|
||||||
|
"agent_count": 2,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"bread": 1,
|
||||||
|
"cake": 1,
|
||||||
|
"golden_apple": 1,
|
||||||
|
"baked_potato": 1,
|
||||||
|
"rabbit_stew": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: Go to the chest and grab 3 milk buckets.",
|
||||||
|
"Step 3: Go to the chest and grab an egg.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Go to the chest and collect 1 apple and 8 gold ingots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Go to the furnace and bake the potato.",
|
||||||
|
"Step 3: Go to the chest and grab a bowl",
|
||||||
|
"Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 6: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.",
|
||||||
|
"1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple_1_human_2_agents": {
|
||||||
|
"conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.",
|
||||||
|
"agent_count": 2,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"baked_potato": 1,
|
||||||
|
"bread": 1,
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"golden_apple": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Go to the chest and collect 1 apple and 8 gold ingots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.",
|
||||||
|
"1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_human_2_agents": {
|
||||||
|
"conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.",
|
||||||
|
"agent_count": 2,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"cake": 1,
|
||||||
|
"bread": 1,
|
||||||
|
"golden_apple": 1,
|
||||||
|
"baked_potato": 1,
|
||||||
|
"cooked_beef": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: Go to the chest and grab 3 milk buckets.",
|
||||||
|
"Step 3: Go to the chest and grab an egg.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Go to the chest and collect 1 apple and 8 gold ingots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Go to furnace and use it to cook the beef."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew_1_human_2_agents": {
|
||||||
|
"conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.",
|
||||||
|
"agent_count": 2,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"golden_apple": 1,
|
||||||
|
"cake": 1,
|
||||||
|
"baked_potato": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Go to the furnace and bake the potato.",
|
||||||
|
"Step 3: Go to the chest and grab a bowl",
|
||||||
|
"Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 6: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Go to the chest and collect 1 apple and 8 gold ingots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: Go to the chest and grab 3 milk buckets.",
|
||||||
|
"Step 3: Go to the chest and grab an egg.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.",
|
||||||
|
"1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_human_2_agents": {
|
||||||
|
"conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.",
|
||||||
|
"agent_count": 2,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"bread": 1,
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"golden_apple": 1,
|
||||||
|
"cooked_beef": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Go to the furnace and bake the potato.",
|
||||||
|
"Step 3: Go to the chest and grab a bowl",
|
||||||
|
"Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 6: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Go to the chest and collect 1 apple and 8 gold ingots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Go to furnace and use it to cook the beef."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.",
|
||||||
|
"1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_1_human_2_agents": {
|
||||||
|
"conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.",
|
||||||
|
"agent_count": 2,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"cake": 1,
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"golden_apple": 1,
|
||||||
|
"bread": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: Go to the chest and grab 3 milk buckets.",
|
||||||
|
"Step 3: Go to the chest and grab an egg.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Go to the furnace and bake the potato.",
|
||||||
|
"Step 3: Go to the chest and grab a bowl",
|
||||||
|
"Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 6: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Go to the chest and collect 1 apple and 8 gold ingots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_human_1_agent": {
|
||||||
|
"conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.",
|
||||||
|
"agent_count": 1,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"golden_apple": 1,
|
||||||
|
"cake": 1,
|
||||||
|
"baked_potato": 1,
|
||||||
|
"rabbit_stew": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Go to the chest and collect 1 apple and 8 gold ingots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: Go to the chest and grab 3 milk buckets.",
|
||||||
|
"Step 3: Go to the chest and grab an egg.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Go to the furnace and bake the potato.",
|
||||||
|
"Step 3: Go to the chest and grab a bowl",
|
||||||
|
"Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 6: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_human_2_agents": {
|
||||||
|
"conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.",
|
||||||
|
"agent_count": 2,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"golden_apple": 1,
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"bread": 1,
|
||||||
|
"cake": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Go to the chest and collect 1 apple and 8 gold ingots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Go to the furnace and bake the potato.",
|
||||||
|
"Step 3: Go to the chest and grab a bowl",
|
||||||
|
"Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 6: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: Go to the chest and grab 3 milk buckets.",
|
||||||
|
"Step 3: Go to the chest and grab an egg.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_1_human_2_agents": {
|
||||||
|
"conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.",
|
||||||
|
"agent_count": 2,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"bread": 1,
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"baked_potato": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Go to the furnace and bake the potato.",
|
||||||
|
"Step 3: Go to the chest and grab a bowl",
|
||||||
|
"Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 6: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.",
|
||||||
|
"1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
435
tasks/cooking_tasks/human_ai_tasks/3_agent_1_human.json
Normal file
435
tasks/cooking_tasks/human_ai_tasks/3_agent_1_human.json
Normal file
|
@ -0,0 +1,435 @@
|
||||||
|
{
|
||||||
|
"multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew_1_human_3_agent": {
|
||||||
|
"conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.",
|
||||||
|
"agent_count": 3,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"baked_potato": 1,
|
||||||
|
"cake": 1,
|
||||||
|
"rabbit_stew": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: Go to the chest and grab 3 milk buckets.",
|
||||||
|
"Step 3: Go to the chest and grab an egg.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Go to the furnace and bake the potato.",
|
||||||
|
"Step 3: Go to the chest and grab a bowl",
|
||||||
|
"Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 6: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_1_human_3_agent": {
|
||||||
|
"conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.",
|
||||||
|
"agent_count": 3,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"bread": 1,
|
||||||
|
"cake": 1,
|
||||||
|
"golden_apple": 1,
|
||||||
|
"baked_potato": 1,
|
||||||
|
"rabbit_stew": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: Go to the chest and grab 3 milk buckets.",
|
||||||
|
"Step 3: Go to the chest and grab an egg.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Go to the chest and collect 1 apple and 8 gold ingots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Go to the furnace and bake the potato.",
|
||||||
|
"Step 3: Go to the chest and grab a bowl",
|
||||||
|
"Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 6: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.",
|
||||||
|
"1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple_1_human_3_agent": {
|
||||||
|
"conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.",
|
||||||
|
"agent_count": 3,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"baked_potato": 1,
|
||||||
|
"bread": 1,
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"golden_apple": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Go to the chest and collect 1 apple and 8 gold ingots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.",
|
||||||
|
"1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_human_3_agent": {
|
||||||
|
"conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.",
|
||||||
|
"agent_count": 3,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"cake": 1,
|
||||||
|
"bread": 1,
|
||||||
|
"golden_apple": 1,
|
||||||
|
"baked_potato": 1,
|
||||||
|
"cooked_beef": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: Go to the chest and grab 3 milk buckets.",
|
||||||
|
"Step 3: Go to the chest and grab an egg.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Go to the chest and collect 1 apple and 8 gold ingots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Go to furnace and use it to cook the beef."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew_1_human_3_agent": {
|
||||||
|
"conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.",
|
||||||
|
"agent_count": 3,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"golden_apple": 1,
|
||||||
|
"cake": 1,
|
||||||
|
"baked_potato": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Go to the furnace and bake the potato.",
|
||||||
|
"Step 3: Go to the chest and grab a bowl",
|
||||||
|
"Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 6: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Go to the chest and collect 1 apple and 8 gold ingots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: Go to the chest and grab 3 milk buckets.",
|
||||||
|
"Step 3: Go to the chest and grab an egg.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.",
|
||||||
|
"1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_human_3_agent": {
|
||||||
|
"conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.",
|
||||||
|
"agent_count": 3,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"bread": 1,
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"golden_apple": 1,
|
||||||
|
"cooked_beef": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Go to the furnace and bake the potato.",
|
||||||
|
"Step 3: Go to the chest and grab a bowl",
|
||||||
|
"Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 6: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Go to the chest and collect 1 apple and 8 gold ingots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Go to furnace and use it to cook the beef."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.",
|
||||||
|
"1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_1_human_3_agent": {
|
||||||
|
"conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.",
|
||||||
|
"agent_count": 3,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"cake": 1,
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"golden_apple": 1,
|
||||||
|
"bread": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: Go to the chest and grab 3 milk buckets.",
|
||||||
|
"Step 3: Go to the chest and grab an egg.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Go to the furnace and bake the potato.",
|
||||||
|
"Step 3: Go to the chest and grab a bowl",
|
||||||
|
"Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 6: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Go to the chest and collect 1 apple and 8 gold ingots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_human_3_agent": {
|
||||||
|
"conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.",
|
||||||
|
"agent_count": 3,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"golden_apple": 1,
|
||||||
|
"cake": 1,
|
||||||
|
"baked_potato": 1,
|
||||||
|
"rabbit_stew": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Go to the chest and collect 1 apple and 8 gold ingots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: Go to the chest and grab 3 milk buckets.",
|
||||||
|
"Step 3: Go to the chest and grab an egg.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Go to the furnace and bake the potato.",
|
||||||
|
"Step 3: Go to the chest and grab a bowl",
|
||||||
|
"Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 6: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_human_3_agent": {
|
||||||
|
"conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.",
|
||||||
|
"agent_count": 3,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"golden_apple": 1,
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"bread": 1,
|
||||||
|
"cake": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Go to the chest and collect 1 apple and 8 gold ingots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Go to the furnace and bake the potato.",
|
||||||
|
"Step 3: Go to the chest and grab a bowl",
|
||||||
|
"Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 6: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: Go to the chest and grab 3 milk buckets.",
|
||||||
|
"Step 3: Go to the chest and grab an egg.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_1_human_3_agent": {
|
||||||
|
"conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.",
|
||||||
|
"agent_count": 3,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"bread": 1,
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"baked_potato": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Go to the furnace and bake the potato.",
|
||||||
|
"Step 3: Go to the chest and grab a bowl",
|
||||||
|
"Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 6: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.",
|
||||||
|
"1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
435
tasks/cooking_tasks/human_ai_tasks/4_agent_1_human.json
Normal file
435
tasks/cooking_tasks/human_ai_tasks/4_agent_1_human.json
Normal file
|
@ -0,0 +1,435 @@
|
||||||
|
{
|
||||||
|
"multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew_1_human_4_agent": {
|
||||||
|
"conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"baked_potato": 1,
|
||||||
|
"cake": 1,
|
||||||
|
"rabbit_stew": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: Go to the chest and grab 3 milk buckets.",
|
||||||
|
"Step 3: Go to the chest and grab an egg.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Go to the furnace and bake the potato.",
|
||||||
|
"Step 3: Go to the chest and grab a bowl",
|
||||||
|
"Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 6: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew_1_human_4_agent": {
|
||||||
|
"conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"bread": 1,
|
||||||
|
"cake": 1,
|
||||||
|
"golden_apple": 1,
|
||||||
|
"baked_potato": 1,
|
||||||
|
"rabbit_stew": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: Go to the chest and grab 3 milk buckets.",
|
||||||
|
"Step 3: Go to the chest and grab an egg.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Go to the chest and collect 1 apple and 8 gold ingots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Go to the furnace and bake the potato.",
|
||||||
|
"Step 3: Go to the chest and grab a bowl",
|
||||||
|
"Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 6: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.",
|
||||||
|
"1": "Collaborate with agents around you to make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_golden_apple_1_human_4_agent": {
|
||||||
|
"conversation": "Let's work together to make baked_potato, bread, cooked_beef, golden_apple.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"baked_potato": 1,
|
||||||
|
"bread": 1,
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"golden_apple": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Go to the chest and collect 1 apple and 8 gold ingots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.",
|
||||||
|
"1": "Collaborate with agents around you to make 1 baked_potato, 1 bread, 1 cooked_beef, 1 golden_apple. \n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_human_4_agent": {
|
||||||
|
"conversation": "Let's work together to make cake, bread, golden_apple, baked_potato, cooked_beef.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"cake": 1,
|
||||||
|
"bread": 1,
|
||||||
|
"golden_apple": 1,
|
||||||
|
"baked_potato": 1,
|
||||||
|
"cooked_beef": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: Go to the chest and grab 3 milk buckets.",
|
||||||
|
"Step 3: Go to the chest and grab an egg.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Go to the chest and collect 1 apple and 8 gold ingots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Go to furnace and use it to cook the beef."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cake, 1 bread, 1 golden_apple, 1 baked_potato, 1 cooked_beef. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_5_1_baked_potato_1_cake_1_golden_apple_1_rabbit_stew_1_human_4_agent": {
|
||||||
|
"conversation": "Let's work together to make rabbit_stew, golden_apple, cake, baked_potato.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"golden_apple": 1,
|
||||||
|
"cake": 1,
|
||||||
|
"baked_potato": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Go to the furnace and bake the potato.",
|
||||||
|
"Step 3: Go to the chest and grab a bowl",
|
||||||
|
"Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 6: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Go to the chest and collect 1 apple and 8 gold ingots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: Go to the chest and grab 3 milk buckets.",
|
||||||
|
"Step 3: Go to the chest and grab an egg.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.",
|
||||||
|
"1": "Collaborate with agents around you to make 1 rabbit_stew, 1 golden_apple, 1 cake, 1 baked_potato. \n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_5_1_bread_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_human_4_agent": {
|
||||||
|
"conversation": "Let's work together to make bread, rabbit_stew, golden_apple, cooked_beef.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"bread": 1,
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"golden_apple": 1,
|
||||||
|
"cooked_beef": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Go to the furnace and bake the potato.",
|
||||||
|
"Step 3: Go to the chest and grab a bowl",
|
||||||
|
"Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 6: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Go to the chest and collect 1 apple and 8 gold ingots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Go to furnace and use it to cook the beef."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.",
|
||||||
|
"1": "Collaborate with agents around you to make 1 bread, 1 rabbit_stew, 1 golden_apple, 1 cooked_beef. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_5_1_bread_1_cake_1_golden_apple_1_rabbit_stew_1_human_4_agent": {
|
||||||
|
"conversation": "Let's work together to make cake, rabbit_stew, golden_apple, bread.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"cake": 1,
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"golden_apple": 1,
|
||||||
|
"bread": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: Go to the chest and grab 3 milk buckets.",
|
||||||
|
"Step 3: Go to the chest and grab an egg.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Go to the furnace and bake the potato.",
|
||||||
|
"Step 3: Go to the chest and grab a bowl",
|
||||||
|
"Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 6: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Go to the chest and collect 1 apple and 8 gold ingots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cake, 1 rabbit_stew, 1 golden_apple, 1 bread. \n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_human_4_agent": {
|
||||||
|
"conversation": "Let's work together to make cooked_beef, golden_apple, cake, baked_potato, rabbit_stew.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"golden_apple": 1,
|
||||||
|
"cake": 1,
|
||||||
|
"baked_potato": 1,
|
||||||
|
"rabbit_stew": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Go to the chest and collect 1 apple and 8 gold ingots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: Go to the chest and grab 3 milk buckets.",
|
||||||
|
"Step 3: Go to the chest and grab an egg.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Go to the furnace and bake the potato.",
|
||||||
|
"Step 3: Go to the chest and grab a bowl",
|
||||||
|
"Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 6: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 cake, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew_1_human_4_agent": {
|
||||||
|
"conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"golden_apple": 1,
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"bread": 1,
|
||||||
|
"cake": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Go to the chest and collect 1 apple and 8 gold ingots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Go to the furnace and bake the potato.",
|
||||||
|
"Step 3: Go to the chest and grab a bowl",
|
||||||
|
"Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 6: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: Go to the chest and grab 3 milk buckets.",
|
||||||
|
"Step 3: Go to the chest and grab an egg.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.",
|
||||||
|
"1": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew_1_human_4_agent": {
|
||||||
|
"conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.",
|
||||||
|
"agent_count": 4,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"bread": 1,
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"baked_potato": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Go to the furnace and bake the potato.",
|
||||||
|
"Step 3: Go to the chest and grab a bowl",
|
||||||
|
"Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 6: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.",
|
||||||
|
"1": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
44
tasks/cooking_tasks/human_tasks/1_human.json
Normal file
44
tasks/cooking_tasks/human_tasks/1_human.json
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
{
|
||||||
|
"multiagent_cooking_5_1_baked_potato_1_cake_1_cooked_beef_1_rabbit_stew": {
|
||||||
|
"conversation": "Let's work together to make cooked_beef, baked_potato, cake, rabbit_stew.",
|
||||||
|
"agent_count": 0,
|
||||||
|
"human_count": 1,
|
||||||
|
"target": {
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"baked_potato": 1,
|
||||||
|
"cake": 1,
|
||||||
|
"rabbit_stew": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: Go to the chest and grab 3 milk buckets.",
|
||||||
|
"Step 3: Go to the chest and grab an egg.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Go to the furnace and bake the potato.",
|
||||||
|
"Step 3: Go to the chest and grab a bowl",
|
||||||
|
"Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 6: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Make 1 cooked_beef, 1 baked_potato, 1 cake, 1 rabbit_stew. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
48
tasks/cooking_tasks/human_tasks/2_humans.json
Normal file
48
tasks/cooking_tasks/human_tasks/2_humans.json
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
{ "multiagent_cooking_5_1_baked_potato_1_bread_1_cake_1_golden_apple_1_rabbit_stew": {
|
||||||
|
"conversation": "Let's work together to make bread, cake, golden_apple, baked_potato, rabbit_stew.",
|
||||||
|
"agent_count": 0,
|
||||||
|
"human_count": 2,
|
||||||
|
"target": {
|
||||||
|
"bread": 1,
|
||||||
|
"cake": 1,
|
||||||
|
"golden_apple": 1,
|
||||||
|
"baked_potato": 1,
|
||||||
|
"rabbit_stew": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: Go to the chest and grab 3 milk buckets.",
|
||||||
|
"Step 3: Go to the chest and grab an egg.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Go to the chest and collect 1 apple and 8 gold ingots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Go to the furnace and bake the potato.",
|
||||||
|
"Step 3: Go to the chest and grab a bowl",
|
||||||
|
"Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 6: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Make 1 bread, 1 cake, 1 golden_apple, 1 baked_potato, 1 rabbit_stew. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
48
tasks/cooking_tasks/human_tasks/3_humans.json
Normal file
48
tasks/cooking_tasks/human_tasks/3_humans.json
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
{
|
||||||
|
"multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew": {
|
||||||
|
"conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.",
|
||||||
|
"agent_count": 5,
|
||||||
|
"target": {
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"golden_apple": 1,
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"bread": 1,
|
||||||
|
"cake": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Go to the chest and collect 1 apple and 8 gold ingots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Go to the furnace and bake the potato.",
|
||||||
|
"Step 3: Go to the chest and grab a bowl",
|
||||||
|
"Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 6: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: Go to the chest and grab 3 milk buckets.",
|
||||||
|
"Step 3: Go to the chest and grab an egg.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
40
tasks/cooking_tasks/human_tasks/4_humans.json
Normal file
40
tasks/cooking_tasks/human_tasks/4_humans.json
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
{
|
||||||
|
"multiagent_cooking_5_1_baked_potato_1_bread_1_cooked_beef_1_rabbit_stew": {
|
||||||
|
"conversation": "Let's work together to make bread, cooked_beef, rabbit_stew, baked_potato.",
|
||||||
|
"agent_count": 2,
|
||||||
|
"target": {
|
||||||
|
"bread": 1,
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"baked_potato": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Go to the furnace and bake the potato.",
|
||||||
|
"Step 3: Go to the chest and grab a bowl",
|
||||||
|
"Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 6: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"baked_potato": [
|
||||||
|
"Step 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).",
|
||||||
|
"Step 2: Go to the furnace and bake the potato."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 bread, 1 cooked_beef, 1 rabbit_stew, 1 baked_potato. \n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for baked_potato:\nStep 1: Go to the farm and collect 1 potato (search for 'potatoes' (not 'potato')).\nStep 2: Go to the furnace and bake the potato."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
49
tasks/cooking_tasks/human_tasks/5_humans.json
Normal file
49
tasks/cooking_tasks/human_tasks/5_humans.json
Normal file
|
@ -0,0 +1,49 @@
|
||||||
|
{
|
||||||
|
"multiagent_cooking_5_1_bread_1_cake_1_cooked_beef_1_golden_apple_1_rabbit_stew": {
|
||||||
|
"conversation": "Let's work together to make cooked_beef, golden_apple, rabbit_stew, bread, cake.",
|
||||||
|
"agent_count": 0,
|
||||||
|
"human_count": 5,
|
||||||
|
"target": {
|
||||||
|
"cooked_beef": 1,
|
||||||
|
"golden_apple": 1,
|
||||||
|
"rabbit_stew": 1,
|
||||||
|
"bread": 1,
|
||||||
|
"cake": 1
|
||||||
|
},
|
||||||
|
"type": "cooking",
|
||||||
|
"timeout": 500,
|
||||||
|
"recipes": {
|
||||||
|
"cooked_beef": [
|
||||||
|
"Step 1: Kill a cow and pick up 1 beef that is dropped.",
|
||||||
|
"Step 2: Go to furnace and use it to cook the beef."
|
||||||
|
],
|
||||||
|
"golden_apple": [
|
||||||
|
"Step 1: Go to the chest and collect 1 apple and 8 gold ingots.",
|
||||||
|
"Step 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple."
|
||||||
|
],
|
||||||
|
"rabbit_stew": [
|
||||||
|
"Step 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').",
|
||||||
|
"Step 2: Go to the furnace and bake the potato.",
|
||||||
|
"Step 3: Go to the chest and grab a bowl",
|
||||||
|
"Step 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.",
|
||||||
|
"Step 6: Go to the furnace and cook the raw rabbit.",
|
||||||
|
"Step 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew."
|
||||||
|
],
|
||||||
|
"bread": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat.",
|
||||||
|
"Step 2: Go to the crafting table and use the wheat to craft bread."
|
||||||
|
],
|
||||||
|
"cake": [
|
||||||
|
"Step 1: Go to the farm and collect 3 wheat, 2 sugar cane.",
|
||||||
|
"Step 2: Go to the chest and grab 3 milk buckets.",
|
||||||
|
"Step 3: Go to the chest and grab an egg.",
|
||||||
|
"Step 4: Go to the crafting table and craft the sugarcane into sugar.",
|
||||||
|
"Step 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"blocked_access_to_recipe": [],
|
||||||
|
"goal": {
|
||||||
|
"0": "Collaborate with agents around you to make 1 cooked_beef, 1 golden_apple, 1 rabbit_stew, 1 bread, 1 cake. \n\nRecipe for cooked_beef:\nStep 1: Kill a cow and pick up 1 beef that is dropped.\nStep 2: Go to furnace and use it to cook the beef.\n\nRecipe for golden_apple:\nStep 1: Go to the chest and collect 1 apple and 8 gold ingots.\nStep 2: Go to the crafting table and surround the apple with the gold ingots to create a golden apple.\n\nRecipe for rabbit_stew:\nStep 1: Go to the farm and collect 1 carrot, 1 potato, and 1 brown mushroom (search for 'potatoes' (not 'potato').\nStep 2: Go to the furnace and bake the potato.\nStep 3: Go to the chest and grab a bowl\nStep 5: Kill a rabbit and pick up 1 raw rabbit that is dropped.\nStep 6: Go to the furnace and cook the raw rabbit.\nStep 7: Go to the crafting table and combine the cooked rabbit, baked potato, carrot, brown mushroom, and bowl to make rabbit stew.\n\nRecipe for bread:\nStep 1: Go to the farm and collect 3 wheat.\nStep 2: Go to the crafting table and use the wheat to craft bread.\n\nRecipe for cake:\nStep 1: Go to the farm and collect 3 wheat, 2 sugar cane.\nStep 2: Go to the chest and grab 3 milk buckets.\nStep 3: Go to the chest and grab an egg.\nStep 4: Go to the crafting table and craft the sugarcane into sugar.\nStep 5: Go to the crafting table and combine all ingredients (3 wheat, 2 sugar, 1 egg, and milk bucket) to make a cake."
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,8 +1,9 @@
|
||||||
import mineflayer from 'mineflayer';
|
import mineflayer from 'mineflayer';
|
||||||
import yargs from 'yargs';
|
import yargs from 'yargs';
|
||||||
import { resetConstructionWorld } from '../src/agent/tasks/construction_tasks.js';
|
import { hideBin } from 'yargs/helpers';
|
||||||
import { cookingTaskInitalization } from '../src/agent/tasks/cooking_tasks.js';
|
import { Blueprint, ConstructionTaskValidator } from '../src/agent/tasks/construction_tasks.js';
|
||||||
import { worldToBlueprint, blueprintToTask } from '../../src/agent/tasks/construction_tasks.js';
|
import { CookingTaskInitiator } from '../src/agent/tasks/cooking_tasks.js';
|
||||||
|
|
||||||
import fs from 'fs';
|
import fs from 'fs';
|
||||||
import { start } from 'repl';
|
import { start } from 'repl';
|
||||||
|
|
||||||
|
@ -33,28 +34,44 @@ function parseArguments() {
|
||||||
.parse();
|
.parse();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class Agent {
|
||||||
|
constructor(bot) {
|
||||||
|
this.bot = bot;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// parse arguments
|
// parse arguments
|
||||||
const args = parseArguments();
|
const args = parseArguments();
|
||||||
|
|
||||||
// load in the task path
|
// load in the task path
|
||||||
const taskPath = fs.readFileSync(args.task_path, 'utf8');
|
const taskPath = fs.readFileSync(args.task_path, 'utf8');
|
||||||
const taskData = JSON.parse(taskPath);
|
const taskData = JSON.parse(taskPath);
|
||||||
const selectedTaskId = taskData.task_id;
|
const task_id = args.task_id;
|
||||||
|
|
||||||
|
|
||||||
// give the required inventory items to the usernames specified in the usernames list
|
// give the required inventory items to the usernames specified in the usernames list
|
||||||
bot.on('spawn', async () => {
|
bot.on('spawn', async () => {
|
||||||
|
await new Promise(resolve => setTimeout(resolve, 5000));
|
||||||
console.log("Bot spawned. Starting task...");
|
console.log("Bot spawned. Starting task...");
|
||||||
|
|
||||||
|
|
||||||
// initiate the world according to the construction or cooking world
|
// initiate the world according to the construction or cooking world
|
||||||
const usernames = args.usernames;
|
const usernames = args.usernames;
|
||||||
const task = taskData[selectedTaskId];
|
bot.chat(`/tp andy ${usernames[0]}`);
|
||||||
const inventory = task.initial_inventory;
|
await new Promise(resolve => setTimeout(resolve, 5000));
|
||||||
|
console.log(taskData);
|
||||||
|
console.log(task_id);
|
||||||
|
const task = taskData[task_id];
|
||||||
|
console.log(task);
|
||||||
|
|
||||||
// give the items to the users
|
// give the items to the users
|
||||||
for (let i = 0; i < usernames.length; i++) {
|
for (let i = 0; i < usernames.length; i++) {
|
||||||
const user = usernames[i];
|
const user = usernames[i];
|
||||||
const userInventory = inventory[i];
|
bot.chat(`/clear ${user}`);
|
||||||
|
let userInventory = null;
|
||||||
|
if (task.initial_inventory) {
|
||||||
|
userInventory = task.initial_inventory[i];
|
||||||
|
}
|
||||||
|
|
||||||
if (userInventory) {
|
if (userInventory) {
|
||||||
for (const item in userInventory) {
|
for (const item in userInventory) {
|
||||||
|
@ -64,28 +81,51 @@ bot.on('spawn', async () => {
|
||||||
} else {
|
} else {
|
||||||
console.log(`No inventory found for user: ${user}`);
|
console.log(`No inventory found for user: ${user}`);
|
||||||
}
|
}
|
||||||
|
let validator = null;
|
||||||
|
|
||||||
if (task.type === "techtree" ) {
|
if (task.type === "techtree" ) {
|
||||||
bot.chat(`/tell ${user} You have the goal to ${task.goal}`);
|
bot.chat(`/tell ${user} You have the goal to ${task.goal}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (task.type === "construction") {
|
if (task.type === "construction") {
|
||||||
|
console.log(task.blueprint);
|
||||||
|
const blueprint = new Blueprint(task.blueprint);
|
||||||
|
console.log(blueprint);
|
||||||
|
const result = blueprint.autoDelete();
|
||||||
|
const commands = result.commands;
|
||||||
|
for (const command of commands) {
|
||||||
|
bot.chat(command);
|
||||||
|
}
|
||||||
|
bot.chat(`/tp @a ${task.blueprint.levels[0].coordinates[0]} ${task.blueprint.levels[0].coordinates[1]} ${task.blueprint.levels[0].coordinates[2]}`);
|
||||||
bot.chat(`/tell ${user} You have the goal to ${task.goal}`);
|
bot.chat(`/tell ${user} You have the goal to ${task.goal}`);
|
||||||
//todo: some sort of blueprint visualizer
|
//todo: some sort of blueprint visualizer
|
||||||
}
|
}
|
||||||
if (task.type === "cooking") {
|
if (task.type === "cooking") {
|
||||||
|
if (i === 0) {
|
||||||
|
const cooking_initiator = new CookingTaskInitiator(task, bot);
|
||||||
|
cooking_initiator.init();
|
||||||
|
console.log("Cooking task initiated");
|
||||||
|
}
|
||||||
|
await new Promise(resolve => setTimeout(resolve, 20000));
|
||||||
const user_goal = task.goal[i];
|
const user_goal = task.goal[i];
|
||||||
bot.chat(`/tell ${user} You have the goal to ${user_goal}`);
|
bot.chat(`You have the goal to ${user_goal}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
const timeout = task.timeout;
|
const timeout = task.timeout;
|
||||||
// wait timeout seconds and then crash the task
|
console.log(`Timeout set to ${timeout} seconds`);
|
||||||
setTimeout(() => {
|
await new Promise(resolve => setTimeout(resolve, timeout * 1000));
|
||||||
bot.chat(`/tell ${usernames} Time is up!`);
|
if (task.type === "construction") {
|
||||||
bot.quit();
|
const blueprint = new Blueprint(task.blueprint);
|
||||||
}, timeout * 1000);
|
const check = blueprint.explainBlueprintDifference(bot);
|
||||||
|
console.log(check);
|
||||||
|
const agent = new Agent(bot);
|
||||||
|
const validator = new ConstructionTaskValidator(task, agent);
|
||||||
|
const result = validator.validate();
|
||||||
|
console.log(result);
|
||||||
|
bot.chat(`Score is ${result.score}`);
|
||||||
|
}
|
||||||
|
bot.chat(`Time is up!`);
|
||||||
});
|
});
|
||||||
// give required information to the users in some way
|
// give required information to the users in some way
|
||||||
// do some automatic timer sort of thing to give the users time to do the task
|
// do some automatic timer sort of thing to give the users time to do the task
|
||||||
|
|
Loading…
Add table
Reference in a new issue