iamviveksrk commited on
Commit
ee4baf9
β€’
1 Parent(s): c8cc5e0

Update app.py

Browse files

question to query

Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -75,9 +75,9 @@ def ask_question(query):
75
  if query:
76
  with st.spinner("πŸ‘‘    Performing semantic search on abstracts..."):
77
  try:
78
- msg = 'Asked ' + question
79
  logging.info(msg)
80
- st.session_state.results = ask_question(question)
81
  except Exception as e:
82
  logging.exception(e)
83
 
 
75
  if query:
76
  with st.spinner("πŸ‘‘    Performing semantic search on abstracts..."):
77
  try:
78
+ msg = 'Asked ' + query
79
  logging.info(msg)
80
+ st.session_state.results = ask_question(query)
81
  except Exception as e:
82
  logging.exception(e)
83