Coverage for mindsdb / integrations / handlers / autokeras_handler / __init__.py: 0%

14 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 mindsdb.integrations.handlers.autokeras_handler.__about__ import ( 

4 __version__ as version, 

5 __description__ as description, 

6) 

7 

8try: 

9 from .autokeras_handler import AutokerasHandler as Handler 

10 

11 import_error = None 

12except Exception as e: 

13 Handler = None 

14 import_error = e 

15 

16title = "AutoKeras" 

17name = "autokeras" 

18type = HANDLER_TYPE.ML 

19icon_path = 'icon.svg' 

20permanent = False 

21 

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