ForcePilot/src/agents/common/middlewares/__init__.py
Wenjie Zhang 09fffb233c feat: 添加 middleware, subagents 支持
- 统一导入路径,优化代码结构,删除冗余文件和函数
- refactor: 将 chatbot agent 使用 create_agent 重构,大幅简化处理逻辑
2025-11-05 02:04:34 +08:00

9 lines
233 B
Python

from .context_middlewares import context_aware_prompt, context_based_model
from .dynamic_tool_middleware import DynamicToolMiddleware
__all__ = [
"DynamicToolMiddleware",
"context_aware_prompt",
"context_based_model",
]