refactor: 初步重构为maimcore

This commit is contained in:
tcmofashi
2025-03-27 13:30:46 +08:00
parent 09c6500d79
commit 4c332d0b2f
26 changed files with 426 additions and 1213 deletions

23
src/plugins/__init__.py Normal file
View File

@@ -0,0 +1,23 @@
"""
MaiMBot插件系统
包含聊天、情绪、记忆、日程等功能模块
"""
from .chat.chat_stream import chat_manager
from .chat.emoji_manager import emoji_manager
from .chat.relationship_manager import relationship_manager
from .moods.moods import MoodManager
from .willing.willing_manager import willing_manager
from .memory_system.memory import hippocampus
from .schedule.schedule_generator import bot_schedule
# 导出主要组件供外部使用
__all__ = [
"chat_manager",
"emoji_manager",
"relationship_manager",
"MoodManager",
"willing_manager",
"hippocampus",
"bot_schedule",
]