Anne31415 commited on
Commit
a6d00b1
·
1 Parent(s): ab80b1b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -94,7 +94,8 @@ def load_pdf(file_path):
94
 
95
 
96
  def load_chatbot():
97
- return load_qa_chain(llm=OpenAI(), chain_type="stuff")
 
98
 
99
 
100
  def main():
 
94
 
95
 
96
  def load_chatbot():
97
+ return load_qa_chain(llm=openai.ChatCompletion.create(model="gpt-3.5-turbo-16k"), chain_type="stuff")
98
+
99
 
100
 
101
  def main():