prithivMLmods commited on
Commit
333fda2
·
verified ·
1 Parent(s): 417c8f5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -297,7 +297,7 @@ css = """
297
  """
298
 
299
  # Create the Gradio Interface
300
- with gr.Blocks(css=css, theme=steel_blue_theme) as demo:
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)