nirmalaag commited on
Commit
6894522
·
verified ·
1 Parent(s): 562b47e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -70,9 +70,9 @@ def main():
70
  st.write(docs)
71
  #chain = load_qa_chain(llm=llm, chain_type="stuff")
72
  #response = chain.run(input_documents=docs, question=query)
73
- retriever=vector_store.as_retriever()
74
  chain = RetrievalQA.from_chain_type(llm=llm,chain_type="stuff",retriever=retriever)
75
- response = chain.run(docs)
76
  st.write(response)
77
 
78
 
 
70
  st.write(docs)
71
  #chain = load_qa_chain(llm=llm, chain_type="stuff")
72
  #response = chain.run(input_documents=docs, question=query)
73
+ retriever=docs.as_retriever()
74
  chain = RetrievalQA.from_chain_type(llm=llm,chain_type="stuff",retriever=retriever)
75
+ response = chain.run(query)
76
  st.write(response)
77
 
78