1littlecoder commited on
Commit
df76205
1 Parent(s): c4148d2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
app.py CHANGED
@@ -136,5 +136,12 @@ with gr.Blocks(theme=theme) as demo:
136
  roast_button = gr.Button("Roast Image")
137
  roast_button.click(process_roast, inputs=image_input, outputs=[output_text, audio_output, video_output])
138
 
 
 
 
 
 
 
 
139
  # Launch the app
140
  demo.launch(debug=True)
 
136
  roast_button = gr.Button("Roast Image")
137
  roast_button.click(process_roast, inputs=image_input, outputs=[output_text, audio_output, video_output])
138
 
139
+ # Examples
140
+ demo.examples = [
141
+ ["elon_musk.png"],
142
+ ["jensen_huang.png"]
143
+ ]
144
+
145
+
146
  # Launch the app
147
  demo.launch(debug=True)