analyze
Analyze shogi positions by evaluating move candidates, scores, and variations using MultiPV to enhance strategic decision-making in Japanese chess.
Instructions
SFENを解析して候補手(MultiPV)・評価値・PVを返す
Input Schema
Name | Required | Description | Default |
---|---|---|---|
depth | No | ||
forceMove | No | ||
multipv | No | ||
sfen | Yes | ||
threads | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"depth": {
"default": 18,
"maximum": 30,
"minimum": 4,
"type": "integer"
},
"forceMove": {
"type": "string"
},
"multipv": {
"default": 10,
"maximum": 10,
"minimum": 1,
"type": "integer"
},
"sfen": {
"type": "string"
},
"threads": {
"default": 1,
"maximum": 8,
"minimum": 1,
"type": "integer"
}
},
"required": [
"sfen"
],
"type": "object"
}