File size: 393 Bytes
5fdbe77
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""DCA agent package exposing helper factories."""

from __future__ import annotations

__all__ = ["DcaAgent", "get_tools"]


def __getattr__(name: str):
    if name == "DcaAgent":
        from .agent import DcaAgent as _DcaAgent

        return _DcaAgent
    if name == "get_tools":
        from .tools import get_tools as _get_tools

        return _get_tools
    raise AttributeError(name)