Spaces:
Running
Running
Create agent/__init__.py
Browse files- agent/__init__.py +24 -0
agent/__init__.py
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
"""
|
| 3 |
+
LifeAdmin AI - Agent Module
|
| 4 |
+
|
| 5 |
+
Core agent components:
|
| 6 |
+
- agent_core: Main autonomous agent with planning and execution
|
| 7 |
+
- mcp_client: MCP tool communication client
|
| 8 |
+
- rag_engine: RAG document search and retrieval
|
| 9 |
+
- memory: Persistent memory and context storage
|
| 10 |
+
"""
|
| 11 |
+
|
| 12 |
+
from .agent_core import LifeAdminAgent, AgentThought, AgentTask
|
| 13 |
+
from .mcp_client import MCPClient
|
| 14 |
+
from .rag_engine import RAGEngine
|
| 15 |
+
from .memory import MemoryStore
|
| 16 |
+
|
| 17 |
+
__all__ = [
|
| 18 |
+
'LifeAdminAgent',
|
| 19 |
+
'AgentThought',
|
| 20 |
+
'AgentTask',
|
| 21 |
+
'MCPClient',
|
| 22 |
+
'RAGEngine',
|
| 23 |
+
'MemoryStore'
|
| 24 |
+
]
|