Spaces:
Sleeping
Sleeping
Commit
·
cf8d7e8
1
Parent(s):
b5793e9
Add placeholder text to ArXiv IDs Textbox
Browse files
app.py
CHANGED
@@ -122,7 +122,9 @@ with gr.Blocks() as demo:
|
|
122 |
gr.LoginButton(size="sm")
|
123 |
gr.LogoutButton(size="sm")
|
124 |
author_name = gr.Textbox(label="Author name", interactive=True)
|
125 |
-
positive_arxiv_ids = gr.Textbox(
|
|
|
|
|
126 |
btn = gr.Button("Get papers")
|
127 |
btn.click(get_papers, [author_name, positive_arxiv_ids], gr.Markdown())
|
128 |
|
|
|
122 |
gr.LoginButton(size="sm")
|
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())
|
130 |
|