Anne31415 commited on
Commit
c239258
·
1 Parent(s): f8dc8d1

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -67,7 +67,8 @@ def load_pdf(file_path):
67
  return VectorStore
68
 
69
  def load_chatbot():
70
- return load_qa_chain(llm=OpenAI(), chain_type="stuff")
 
71
 
72
  def display_chat_history(chat_history):
73
  for chat in chat_history:
 
67
  return VectorStore
68
 
69
  def load_chatbot():
70
+ return load_qa_chain(llm=OpenAI(temperature=0.2, max_tokens=50), chain_type="stuff")
71
+
72
 
73
  def display_chat_history(chat_history):
74
  for chat in chat_history: