jackkuo commited on
Commit
89d1918
·
verified ·
1 Parent(s): 9625ffd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -364,7 +364,7 @@ def logo(db_update_date, db_size_bio, db_size_med):
364
  <h3 style='color: black;'>LLM-based search and summary tool for bioRxiv & medRxiv</h3>
365
  </div>
366
  <p>How to use:
367
- <br><strong>1</strong>: Enter your search query (Optional modification "Top k of results to show")
368
  <br><strong>2</strong>: Press Enter in the query box or click the search button to search.
369
  <br><strong>3</strong>: Enter summary prompt in the below input box.
370
  <br><strong>4</strong>: Click "AI summary" to summarize the search results above.
@@ -396,7 +396,7 @@ use_hf = False
396
  query = st.text_input("Enter your search query:")
397
 
398
  num_to_show = st.number_input(
399
- "Number of results to show:",
400
  min_value=1,
401
  max_value=50,
402
  value=10,
 
364
  <h3 style='color: black;'>LLM-based search and summary tool for bioRxiv & medRxiv</h3>
365
  </div>
366
  <p>How to use:
367
+ <br><strong>1</strong>: Enter your search query (Optional modification "Top k results to display")
368
  <br><strong>2</strong>: Press Enter in the query box or click the search button to search.
369
  <br><strong>3</strong>: Enter summary prompt in the below input box.
370
  <br><strong>4</strong>: Click "AI summary" to summarize the search results above.
 
396
  query = st.text_input("Enter your search query:")
397
 
398
  num_to_show = st.number_input(
399
+ "Top k results to display:",
400
  min_value=1,
401
  max_value=50,
402
  value=10,