ppsingh commited on
Commit
4fadce6
1 Parent(s): 36c612e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -16,6 +16,7 @@ from langchain_core.messages import (
16
  from langchain_huggingface import ChatHuggingFace
17
  from langchain_core.output_parsers import StrOutputParser
18
  from langchain_huggingface import HuggingFaceEndpoint
 
19
  from dotenv import load_dotenv
20
  import pkg_resources
21
  load_dotenv()
@@ -33,7 +34,7 @@ print(package_list_)
33
  # hence, comment out line below when creating for first time
34
  vectorstores = process_pdf()
35
  # once the vectore embeddings are created we will qdrant client to access these
36
- client = QdrantClient(path=f"./data/local_qdrant")
37
 
38
  # -------------------------------------------------------------
39
  # Functions
 
16
  from langchain_huggingface import ChatHuggingFace
17
  from langchain_core.output_parsers import StrOutputParser
18
  from langchain_huggingface import HuggingFaceEndpoint
19
+ from qdrant_client import QdrantClient
20
  from dotenv import load_dotenv
21
  import pkg_resources
22
  load_dotenv()
 
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