Anne31415 commited on
Commit
5751fd4
·
1 Parent(s): ebf2d4c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -58,7 +58,7 @@ def load_pdf(file_path):
58
  return VectorStore
59
 
60
  def load_chatbot(max_tokens=300):
61
- return load_qa_chain(llm=OpenAI(temperature=0.1, max_tokens=max_tokens, model="gpt-3.5-turbo"), chain_type="stuff")
62
 
63
 
64
  def display_chat_history(chat_history):
 
58
  return VectorStore
59
 
60
  def load_chatbot(max_tokens=300):
61
+ return load_qa_chain(llm=OpenAI(temperature=0.1, max_tokens=max_tokens), chain_type="stuff")
62
 
63
 
64
  def display_chat_history(chat_history):