vincentmin commited on
Commit
e210228
·
1 Parent(s): acc1121

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -5
app.py CHANGED
@@ -82,11 +82,12 @@ with gr.Blocks() as demo:
82
  lookback_days = gr.Number(2, label="Articles from this many days in the past will be searched through.", minimum=1, maximum=7)
83
  category = gr.Textbox(value="hep-th", label="Which category to search through. See https://arxiv.org/category_taxonomy for possible values.")
84
  input_text = gr.Textbox(placeholder="Describe your field of research in a few words")
85
- gr.Examples(
86
- [["Supersymmetric Conformal Field Theory"], ["Black hole information paradox"]],
87
- input_text,
88
- )
89
- btn = gr.Button(value="Submit")
 
90
 
91
  with gr.Column():
92
  output = gr.Markdown("Press 'submit' to see your results.")
 
82
  lookback_days = gr.Number(2, label="Articles from this many days in the past will be searched through.", minimum=1, maximum=7)
83
  category = gr.Textbox(value="hep-th", label="Which category to search through. See https://arxiv.org/category_taxonomy for possible values.")
84
  input_text = gr.Textbox(placeholder="Describe your field of research in a few words")
85
+ with gr.Box():
86
+ gr.Examples(
87
+ [["Supersymmetric Conformal Field Theory"], ["Black hole information paradox"]],
88
+ input_text,
89
+ )
90
+ btn = gr.Button(value="Submit")
91
 
92
  with gr.Column():
93
  output = gr.Markdown("Press 'submit' to see your results.")