handle_draw_board_game
Manage draw offers in Lichess chess games by accepting or declining them based on the game ID and user preference.
Instructions
Handle draw offers for a board game
Input Schema
Name | Required | Description | Default |
---|---|---|---|
accept | No | Whether to accept or decline the draw offer | |
gameId | Yes | The game ID |
Input Schema (JSON Schema)
{
"properties": {
"accept": {
"default": true,
"description": "Whether to accept or decline the draw offer",
"type": "boolean"
},
"gameId": {
"description": "The game ID",
"type": "string"
}
},
"required": [
"gameId"
],
"type": "object"
}