pendrag commited on
Commit
a7a7442
·
1 Parent(s): 5fc2cfd

added a new example

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -317,7 +317,10 @@ with gr.Blocks() as demo:
317
  with gr.Column():
318
  query = gr.Textbox(label="Search Query")
319
  search_btn = gr.Button("Search")
320
- examples = gr.Examples([["Which one is closest star?"], ["In which particles does the Higgs Boson decay to?"]], query)
 
 
 
321
  with gr.Row():
322
  gr.HTML("<a href='https://sinai.ujaen.es'><img src='https://sinai.ujaen.es/sites/default/files/SINAI%20-%20logo%20tx%20azul%20%5Baf%5D.png' width='200'></img></a>")
323
  gr.HTML("<a href='https://www.ujaen.es'><img src='https://diariodigital.ujaen.es/sites/default/files/general/logo-uja.svg' width='180'></img></a>")
 
317
  with gr.Column():
318
  query = gr.Textbox(label="Search Query")
319
  search_btn = gr.Button("Search")
320
+ examples = gr.Examples([
321
+ ["Which one is closest star?"],
322
+ ["In which particles does the Higgs Boson decay to?"],
323
+ ["What is the 'swampland criteria' in inflation?"]], query)
324
  with gr.Row():
325
  gr.HTML("<a href='https://sinai.ujaen.es'><img src='https://sinai.ujaen.es/sites/default/files/SINAI%20-%20logo%20tx%20azul%20%5Baf%5D.png' width='200'></img></a>")
326
  gr.HTML("<a href='https://www.ujaen.es'><img src='https://diariodigital.ujaen.es/sites/default/files/general/logo-uja.svg' width='180'></img></a>")