Update app.py
Browse files
app.py
CHANGED
@@ -25,7 +25,7 @@ text_splitter = CharacterTextSplitter(chunk_size=1000, chunk_overlap=0)
|
|
25 |
vdocuments = text_splitter.split_documents(documents)
|
26 |
|
27 |
# Add these lines before creating the Chroma vector store
|
28 |
-
print("Length of embeddings: %s", len(
|
29 |
print("Length of documents: %s", len(documents))
|
30 |
print("Length of vdocuments: %s", len(vdocuments))
|
31 |
|
|
|
25 |
vdocuments = text_splitter.split_documents(documents)
|
26 |
|
27 |
# Add these lines before creating the Chroma vector store
|
28 |
+
print("Length of embeddings: %s", len(api_hf_embeddings))
|
29 |
print("Length of documents: %s", len(documents))
|
30 |
print("Length of vdocuments: %s", len(vdocuments))
|
31 |
|