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

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -58,7 +58,8 @@ 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), chain_type="stuff")
 
62
 
63
  def display_chat_history(chat_history):
64
  for chat in 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, model="gpt-3.5-turbo"), chain_type="stuff")
62
+
63
 
64
  def display_chat_history(chat_history):
65
  for chat in chat_history: