13 lines
338 B
Python
13 lines
338 B
Python
"""
|
||
Causal Inference Agent
|
||
|
||
一个领域无关的通用因果推断 Agent,提供从数据加载、变量识别、
|
||
因果图构建、混杂识别到效应估计的完整 pipeline。
|
||
"""
|
||
|
||
from .agent import CausalInferenceAgent
|
||
from .core.config import AgentConfig
|
||
|
||
__version__ = "0.2.0"
|
||
__all__ = ["CausalInferenceAgent", "AgentConfig"]
|