willco-afk commited on
Commit
c6cea3b
·
verified ·
1 Parent(s): 1764725

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
app.py CHANGED
@@ -34,7 +34,11 @@ embeddings = generate_embeddings(content)
34
 
35
  # Add the embeddings to Chroma
36
  for idx, text in enumerate(content):
37
- collection.add(embedding=embeddings[idx], document=text, metadatas={"id": idx})
 
 
 
 
38
 
39
  # Build FAISS index for efficient retrieval
40
  embeddings_np = np.array(embeddings).astype('float32')
 
34
 
35
  # Add the embeddings to Chroma
36
  for idx, text in enumerate(content):
37
+ collection.add_documents(
38
+ documents=[text], # the document (text) itself
39
+ metadatas=[{"id": idx}], # metadata associated with the document
40
+ embeddings=[embeddings[idx]] # the corresponding embeddings for the document
41
+ )
42
 
43
  # Build FAISS index for efficient retrieval
44
  embeddings_np = np.array(embeddings).astype('float32')