请求 JSON 预览
本地校验通过后才允许提交给 API
{
"state": {
"position": {
"x": 11,
"y": 8
},
"legal_moves": [
"up",
"left",
"right"
],
"nearest_goal": {
"direction": "right",
"distance": 4
},
"hazards": [
{
"direction": "right",
"distance": 2
}
]
},
"questions": {
"next_move": {
"type": "choice",
"instructions": "Which legal move should the game agent take at this junction?",
"criteria": {
"up": "Move up",
"left": "Move left",
"right": "Move right"
}
},
"danger_level": {
"type": "score",
"instructions": "How dangerous is the current junction state?",
"criteria": [
"Safe",
"Caution",
"Dangerous",
"Evade immediately"
]
}
}
}