jdmorzan commited on
Commit
0b4641d
·
verified ·
1 Parent(s): 74dad6d

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -35,7 +35,7 @@ def create_memory():
35
  def pdf_qa(query, memory):
36
  function = ConversationalRetrievalChain.from_llm(
37
  llm=llm,
38
- retriever=vectordb.as_retriever(search_kwargs={'k': 24}),
39
  combine_docs_chain_kwargs={'prompt': qa_prompt},
40
  memory=memory
41
  )
 
35
  def pdf_qa(query, memory):
36
  function = ConversationalRetrievalChain.from_llm(
37
  llm=llm,
38
+ retriever=vectordb.as_retriever(search_kwargs={'k': 28}),
39
  combine_docs_chain_kwargs={'prompt': qa_prompt},
40
  memory=memory
41
  )