Coverage for mindsdb / integrations / handlers / llama_index_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 .__about__ import __version__ as version, __description__ as description 

4 

5try: 

6 from .llama_index_handler import LlamaIndexHandler as Handler 

7 

8 import_error = None 

9except Exception as e: 

10 Handler = None 

11 import_error = e 

12 

13title = "LlamaIndex" 

14name = "llama_index" 

15type = HANDLER_TYPE.ML 

16icon_path = 'icon.svg' 

17permanent = False 

18 

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