get_daily_horoscope
Retrieve today’s horoscope for a specific zodiac sign in categories like love, career, health, or wealth. Input the sign in English or Chinese to get tailored insights.
Instructions
获取指定星座的今日运势
Input Schema
Name | Required | Description | Default |
---|---|---|---|
category | No | 运势类别 | luck |
zodiac | Yes | 星座名称(中文或英文) |
Input Schema (JSON Schema)
{
"properties": {
"category": {
"default": "luck",
"description": "运势类别",
"enum": [
"love",
"career",
"health",
"wealth",
"luck"
],
"type": "string"
},
"zodiac": {
"description": "星座名称(中文或英文)",
"enum": [
"aries",
"taurus",
"gemini",
"cancer",
"leo",
"virgo",
"libra",
"scorpio",
"sagittarius",
"capricorn",
"aquarius",
"pisces",
"白羊座",
"金牛座",
"双子座",
"巨蟹座",
"狮子座",
"处女座",
"天秤座",
"天蝎座",
"射手座",
"摩羯座",
"水瓶座",
"双鱼座"
],
"type": "string"
}
},
"required": [
"zodiac"
],
"type": "object"
}