__init__.py 300 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 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"]