mirror of
https://github.com/countbot-ai/CountBot.git
synced 2026-09-14 20:46:47 +08:00
4334d775be
- ReAct 循环引擎(loop.py) - 智能记忆系统(memory.py) - 主动问候机制(heartbeat.py) - 12 种性格系统(personalities.py) - 上下文构建与压缩(context.py、compactor.py) - 子代理系统(subagent.py) - 任务管理器(task_manager.py)
19 lines
492 B
Python
19 lines
492 B
Python
"""Agent module"""
|
|
|
|
from backend.modules.agent.context import ContextBuilder
|
|
from backend.modules.agent.loop import AgentLoop
|
|
from backend.modules.agent.memory import MemoryStore
|
|
from backend.modules.agent.skills import Skill, SkillsLoader
|
|
from backend.modules.agent.subagent import SubagentManager, SubagentTask, TaskStatus
|
|
|
|
__all__ = [
|
|
"AgentLoop",
|
|
"ContextBuilder",
|
|
"MemoryStore",
|
|
"Skill",
|
|
"SkillsLoader",
|
|
"SubagentManager",
|
|
"SubagentTask",
|
|
"TaskStatus",
|
|
]
|