Feat(AI):天气和日历对接

This commit is contained in:
lifizer
2025-05-21 15:39:23 +08:00
parent 20fc34673d
commit 243460eb39
5 changed files with 206 additions and 3 deletions
+8
View File
@@ -37,3 +37,11 @@ export function historyChatMessage(params) {
export function deleteChatListByType(type) {
return request.delete('/v1/chat/type/' + type, {}, { login: true })
}
export function getWeatherData(params) {
return request.get('/v1/chat/weatherData', params, { login: true })
}
export function getHolidayData(params) {
return request.get('/v1/chat/holidayData', params, { login: true })
}