mirror of
https://github.com/hellodigua/ChatLab.git
synced 2026-04-27 23:34:27 +08:00
18 lines
554 B
TypeScript
18 lines
554 B
TypeScript
/**
|
|
* 高级分析模块入口
|
|
* 统一导出所有分析函数
|
|
*/
|
|
|
|
// 复读 + 口头禅分析
|
|
export { getRepeatAnalysis, getCatchphraseAnalysis } from './repeat'
|
|
|
|
// 活跃度分析:夜猫、龙王、潜水、打卡
|
|
export { getNightOwlAnalysis, getDragonKingAnalysis, getDivingAnalysis, getCheckInAnalysis } from './activity'
|
|
|
|
// 行为分析:自言自语、斗图
|
|
export { getMonologueAnalysis, getMemeBattleAnalysis } from './behavior'
|
|
|
|
// 社交分析:@ 互动、含笑量
|
|
export { getMentionAnalysis, getLaughAnalysis } from './social'
|
|
|