Spaces:
Running on Zero
Running on Zero
electblake commited on
Commit ·
77d3eb3
1
Parent(s): 2903d4c
Rename Gradio app heading to NuMarkApp
Browse files- app/gradio.py +4 -3
app/gradio.py
CHANGED
|
@@ -282,10 +282,11 @@ def extract(image, text, mode, template, enable_thinking):
|
|
| 282 |
return gr.skip(), gr.skip(), json.loads(result)
|
| 283 |
|
| 284 |
|
| 285 |
-
with gr.Blocks(title="
|
| 286 |
gr.Markdown(
|
| 287 |
-
"#
|
| 288 |
-
"Extract Markdown or structured JSON from an image and optional text
|
|
|
|
| 289 |
)
|
| 290 |
with gr.Row():
|
| 291 |
with gr.Column():
|
|
|
|
| 282 |
return gr.skip(), gr.skip(), json.loads(result)
|
| 283 |
|
| 284 |
|
| 285 |
+
with gr.Blocks(title="NuMarkApp") as demo:
|
| 286 |
gr.Markdown(
|
| 287 |
+
"# NuMarkApp\n"
|
| 288 |
+
"Extract Markdown or structured JSON from an image and optional text using "
|
| 289 |
+
"[numind/NuExtract3](https://huggingface.co/numind/NuExtract3)."
|
| 290 |
)
|
| 291 |
with gr.Row():
|
| 292 |
with gr.Column():
|