We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a506aee commit 12c0bd5Copy full SHA for 12c0bd5
plugins/qdrant/superduper_qdrant/qdrant.py
@@ -90,6 +90,12 @@ def __init__(
90
if "timeout" not in config_dict:
91
config_dict["timeout"] = 60 # 60 seconds timeout
92
self.client = QdrantClient(**config_dict)
93
+
94
+ logging.info('Found these collections in the qdrant collection:')
95
+ collections = self.client.get_collections()
96
+ for collection in collections:
97
+ logging.info(f" - {collection.name}")
98
99
self.identifier = identifier
100
self.measure = measure
101
self.batch_size = batch_size
0 commit comments