Skip to content

check_fabric_ai_functions_available

Public callable

Check whether Fabric AI Functions are available in the current runtime.

Returns:

Type Description
dict[str, Any]

Diagnostic payload containing an available flag and a message.

Notes

This is a config-facing wrapper around the AI module so readiness checks are callable from config.

Source code in src/fabricops_kit/config.py
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
def check_fabric_ai_functions_available() -> dict[str, Any]:
    """Check whether Fabric AI Functions are available in the current runtime.

    Returns
    -------
    dict[str, Any]
        Diagnostic payload containing an ``available`` flag and a message.

    Notes
    -----
    This is a config-facing wrapper around the AI module so readiness checks are callable from ``config``.
    """
    from .ai import check_fabric_ai_functions_available as _check

    return _check()