DigiP-AI commited on
Commit
94f761e
·
verified ·
1 Parent(s): bad1691

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -0
app.py CHANGED
@@ -203,6 +203,10 @@ with gr.Blocks(theme=theme, css=css, elem_id="app-container") as app:
203
  image_button = gr.Button("Run", variant='primary')
204
  image_button.click(flip_image, inputs=image_input, outputs=image_output)
205
 
 
 
 
 
206
  if __name__ == "__main__":
207
  app.launch(show_api=False, share=False)
208
 
 
203
  image_button = gr.Button("Run", variant='primary')
204
  image_button.click(flip_image, inputs=image_input, outputs=image_output)
205
 
206
+ with gr.Tab("Flip Image"):
207
+ with gr.Row():
208
+ tips = gr.Textbox(label="Useful Information", placeholder="Please note, some of the LoRAS do not work all of the tim, I'm not sure why, please keep trying", lines=2)
209
+
210
  if __name__ == "__main__":
211
  app.launch(show_api=False, share=False)
212