Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
|
@@ -302,7 +302,7 @@ with gr.Blocks(css=css, theme="bethecloud/storj_theme") as demo:
|
|
| 302 |
with gr.Column():
|
| 303 |
with gr.Column(elem_classes="canvas-output"):
|
| 304 |
gr.Markdown("## Output")
|
| 305 |
-
output = gr.Textbox(label="Raw Output Stream", interactive=False, lines=
|
| 306 |
|
| 307 |
with gr.Accordion("(Result.md)", open=False):
|
| 308 |
markdown_output = gr.Markdown(label="Formatted Result (Result.Md)")
|
|
@@ -334,4 +334,4 @@ with gr.Blocks(css=css, theme="bethecloud/storj_theme") as demo:
|
|
| 334 |
)
|
| 335 |
|
| 336 |
if __name__ == "__main__":
|
| 337 |
-
demo.queue(max_size=
|
|
|
|
| 302 |
with gr.Column():
|
| 303 |
with gr.Column(elem_classes="canvas-output"):
|
| 304 |
gr.Markdown("## Output")
|
| 305 |
+
output = gr.Textbox(label="Raw Output Stream", interactive=False, lines=5, show_copy_button=True)
|
| 306 |
|
| 307 |
with gr.Accordion("(Result.md)", open=False):
|
| 308 |
markdown_output = gr.Markdown(label="Formatted Result (Result.Md)")
|
|
|
|
| 334 |
)
|
| 335 |
|
| 336 |
if __name__ == "__main__":
|
| 337 |
+
demo.queue(max_size=50).launch(share=True, mcp_server=True, ssr_mode=False, show_error=True)
|