That1BrainCell commited on
Commit
b4c5a56
·
verified ·
1 Parent(s): 52113a0

test code update

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -26,7 +26,8 @@ from search import *
26
  # Chroma Connections
27
  client = chromadb.PersistentClient(path = "/home/user/embeddings")
28
 
29
- print(client.list_collections())
 
30
  collection = client.get_or_create_collection(name="data",metadata={"hnsw:space": "l2"})
31
 
32
 
 
26
  # Chroma Connections
27
  client = chromadb.PersistentClient(path = "/home/user/embeddings")
28
 
29
+ for item in client.list_collections():
30
+ print(item)
31
  collection = client.get_or_create_collection(name="data",metadata={"hnsw:space": "l2"})
32
 
33