Tesneem commited on
Commit
71bf3a4
·
verified ·
1 Parent(s): d377f91

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -443,7 +443,7 @@ def main():
443
  # response = rag_chain.invoke(full_query)
444
  # answers.append({"question": q, "answer": response})
445
  if q in st.session_state.generated_queries:
446
- response = st.session_state.generated_queries[q
447
  else:
448
  response = rag_chain.invoke(full_query)
449
  st.session_state.generated_queries[q] = response
 
443
  # response = rag_chain.invoke(full_query)
444
  # answers.append({"question": q, "answer": response})
445
  if q in st.session_state.generated_queries:
446
+ response = st.session_state.generated_queries[q]
447
  else:
448
  response = rag_chain.invoke(full_query)
449
  st.session_state.generated_queries[q] = response