ppsingh commited on
Commit
bd02710
1 Parent(s): 7ae21d5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -32,9 +32,9 @@ HF_token = os.environ["HF_TOKEN"]
32
  # process all files and get the vectorstores collections
33
  # vectorestore colection are stored on persistent storage so this needs to be run only once
34
  # hence, comment out line below when creating for first time
35
- vectorstores = process_pdf()
36
  # once the vectore embeddings are created we will qdrant client to access these
37
- #client = QdrantClient(path="./data/local_qdrant")
38
 
39
  # -------------------------------------------------------------
40
  # Functions
 
32
  # process all files and get the vectorstores collections
33
  # vectorestore colection are stored on persistent storage so this needs to be run only once
34
  # hence, comment out line below when creating for first time
35
+ # vectorstores = process_pdf()
36
  # once the vectore embeddings are created we will qdrant client to access these
37
+ vectorstores = get_local_qdrant()
38
 
39
  # -------------------------------------------------------------
40
  # Functions