DigiP-AI commited on
Commit
3346391
·
verified ·
1 Parent(s): f5559ac

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -180,7 +180,8 @@ with gr.Blocks(theme=theme, css=css, elem_id="app-container") as app:
180
 
181
  submit_btn.click(feifeichat, [input_img], [output_text])
182
 
183
- with gr.TabItem(("Text to Image"):
 
184
  with gr.Column(elem_id="app-container"):
185
  with gr.Row():
186
  with gr.Column(elem_id="prompt-container"):
@@ -253,7 +254,7 @@ with gr.Blocks(theme=theme, css=css, elem_id="app-container") as app:
253
 
254
  text_button.click(query, inputs=[custom_lora, text_prompt, negative_prompt, steps, cfg, method, seed, strength, width, height], outputs=[image_output, seed_output])
255
 
256
- with gr.TabItem(("Flip Image"):
257
  with gr.Row():
258
  image_input = gr.Image()
259
  image_output = gr.Image(format="png")
@@ -261,7 +262,7 @@ with gr.Blocks(theme=theme, css=css, elem_id="app-container") as app:
261
  image_button = gr.Button("Run", variant='primary')
262
  image_button.click(flip_image, inputs=image_input, outputs=image_output, concurrency_limit=2)
263
 
264
- with gr.TabItem(("Tips"):
265
  with gr.Row():
266
  gr.Markdown(
267
  """
 
180
 
181
  submit_btn.click(feifeichat, [input_img], [output_text])
182
 
183
+ with gr.TabItem(label="Text to Image", visible=True):
184
+
185
  with gr.Column(elem_id="app-container"):
186
  with gr.Row():
187
  with gr.Column(elem_id="prompt-container"):
 
254
 
255
  text_button.click(query, inputs=[custom_lora, text_prompt, negative_prompt, steps, cfg, method, seed, strength, width, height], outputs=[image_output, seed_output])
256
 
257
+ with gr.TabItem(label="Flip Image", visible=True):
258
  with gr.Row():
259
  image_input = gr.Image()
260
  image_output = gr.Image(format="png")
 
262
  image_button = gr.Button("Run", variant='primary')
263
  image_button.click(flip_image, inputs=image_input, outputs=image_output, concurrency_limit=2)
264
 
265
+ with gr.TabItem(label="Tips", visible=True):
266
  with gr.Row():
267
  gr.Markdown(
268
  """