2026-03-29 23:47:20 +08:00

13 lines
338 B
Python
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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