analyze_saju
Analyze Korean Saju fortune-telling based on birth date, time, and gender to provide birth chart calculations, fortune predictions, and personalized life guidance using traditional Eastern astrology methods.
Instructions
사주 분석 통합 (basic/fortune/yongsin/school_compare/yongsin_method)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| birthDate | Yes | YYYY-MM-DD | |
| birthTime | Yes | HH:mm | |
| calendar | No | solar | |
| isLeapMonth | No | ||
| gender | Yes | ||
| analysisType | Yes | basic:사주계산 | fortune:운세 | yongsin:용신 | school_compare:유파비교 | yongsin_method:용신방법론 | |
| fortuneType | No | fortune용 (general/career/wealth/health/love) | |
| schools | No | school_compare용 | |
| method | No | yongsin_method용 (strength/seasonal/mediation/disease) |
Input Schema (JSON Schema)
{
"properties": {
"analysisType": {
"description": "basic:사주계산 | fortune:운세 | yongsin:용신 | school_compare:유파비교 | yongsin_method:용신방법론",
"enum": [
"basic",
"fortune",
"yongsin",
"school_compare",
"yongsin_method"
],
"type": "string"
},
"birthDate": {
"description": "YYYY-MM-DD",
"type": "string"
},
"birthTime": {
"description": "HH:mm",
"type": "string"
},
"calendar": {
"default": "solar",
"enum": [
"solar",
"lunar"
],
"type": "string"
},
"fortuneType": {
"description": "fortune용 (general/career/wealth/health/love)",
"enum": [
"general",
"career",
"wealth",
"health",
"love"
],
"type": "string"
},
"gender": {
"enum": [
"male",
"female"
],
"type": "string"
},
"isLeapMonth": {
"default": false,
"type": "boolean"
},
"method": {
"description": "yongsin_method용 (strength/seasonal/mediation/disease)",
"enum": [
"strength",
"seasonal",
"mediation",
"disease"
],
"type": "string"
},
"schools": {
"description": "school_compare용",
"items": {
"enum": [
"ziping",
"dts",
"qtbj",
"modern",
"shensha"
],
"type": "string"
},
"type": "array"
}
},
"required": [
"birthDate",
"birthTime",
"gender",
"analysisType"
],
"type": "object"
}