Writo commited on
Commit
7aacd97
·
1 Parent(s): 0d11e29

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -37,7 +37,7 @@ def main():
37
  docsearch = FAISS.from_texts(text_chunks, embeddings)
38
  llm = OpenAI()
39
 
40
- chain = load_qa_chain(llm, chain_type="your_chain_type_here") # Replace "your_chain_type_here" with the actual chain type
41
 
42
  query = st.text_input("Type your question:")
43
 
 
37
  docsearch = FAISS.from_texts(text_chunks, embeddings)
38
  llm = OpenAI()
39
 
40
+ chain = load_qa_chain(llm, chain_type="stuff")
41
 
42
  query = st.text_input("Type your question:")
43