Coverage for mindsdb / integrations / handlers / huggingface_handler / __init__.py: 0%
15 statements
« prev ^ index » next coverage.py v7.13.1, created at 2026-01-21 00:36 +0000
« prev ^ index » next coverage.py v7.13.1, created at 2026-01-21 00:36 +0000
1from mindsdb.integrations.libs.const import HANDLER_TYPE
3from .__about__ import __version__ as version, __description__ as description
5try:
6 from .huggingface_handler import HuggingFaceHandler as Handler
8 import_error = None
9except Exception as e:
10 Handler = None
11 import_error = e
14title = "Hugging Face"
15name = "huggingface"
16type = HANDLER_TYPE.ML
17icon_path = "icon.svg"
18permanent = False
19execution_method = "subprocess_keep"
21__all__ = ["Handler", "version", "name", "type", "title", "description", "import_error", "icon_path"]