Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -86,12 +86,12 @@ with gr.Blocks() as iface:
|
|
86 |
with gr.Column():
|
87 |
title_input = gr.Textbox(
|
88 |
lines=2,
|
89 |
-
placeholder='''Enter Paper Title Here... (Title will be processed with 'title.replace("
|
90 |
label="Paper Title"
|
91 |
)
|
92 |
abstract_input = gr.Textbox(
|
93 |
lines=5,
|
94 |
-
placeholder='''Enter Paper Abstract Here... (Abstract will be processed with 'abstract.replace("
|
95 |
label="Paper Abstract"
|
96 |
)
|
97 |
validation_status = gr.Textbox(label="Validation Status", interactive=False)
|
|
|
86 |
with gr.Column():
|
87 |
title_input = gr.Textbox(
|
88 |
lines=2,
|
89 |
+
placeholder='''Enter Paper Title Here... (Title will be processed with 'title.replace("\\n", " ").strip()')''',
|
90 |
label="Paper Title"
|
91 |
)
|
92 |
abstract_input = gr.Textbox(
|
93 |
lines=5,
|
94 |
+
placeholder='''Enter Paper Abstract Here... (Abstract will be processed with 'abstract.replace("\\n", " ").strip()')''',
|
95 |
label="Paper Abstract"
|
96 |
)
|
97 |
validation_status = gr.Textbox(label="Validation Status", interactive=False)
|