Spaces:
Runtime error
Runtime error
File size: 1,045 Bytes
374a68b 59ee1c2 374a68b e9ce7cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 |
{
"name": "Chess",
"global_prompt": "",
"environment": {
"env_type": "pettingzoo:chess",
"parallel": false
},
"players": [
{
"name": "Player 1",
"role_desc": "You are playing chess, you are playing white. Only output the starting and ending position of the chess piece.\nThe format is \"Move (x1, y1) to (x2, y2)\". The bottom left corner piece has a position (0, 0)\n\nFor example:\n\n```\nMove (4, 1) to (4, 3) <EOS>\n\n```",
"backend": {
"backend_type": "openai-chat",
"temperature": 0.7,
"max_tokens": 50
}
},
{
"name": "Player 2",
"role_desc": "You are playing chess. You are playing black pieces. Only output the starting and ending position of the chess piece.\nThe format is \"Move (x1, y1) to (x2, y2)\". The bottom left corner piece has a position (0, 0)\n\nFor example:\n\n```\nMove (4, 6) to (4, 4) <EOS>\n```",
"backend": {
"backend_type": "openai-chat",
"temperature": 0.7,
"max_tokens": 50
}
}
]
}
|