大更新,架构调整,数据分析能力提升,

This commit is contained in:
2026-04-19 21:30:08 +08:00
parent 9d01f004d4
commit 00bd48e7e7
26 changed files with 4375 additions and 252 deletions

View File

@@ -5,9 +5,20 @@ Data Analysis Agent Package
一个基于LLM的智能数据分析代理专门为Jupyter Notebook环境设计。
"""
from .core.notebook_agent import NotebookAgent
from .config.llm_config import LLMConfig
from .utils.code_executor import CodeExecutor
try:
from .core.notebook_agent import NotebookAgent
except (ImportError, ModuleNotFoundError):
NotebookAgent = None
try:
from .config.llm_config import LLMConfig
except (ImportError, ModuleNotFoundError):
from config.llm_config import LLMConfig
try:
from .utils.code_executor import CodeExecutor
except (ImportError, ModuleNotFoundError):
from utils.code_executor import CodeExecutor
__version__ = "1.0.0"
__author__ = "Data Analysis Agent Team"