Anne31415 commited on
Commit
f9dbffb
·
1 Parent(s): 571703e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -8
app.py CHANGED
@@ -37,10 +37,6 @@ with st.sidebar:
37
  else:
38
  st.warning('API key is required to proceed.')
39
 
40
-
41
-
42
-
43
-
44
  def load_pdf(file_path):
45
  pdf_reader = PdfReader(file_path)
46
  text = ""
@@ -60,16 +56,15 @@ def load_pdf(file_path):
60
  with open(f"{store_name}.pkl", "rb") as f:
61
  VectorStore = pickle.load(f)
62
  else:
63
- embeddings = OpenAIEmbeddings(api_key=os.environ['OPENAI_API_KEY'])
64
  VectorStore = FAISS.from_texts(chunks, embedding=embeddings)
65
  with open(f"{store_name}.pkl", "wb") as f:
66
  pickle.dump(VectorStore, f)
67
 
68
- return VectorStore
69
 
70
  def load_chatbot():
71
- return load_qa_chain(llm=OpenAI(), chain_type="stuff")
72
-
73
  def main():
74
  st.title("BinDocs Chat App")
75
 
 
37
  else:
38
  st.warning('API key is required to proceed.')
39
 
 
 
 
 
40
  def load_pdf(file_path):
41
  pdf_reader = PdfReader(file_path)
42
  text = ""
 
56
  with open(f"{store_name}.pkl", "rb") as f:
57
  VectorStore = pickle.load(f)
58
  else:
59
+ embeddings = OpenAIEmbeddings() # No api_key parameter here
60
  VectorStore = FAISS.from_texts(chunks, embedding=embeddings)
61
  with open(f"{store_name}.pkl", "wb") as f:
62
  pickle.dump(VectorStore, f)
63
 
64
+ return VectorStore
65
 
66
  def load_chatbot():
67
+ return load_qa_chain(llm=OpenAI(), chain_type="stuff")
 
68
  def main():
69
  st.title("BinDocs Chat App")
70