Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
|
@@ -275,8 +275,8 @@ image_examples = [
|
|
| 275 |
["Convert this page to docling", "examples/3.jpg"],
|
| 276 |
]
|
| 277 |
|
| 278 |
-
with gr.Blocks(
|
| 279 |
-
gr.Markdown("# **Multimodal
|
| 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)
|