Krishwall's picture
Upload folder using huggingface_hub
d83e0b5 verified
raw
history blame contribute delete
219 Bytes
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}")