Richard Fan commited on
Commit
a037be6
·
1 Parent(s): 0e5f7ea

update app

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -170,14 +170,14 @@ with gr.Blocks() as demo:
170
  )
171
  physics_subject = gr.Dropdown(physics_topics, value=[], multiselect=False, label="Physics category", visible=False, info="")
172
  subsubject = gr.Dropdown(
173
- [], value=[], multiselect=True, label="Subtopic", info="", visible=False)
174
  subject.change(fn=change_physics, inputs=[subject], outputs=physics_subject)
175
  subject.change(fn=change_subsubject, inputs=[subject, physics_subject], outputs=subsubject)
176
  physics_subject.change(fn=change_subsubject, inputs=[subject, physics_subject], outputs=subsubject)
177
 
178
  interest = gr.Textbox(label="A natural language description of what you are interested in. Press shift-enter or click the button below to update.", lines=7)
179
  sample_btn = gr.Button("Generate Digest")
180
- sample_output = gr.Textbox(label="Results for your configuration. For runtime purposes, this is only done on a small subset of the papers in the topic you have selected.")
181
  test_btn.click(fn=test, inputs=[email, subject, physics_subject, subsubject, interest, sendgrid_token], outputs=output)
182
  token.change(fn=register_openai_token, inputs=[token])
183
  sample_btn.click(fn=sample, inputs=[email, subject, physics_subject, subsubject, interest], outputs=sample_output)
 
170
  )
171
  physics_subject = gr.Dropdown(physics_topics, value=[], multiselect=False, label="Physics category", visible=False, info="")
172
  subsubject = gr.Dropdown(
173
+ [], value=[], multiselect=True, label="Subtopic", info="Optional. Leaving it empty will use all subtopics.", visible=False)
174
  subject.change(fn=change_physics, inputs=[subject], outputs=physics_subject)
175
  subject.change(fn=change_subsubject, inputs=[subject, physics_subject], outputs=subsubject)
176
  physics_subject.change(fn=change_subsubject, inputs=[subject, physics_subject], outputs=subsubject)
177
 
178
  interest = gr.Textbox(label="A natural language description of what you are interested in. Press shift-enter or click the button below to update.", lines=7)
179
  sample_btn = gr.Button("Generate Digest")
180
+ sample_output = gr.Textbox(label="Results for your configuration. For runtime purposes, this is only done on a small subset of today's papers in the topic you have selected.")
181
  test_btn.click(fn=test, inputs=[email, subject, physics_subject, subsubject, interest, sendgrid_token], outputs=output)
182
  token.change(fn=register_openai_token, inputs=[token])
183
  sample_btn.click(fn=sample, inputs=[email, subject, physics_subject, subsubject, interest], outputs=sample_output)