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

1from mindsdb.integrations.libs.const import HANDLER_TYPE 

2 

3from .__about__ import __version__ as version, __description__ as description 

4 

5try: 

6 from .huggingface_handler import HuggingFaceHandler as Handler 

7 

8 import_error = None 

9except Exception as e: 

10 Handler = None 

11 import_error = e 

12 

13 

14title = "Hugging Face" 

15name = "huggingface" 

16type = HANDLER_TYPE.ML 

17icon_path = "icon.svg" 

18permanent = False 

19execution_method = "subprocess_keep" 

20 

21__all__ = ["Handler", "version", "name", "type", "title", "description", "import_error", "icon_path"]