mirror of
https://github.com/hellodigua/ChatLab.git
synced 2026-04-22 08:57:44 +08:00
38 lines
698 B
TypeScript
38 lines
698 B
TypeScript
/**
|
|
* 查询模块入口
|
|
* 统一导出基础查询和高级分析函数
|
|
*/
|
|
|
|
// 基础查询
|
|
export {
|
|
getAvailableYears,
|
|
getMemberActivity,
|
|
getHourlyActivity,
|
|
getDailyActivity,
|
|
getWeekdayActivity,
|
|
getMonthlyActivity,
|
|
getMessageTypeDistribution,
|
|
getTimeRange,
|
|
getMemberNameHistory,
|
|
getAllSessions,
|
|
getSession,
|
|
} from './basic'
|
|
|
|
// 高级分析
|
|
export {
|
|
getRepeatAnalysis,
|
|
getCatchphraseAnalysis,
|
|
getNightOwlAnalysis,
|
|
getDragonKingAnalysis,
|
|
getDivingAnalysis,
|
|
getCheckInAnalysis,
|
|
getMonologueAnalysis,
|
|
getMemeBattleAnalysis,
|
|
getMentionAnalysis,
|
|
getLaughAnalysis,
|
|
} from './advanced'
|
|
|
|
// AI 查询
|
|
export { searchMessages, getMessageContext } from './ai'
|
|
|