Coverage for mindsdb / integrations / handlers / qdrant_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 __description__ as description
4from .__about__ import __version__ as version
5from .connection_args import connection_args, connection_args_example
6try:
7 from .qdrant_handler import QdrantHandler as Handler
8 import_error = None
9except Exception as e:
10 Handler = None
11 import_error = e
13title = "Qdrant"
14name = "qdrant"
15type = HANDLER_TYPE.DATA
16icon_path = "icon.svg"
18__all__ = [
19 "Handler",
20 "version",
21 "name",
22 "type",
23 "title",
24 "description",
25 "connection_args",
26 "connection_args_example",
27 "import_error",
28 "icon_path",
29]