Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
|
@@ -212,7 +212,12 @@ def create_gradio_interface():
|
|
| 212 |
with gr.Tabs() as tabs:
|
| 213 |
with gr.Tab("π Extracted Content"):
|
| 214 |
raw_output_stream = gr.Textbox(label="Raw Model Output Stream", interactive=False, lines=12, show_copy_button=True)
|
| 215 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 216 |
with gr.Tab("π README.md"):
|
| 217 |
with gr.Accordion("(Formatted Result)", open=True):
|
| 218 |
markdown_output = gr.Markdown(label="Formatted Markdown")
|
|
|
|
| 212 |
with gr.Tabs() as tabs:
|
| 213 |
with gr.Tab("π Extracted Content"):
|
| 214 |
raw_output_stream = gr.Textbox(label="Raw Model Output Stream", interactive=False, lines=12, show_copy_button=True)
|
| 215 |
+
with gr.Row():
|
| 216 |
+
examples = gr.Examples(
|
| 217 |
+
examples=["examples/example_img2.png", "examples/example_img1.png"],
|
| 218 |
+
inputs=image_input,
|
| 219 |
+
label="Examples"
|
| 220 |
+
)
|
| 221 |
with gr.Tab("π README.md"):
|
| 222 |
with gr.Accordion("(Formatted Result)", open=True):
|
| 223 |
markdown_output = gr.Markdown(label="Formatted Markdown")
|