prithivMLmods commited on
Commit
493b76c
·
verified ·
1 Parent(s): d66645a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -275,8 +275,8 @@ image_examples = [
275
  ["Convert this page to docling", "examples/3.jpg"],
276
  ]
277
 
278
- with gr.Blocks(css=css, theme=steel_blue_theme) as demo:
279
- gr.Markdown("# **Multimodal [OCR2](https://huggingface.co/collections/prithivMLmods/multimodal-implementations)**", elem_id="main-title")
280
  with gr.Row():
281
  with gr.Column(scale=2):
282
  image_query = gr.Textbox(label="Query Input", placeholder="Enter your query here...")
@@ -310,4 +310,4 @@ with gr.Blocks(css=css, theme=steel_blue_theme) as demo:
310
  )
311
 
312
  if __name__ == "__main__":
313
- demo.queue(max_size=50).launch(mcp_server=True, ssr_mode=False)
 
275
  ["Convert this page to docling", "examples/3.jpg"],
276
  ]
277
 
278
+ with gr.Blocks() as demo:
279
+ gr.Markdown("# **Multimodal OCR2**", elem_id="main-title")
280
  with gr.Row():
281
  with gr.Column(scale=2):
282
  image_query = gr.Textbox(label="Query Input", placeholder="Enter your query here...")
 
310
  )
311
 
312
  if __name__ == "__main__":
313
+ demo.queue(max_size=50).launch(css=css, theme=steel_blue_theme, mcp_server=True, ssr_mode=False)