davanstrien HF Staff commited on
Commit
0d8ea05
·
1 Parent(s): cf8d7e8

Add label to ArXiv IDs textbox

Browse files
Files changed (1) hide show
  1. app.py +3 -1
app.py CHANGED
@@ -123,7 +123,9 @@ with gr.Blocks() as demo:
123
  gr.LogoutButton(size="sm")
124
  author_name = gr.Textbox(label="Author name", interactive=True)
125
  positive_arxiv_ids = gr.Textbox(
126
- "e.g. 1910.01108", label="ArXiv IDs", interactive=True
 
 
127
  )
128
  btn = gr.Button("Get papers")
129
  btn.click(get_papers, [author_name, positive_arxiv_ids], gr.Markdown())
 
123
  gr.LogoutButton(size="sm")
124
  author_name = gr.Textbox(label="Author name", interactive=True)
125
  positive_arxiv_ids = gr.Textbox(
126
+ "e.g. 1910.01108",
127
+ label="ArXiv IDs for papers for which you are an author",
128
+ interactive=True,
129
  )
130
  btn = gr.Button("Get papers")
131
  btn.click(get_papers, [author_name, positive_arxiv_ids], gr.Markdown())