mindcraft/example_tasks.json

108 lines
3.2 KiB
JSON
Raw Normal View History

2024-12-09 16:30:44 -08:00
{
"debug_single_agent": {
"goal": "Just stand at a place and don't do anything",
"initial_inventory": {},
"type": "debug"
},
"debug_multi_agent": {
"goal": "Just stand at a place and don't do anything",
2024-12-10 14:11:32 -08:00
"agent_count": 2,
2024-12-09 16:30:44 -08:00
"initial_inventory": {
2024-12-10 14:11:32 -08:00
"0": {
2024-12-09 16:30:44 -08:00
"iron_ingot": 1
},
2024-12-10 14:11:32 -08:00
"1": {
2024-12-09 16:30:44 -08:00
"iron_ingot": 1
}
},
"type": "debug"
},
"construction": {
"type": "construction",
2024-12-10 13:13:45 -08:00
"goal": "Build a house",
"initial_inventory": {
"oak_planks": 20
}
2024-12-09 16:30:44 -08:00
},
2024-12-09 17:06:22 -08:00
"techtree_1_shears_with_2_iron_ingot": {
"goal": "Build a shear.",
2024-12-09 16:30:44 -08:00
"initial_inventory": {
2024-12-10 13:13:45 -08:00
"iron_ingot": 1
2024-12-09 16:30:44 -08:00
},
"target": "shears",
"number_of_target": 1,
"type": "techtree",
"timeout": 60
},
"multiagent_techtree_1_stone_pickaxe": {
2024-12-10 13:13:45 -08:00
"conversation": "Let's collaborate to build a stone pickaxe",
2024-12-10 14:11:32 -08:00
"agent_count": 2,
2024-12-09 16:30:44 -08:00
"initial_inventory": {
2024-12-10 14:11:32 -08:00
"0": {
2024-12-09 16:30:44 -08:00
"wooden_pickaxe": 1
},
2024-12-10 14:11:32 -08:00
"1": {
2024-12-09 16:30:44 -08:00
"wooden_axe": 1
}
},
"target": "stone_pickaxe",
"number_of_target": 1,
"type": "techtree",
"timeout": 300
},
"construction_house": {
"type": "construction",
"goal": "Make a house with a blueprint below",
"blueprint": {
"materials": {
"plank": {
"id": "oak_plank",
"number": 40
},
"door": {
"id": "oak_door",
"number": 1
}
},
"levels": [
{
"level": 0,
"coordinates": [142, -60, -179],
"placement":
[
["plank", "plank", "door", "plank", "plank"],
["plank", "air", "air", "air", "plank"],
["plank", "air", "air", "air", "plank"],
["plank", "plank", "plank", "plank", "plank"]
]
},
{
"level": 1,
"coordinates": [142, -59, -179],
"placement":
[
["plank", "plank", "air", "plank", "plank"],
["plank", "air", "air", "air", "plank"],
["plank", "air", "air", "air", "plank"],
["plank", "plank", "plank", "plank", "plank"]
]
},
{
"level": 2,
"coordinates": [142, -58, -179],
"placement":
[
["plank", "plank", "plank", "plank", "plank"],
["plank", "air", "air", "air", "plank"],
["plank", "air", "air", "air", "plank"],
["plank", "plank", "plank", "plank", "plank"]
]
}
]
},
"initial_inventory": {
"oak_planks": 40,
"oak_door": 1
}
2024-12-09 16:30:44 -08:00
}
}