Chris4K commited on
Commit
4848d67
·
verified ·
1 Parent(s): 142d17f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
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.extend(doc['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")