nickmuchi commited on
Commit
5cd3910
·
1 Parent(s): 02fc0e3

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -120,7 +120,8 @@ def load_chain():
120
  qa = ChatVectorDBChain.from_llm(llm,
121
  cfa_db,
122
  qa_prompt=load_prompt(),
123
- return_source_documents=True)
 
124
 
125
  return qa
126
 
 
120
  qa = ChatVectorDBChain.from_llm(llm,
121
  cfa_db,
122
  qa_prompt=load_prompt(),
123
+ return_source_documents=True,
124
+ k=3)
125
 
126
  return qa
127