nidhibodar11 commited on
Commit
4bf1fe8
·
verified ·
1 Parent(s): e096a7f

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -54,8 +54,8 @@ def llm_model():
54
 
55
  start =time.process_time()
56
  response = retrieval_chain.invoke({"input":prompt})
57
- print("Response time :", time.process_time()-start)
58
  st.write(response['answer'])
 
59
 
60
  with st.expander("Did not like the response? Check out more here"):
61
  for i, doc in enumerate(response['context']):
 
54
 
55
  start =time.process_time()
56
  response = retrieval_chain.invoke({"input":prompt})
 
57
  st.write(response['answer'])
58
+ st.write("Response time: ", time.process_time() - start)
59
 
60
  with st.expander("Did not like the response? Check out more here"):
61
  for i, doc in enumerate(response['context']):