Spaces:
Sleeping
Sleeping
Christof Bless
commited on
correct params
Browse files
app.py
CHANGED
@@ -33,6 +33,6 @@ with gr.Blocks() as demo:
|
|
33 |
output = gr.Textbox(label="Extracted Citations", lines=20)
|
34 |
|
35 |
submit_btn = gr.Button("Submit")
|
36 |
-
submit_btn.click(fn=extract_citations, inputs=[doi_input
|
37 |
|
38 |
demo.launch()
|
|
|
33 |
output = gr.Textbox(label="Extracted Citations", lines=20)
|
34 |
|
35 |
submit_btn = gr.Button("Submit")
|
36 |
+
submit_btn.click(fn=extract_citations, inputs=[doi_input], outputs=output)
|
37 |
|
38 |
demo.launch()
|