Chris4K commited on
Commit
619a1f2
·
1 Parent(s): d944f48

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -25,14 +25,15 @@ text_splitter = CharacterTextSplitter(chunk_size=100, 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(api_hf_embeddings))
29
- print("Length of documents: %s", len(documents))
 
30
  print("Length of vdocuments: %s", len(vdocuments))
31
  # Add these lines before creating the Chroma vector store
32
  #logger.debug("Length of vdocuments: %s", len(vdocuments))
33
  if vdocuments and 'embeddings' in vdocuments[0]:
34
  first_document_embeddings = vdocuments[0]['embeddings']
35
- print("Length of embeddings for the first document: %s", len(first_document_embeddings))
36
 
37
 
38
  # Create Chroma vector store for API embeddings
 
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
+
31
  print("Length of vdocuments: %s", len(vdocuments))
32
  # Add these lines before creating the Chroma vector store
33
  #logger.debug("Length of vdocuments: %s", len(vdocuments))
34
  if vdocuments and 'embeddings' in vdocuments[0]:
35
  first_document_embeddings = vdocuments[0]['embeddings']
36
+ print("Length of embeddings for the first document: {}".format(len(first_document_embeddings)))
37
 
38
 
39
  # Create Chroma vector store for API embeddings