Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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
|
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):
|