prithivMLmods commited on
Commit
3ce0917
·
verified ·
1 Parent(s): d2e8362

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -117,7 +117,10 @@ with gr.Blocks(theme="bethecloud/storj_theme", css=css) as demo:
117
  # Right column: Model choice, output, and examples
118
  with gr.Column():
119
  model_choice = gr.Radio(["Base", "Large"], label="Model Choice", value="Base")
120
- output = gr.Textbox(label="Generated Caption", lines=4, show_copy_button=True)
 
 
 
121
  gr.Examples(examples=examples, inputs=[image_input, model_choice])
122
 
123
  # Connect the button to the function
 
117
  # Right column: Model choice, output, and examples
118
  with gr.Column():
119
  model_choice = gr.Radio(["Base", "Large"], label="Model Choice", value="Base")
120
+
121
+ with gr.Row():
122
+ output = gr.Textbox(label="Generated Caption", lines=4, show_copy_button=True)
123
+
124
  gr.Examples(examples=examples, inputs=[image_input, model_choice])
125
 
126
  # Connect the button to the function