使用自然語言輸入:
行程:明天下午3點開會行程:週六早上10點健身房行程:下週三晚上7點聚餐{
"date": "2026-01-16",
"time": "15:00",
"event": "開會",
"location": "",
"category": "工作"
}
會議、專案
家人聚會
朋友聚會
健檢、看醫生
課程、講座
出遊規劃
def get_weather_from_openweathermap(city, api_key):
url = f"https://api.openweathermap.org/data/2.5/weather"
url += f"?q={city}&appid={api_key}&units=metric&lang=zh_tw"
response = requests.get(url)
data = response.json()
return {
'weather': data['weather'][0]['description'],
'temp': data['main']['temp'],
'humidity': data['main']['humidity']
}
天氣狀況:晴朗
🌡️ 溫度:25°C | 體感:27°C
💧 濕度:65% | 💨 風速:3.5 m/s