Anne31415 commited on
Commit
c678561
·
1 Parent(s): 01953a3

Update app.py

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