Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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=
|
74 |
chain = RetrievalQA.from_chain_type(llm=llm,chain_type="stuff",retriever=retriever)
|
75 |
-
response = chain.run(
|
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 |
|