Spaces:
Running
Running
| """ | |
| LifeAdmin AI - Agent Module | |
| Core agent components: | |
| - agent_core: Main autonomous agent with planning and execution | |
| - mcp_client: MCP tool communication client | |
| - rag_engine: RAG document search and retrieval | |
| - memory: Persistent memory and context storage | |
| """ | |
| from .agent_core import LifeAdminAgent, AgentThought, AgentTask | |
| from .mcp_client import MCPClient | |
| from .rag_engine import RAGEngine | |
| from .memory import MemoryStore | |
| __all__ = [ | |
| 'LifeAdminAgent', | |
| 'AgentThought', | |
| 'AgentTask', | |
| 'MCPClient', | |
| 'RAGEngine', | |
| 'MemoryStore' | |
| ] |