get_fortune_by_period
Get personalized Korean Saju fortune-telling analysis for specific time periods including yearly, monthly, hourly, or multi-year forecasts based on birth date, time, and gender.
Instructions
시간대별 운세 (year/month/hour/multi-year)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| birthDate | Yes | ||
| birthTime | Yes | ||
| calendar | No | solar | |
| isLeapMonth | No | ||
| gender | Yes | ||
| periodType | Yes | year:YYYY | month:YYYY-MM | hour:YYYY-MM-DD HH:mm | multi-year:연속 | |
| target | No | 기간 (periodType에 맞는 형식) | |
| count | No | multi-year용 |
Input Schema (JSON Schema)
{
"properties": {
"birthDate": {
"type": "string"
},
"birthTime": {
"type": "string"
},
"calendar": {
"default": "solar",
"enum": [
"solar",
"lunar"
],
"type": "string"
},
"count": {
"default": 5,
"description": "multi-year용",
"type": "number"
},
"gender": {
"enum": [
"male",
"female"
],
"type": "string"
},
"isLeapMonth": {
"default": false,
"type": "boolean"
},
"periodType": {
"description": "year:YYYY | month:YYYY-MM | hour:YYYY-MM-DD HH:mm | multi-year:연속",
"enum": [
"year",
"month",
"hour",
"multi-year"
],
"type": "string"
},
"target": {
"description": "기간 (periodType에 맞는 형식)",
"type": "string"
}
},
"required": [
"birthDate",
"birthTime",
"gender",
"periodType"
],
"type": "object"
}