Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -37,7 +37,7 @@ with gr.Blocks() as demo:
|
|
37 |
with gr.Column():
|
38 |
output2 = gr.Label(label=models[2])
|
39 |
with gr.Column():
|
40 |
-
input = gr.Textbox(label="Input", value=examples[0], lines=
|
41 |
btn = gr.Button("Check")
|
42 |
gr.Examples(examples, fn=fn, inputs=[input], outputs=[output0, output1, output2], cache_examples=True, batch=True)
|
43 |
btn.click(fn, inputs=[input], outputs=[output0, output1, output2])
|
|
|
37 |
with gr.Column():
|
38 |
output2 = gr.Label(label=models[2])
|
39 |
with gr.Column():
|
40 |
+
input = gr.Textbox(label="Input", value=examples[0], lines=8, max_lines=8)
|
41 |
btn = gr.Button("Check")
|
42 |
gr.Examples(examples, fn=fn, inputs=[input], outputs=[output0, output1, output2], cache_examples=True, batch=True)
|
43 |
btn.click(fn, inputs=[input], outputs=[output0, output1, output2])
|