11 lines
222 B
Python
11 lines
222 B
Python
|
|
"""
|
|||
|
|
Agent 模块(app 内,符合架构计划)
|
|||
|
|
"""
|
|||
|
|
from app.agents.conversation_agent import ConversationAgent
|
|||
|
|
from app.agents.memory_agent import MemoryAgent
|
|||
|
|
|
|||
|
|
__all__ = [
|
|||
|
|
"ConversationAgent",
|
|||
|
|
"MemoryAgent",
|
|||
|
|
]
|