Reconfiguration of the basic multi-agent architecture.

This commit is contained in:
戒酒的李白
2025-08-22 22:04:08 +08:00
parent bec01f8930
commit 7ae863a781
70 changed files with 6792 additions and 648 deletions
+12
View File
@@ -0,0 +1,12 @@
"""
Deep Search Agent
一个无框架的深度搜索AI代理实现
"""
from .agent import DeepSearchAgent, create_agent
from .utils.config import Config, load_config
__version__ = "1.0.0"
__author__ = "Deep Search Agent Team"
__all__ = ["DeepSearchAgent", "create_agent", "Config", "load_config"]