manage_settings
Configure and retrieve interpretation settings for Saju fortune-telling analysis, including preset options and custom weight adjustments for different analytical methods.
Instructions
해석 설정 관리 (get/set)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | ||
| preset | No | ||
| custom | No |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"enum": [
"get",
"set"
],
"type": "string"
},
"custom": {
"properties": {
"dts": {
"maximum": 1,
"minimum": 0,
"type": "number"
},
"modern": {
"maximum": 1,
"minimum": 0,
"type": "number"
},
"qtbj": {
"maximum": 1,
"minimum": 0,
"type": "number"
},
"shensha": {
"maximum": 1,
"minimum": 0,
"type": "number"
},
"ziping": {
"maximum": 1,
"minimum": 0,
"type": "number"
}
},
"type": "object"
},
"preset": {
"enum": [
"ziping",
"dts",
"qtbj",
"modern",
"shensha",
"balanced"
],
"type": "string"
}
},
"required": [
"action"
],
"type": "object"
}