get_cloud_eval
Analyze chess positions by retrieving cloud-based evaluations and principal variations. Input the FEN string to assess game states and strategic insights.
Instructions
Get cloud evaluation for a position
Input Schema
Name | Required | Description | Default |
---|---|---|---|
fen | Yes | FEN of the position to analyze | |
multiPv | No | Number of principal variations (1-5) |
Input Schema (JSON Schema)
{
"properties": {
"fen": {
"description": "FEN of the position to analyze",
"type": "string"
},
"multiPv": {
"default": 1,
"description": "Number of principal variations (1-5)",
"maximum": 5,
"minimum": 1,
"type": "number"
}
},
"required": [
"fen"
],
"type": "object"
}