mindcraft/example_tasks.json

61 lines
1.6 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"
},
"debug_inventory_restriction": {
"goal": "Place 1 oak plank, then place 1 stone brick",
"initial_inventory": {
"oak_planks": 20
},
"type": "debug",
"restrict_to_inventory": true
},
2024-12-09 16:30:44 -08:00
"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
}
}