Spaces:
Runtime error
Runtime error
File size: 219 Bytes
d83e0b5 | 1 2 3 4 5 6 7 8 | import chromadb
try:
client = chromadb.Client()
collection = client.create_collection("test")
print("ChromaDB basic test passed!")
except Exception as e:
print(f"ChromaDB basic test failed: {e}") |