Files
bettafish-company/InsightEngine/__init__.py
T
2025-08-22 22:04:08 +08:00

13 lines
300 B
Python

"""
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"]