myshirk commited on
Commit
1aec946
·
1 Parent(s): fdc154a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -9
app.py CHANGED
@@ -119,15 +119,16 @@ def main():
119
  query = st.text_input("Enter your query:")
120
 
121
  try:
122
- with st.spinner("Searching..."):
123
- results = show_model(query)
124
-
125
- #Output passages & scores
126
- for doc, score, title in results[:10]:
127
- st.write("Score: ", score)
128
- st.write("Title:", title)
129
- st.write("Abstract:", abstract)
130
- st.write("---")
 
131
 
132
  except EOFError:
133
  pass
 
119
  query = st.text_input("Enter your query:")
120
 
121
  try:
122
+ if query != "":
123
+ with st.spinner("Searching..."):
124
+ results = show_model(query)
125
+
126
+ #Output passages & scores
127
+ for doc, score, title in results[:10]:
128
+ st.write("Score: ", score)
129
+ st.write("Title:", title)
130
+ st.write("Abstract:", abstract)
131
+ st.write("---")
132
 
133
  except EOFError:
134
  pass