itachi-ai commited on
Commit
80871cf
1 Parent(s): c973271
Files changed (1) hide show
  1. vectorize.py +1 -1
vectorize.py CHANGED
@@ -49,7 +49,7 @@ class VectorDataBase():
49
  def embedding_with_loop(self):
50
  docs = self.load_docs_split()
51
  if docs:
52
- for doc in tqdm(docs[self.start_page:20]):
53
  self.add_collection_database(doc)
54
  print('Done')
55
  else:
 
49
  def embedding_with_loop(self):
50
  docs = self.load_docs_split()
51
  if docs:
52
+ for doc in tqdm(docs[self.start_page:]):
53
  self.add_collection_database(doc)
54
  print('Done')
55
  else: