get_horoscope
Calculate personalized horoscopes for a specified date, time, and location. Use input parameters like datetime, latitude, and longitude to generate astrological insights tailored to individual preferences.
Instructions
ホロスコープを計算して返します
Args:
datetime_str: 計算する日時(YYYY-MM-DD HH:MM:SS形式、省略時は現在時刻)
random_time: ランダムな日時でホロスコープを生成するか
latitude: 緯度(デフォルト: 東京)
longitude: 経度(デフォルト: 東京)
Returns:
ホロスコープの結果
Input Schema
Name | Required | Description | Default |
---|---|---|---|
datetime_str | No | ||
latitude | No | ||
longitude | No | ||
random_time | No |
Input Schema (JSON Schema)
{
"properties": {
"datetime_str": {
"default": null,
"title": "Datetime Str",
"type": "string"
},
"latitude": {
"default": 35.6895,
"title": "Latitude",
"type": "number"
},
"longitude": {
"default": 139.6917,
"title": "Longitude",
"type": "number"
},
"random_time": {
"default": false,
"title": "Random Time",
"type": "boolean"
}
},
"title": "get_horoscopeArguments",
"type": "object"
}