Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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.
|
|
|
|
|
|
|
|
|
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')
|