eval_at
Analyze and evaluate the outcome of a specific move in shogi (Japanese chess) by providing Sfen notation and move details, determining potential game state changes and optimal strategies.
Instructions
現局面で特定の一手を指した先を解析して返す
Input Schema
Name | Required | Description | Default |
---|---|---|---|
depth | No | ||
move | Yes | ||
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"
},
"move": {
"type": "string"
},
"multipv": {
"default": 5,
"maximum": 10,
"minimum": 1,
"type": "integer"
},
"sfen": {
"type": "string"
},
"threads": {
"default": 1,
"maximum": 8,
"minimum": 1,
"type": "integer"
}
},
"required": [
"sfen",
"move"
],
"type": "object"
}