Spaces:
Running
Running
File size: 328 Bytes
0bd4ab4 | 1 2 3 4 5 6 7 8 9 10 11 | from qdrant_client import QdrantClient
import sys
try:
client = QdrantClient(url="http://localhost:6333")
collections = client.get_collections()
print("QDRANT CONNECTION SUCCESSFUL!")
print(f"Collections found: {len(collections.collections)}")
except Exception as e:
print(f"QDRANT CONNECTION FAILED: {e}")
|