Coverage for mindsdb / integrations / handlers / autogluon_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 __description__ as description 

4from .__about__ import __version__ as version 

5 

6try: 

7 from .autogluon_handler import AutoGluonHandler as Handler 

8 

9 import_error = None 

10except Exception as e: 

11 Handler = None 

12 import_error = e 

13 

14title = "AutoGluon" 

15name = "autogluon" 

16type = HANDLER_TYPE.ML 

17icon_path = 'icon.svg' 

18permanent = False 

19 

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