Update app.py
Browse files
app.py
CHANGED
@@ -28,7 +28,8 @@ vdocuments = text_splitter.split_documents(documents)
|
|
28 |
# Extract the embedding arrays from the PDF documents
|
29 |
embeddings = []
|
30 |
for doc in documents:
|
31 |
-
embeddings.
|
|
|
32 |
|
33 |
# Create Chroma vector store for API embeddings
|
34 |
api_db = Chroma.from_documents(vdocuments, HfApiEmbeddingRetriever, collection_name="api-collection")
|
|
|
28 |
# Extract the embedding arrays from the PDF documents
|
29 |
embeddings = []
|
30 |
for doc in documents:
|
31 |
+
embeddings.append(getattr(doc, 'embeddings'))
|
32 |
+
|
33 |
|
34 |
# Create Chroma vector store for API embeddings
|
35 |
api_db = Chroma.from_documents(vdocuments, HfApiEmbeddingRetriever, collection_name="api-collection")
|