prithivMLmods commited on
Commit
0a5ae73
Β·
verified Β·
1 Parent(s): b92f531

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -1
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")