Chris4K commited on
Commit
b4b7a5f
·
1 Parent(s): 32b2f7d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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(embeddings))
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