Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
|
@@ -297,7 +297,7 @@ css = """
|
|
| 297 |
"""
|
| 298 |
|
| 299 |
# Create the Gradio Interface
|
| 300 |
-
with gr.Blocks(
|
| 301 |
gr.Markdown("# **DocScope R1**", elem_id="main-title")
|
| 302 |
with gr.Row():
|
| 303 |
with gr.Column(scale=2):
|
|
@@ -344,4 +344,4 @@ with gr.Blocks(css=css, theme=steel_blue_theme) as demo:
|
|
| 344 |
)
|
| 345 |
|
| 346 |
if __name__ == "__main__":
|
| 347 |
-
demo.queue(max_size=30).launch(mcp_server=True, ssr_mode=False, show_error=True)
|
|
|
|
| 297 |
"""
|
| 298 |
|
| 299 |
# Create the Gradio Interface
|
| 300 |
+
with gr.Blocks() as demo:
|
| 301 |
gr.Markdown("# **DocScope R1**", elem_id="main-title")
|
| 302 |
with gr.Row():
|
| 303 |
with gr.Column(scale=2):
|
|
|
|
| 344 |
)
|
| 345 |
|
| 346 |
if __name__ == "__main__":
|
| 347 |
+
demo.queue(max_size=30).launch(css=css, theme=steel_blue_theme, mcp_server=True, ssr_mode=False, show_error=True)
|