tonyassi commited on
Commit
8ec0097
1 Parent(s): 0684317

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -5
app.py CHANGED
@@ -8,13 +8,13 @@ with gr.Blocks() as demo:
8
  """)
9
  with gr.Row():
10
  with gr.Tab("Text-to-Image"):
11
- text_ip = gr.Image()
12
- text_textbox = gr.Textbox()
13
  text_button = gr.Button("Generate")
14
  with gr.Tab("Image-to-Image"):
15
- image_ip = gr.Image()
16
- image_image = gr.Image()
17
- image_textbox = gr.Textbox()
18
  image_button = gr.Button("Generate")
19
  with gr.Tab("Inpainting"):
20
  inpaint_button = gr.Button("Generate")
 
8
  """)
9
  with gr.Row():
10
  with gr.Tab("Text-to-Image"):
11
+ text_ip = gr.Image(label='IP-Adapter Image')
12
+ text_textbox = gr.Textbox(label='Prompt')
13
  text_button = gr.Button("Generate")
14
  with gr.Tab("Image-to-Image"):
15
+ image_ip = gr.Image(label='IP-Adapter Image')
16
+ image_image = gr.Image(label='Image')
17
+ image_textbox = gr.Textbox(label='Prompt')
18
  image_button = gr.Button("Generate")
19
  with gr.Tab("Inpainting"):
20
  inpaint_button = gr.Button("Generate")