def construct_env()

in aidial_assistant/utils/yaml_loader.py [0:0]


def construct_env(loader: Loader, node: yaml.Node) -> Any:
    """Lookup environment variable referenced at node."""

    name = str(loader.construct_yaml_str(node))
    return get_env(name)