get_daily_fortune
Get your personalized daily fortune reading based on Korean Saju astrology using your birth details and target date for insights into your day ahead.
Instructions
일일 운세
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| birthDate | Yes | ||
| birthTime | Yes | ||
| calendar | No | solar | |
| isLeapMonth | No | ||
| gender | Yes | ||
| targetDate | Yes | YYYY-MM-DD |
Input Schema (JSON Schema)
{
"properties": {
"birthDate": {
"type": "string"
},
"birthTime": {
"type": "string"
},
"calendar": {
"default": "solar",
"enum": [
"solar",
"lunar"
],
"type": "string"
},
"gender": {
"enum": [
"male",
"female"
],
"type": "string"
},
"isLeapMonth": {
"default": false,
"type": "boolean"
},
"targetDate": {
"description": "YYYY-MM-DD",
"type": "string"
}
},
"required": [
"birthDate",
"birthTime",
"gender",
"targetDate"
],
"type": "object"
}