24 lines
690 B
Python
24 lines
690 B
Python
"""
|
|
输入处理模块 (Input Processor Module)
|
|
|
|
该模块提供文件查询和因果推断解析功能,用于处理用户自然语言问题并识别因果推断要素。
|
|
|
|
主要组件:
|
|
- FileQueryTool: 文件查询工具,支持 CSV 和 Excel 文件
|
|
- CausalParser: 因果推断解析器,使用 LLM 解析用户问题
|
|
"""
|
|
|
|
from .file_query_tool import FileQueryTool, FileMetadata, ColumnInfo, SampleData
|
|
from .causal_parser import CausalParser, CausalInferenceRequest, CausalInferenceResult
|
|
|
|
__version__ = "1.0.0"
|
|
__all__ = [
|
|
"FileQueryTool",
|
|
"FileMetadata",
|
|
"ColumnInfo",
|
|
"SampleData",
|
|
"CausalParser",
|
|
"CausalInferenceRequest",
|
|
"CausalInferenceResult",
|
|
]
|