DigiP-AI commited on
Commit
97c5fb1
·
verified ·
1 Parent(s): aaf45f0

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +16 -3
app.py CHANGED
@@ -167,7 +167,20 @@ css = """
167
  """
168
  with gr.Blocks(theme=theme, css=css, elem_id="app-container") as app:
169
  gr.HTML("<center><h6>🎨 FLUX.1-Dev with LoRA 🇬🇧</h6></center>")
170
- with gr.Tab("Text to Image"):
 
 
 
 
 
 
 
 
 
 
 
 
 
171
  with gr.Column(elem_id="app-container"):
172
  with gr.Row():
173
  with gr.Column(elem_id="prompt-container"):
@@ -240,7 +253,7 @@ with gr.Blocks(theme=theme, css=css, elem_id="app-container") as app:
240
 
241
  text_button.click(query, inputs=[custom_lora, text_prompt, negative_prompt, steps, cfg, method, seed, strength, width, height], outputs=[image_output, seed_output])
242
 
243
- with gr.Tab("Flip Image"):
244
  with gr.Row():
245
  image_input = gr.Image()
246
  image_output = gr.Image(format="png")
@@ -248,7 +261,7 @@ with gr.Blocks(theme=theme, css=css, elem_id="app-container") as app:
248
  image_button = gr.Button("Run", variant='primary')
249
  image_button.click(flip_image, inputs=image_input, outputs=image_output, concurrency_limit=2)
250
 
251
- with gr.Tab("Tips"):
252
  with gr.Row():
253
  gr.Markdown(
254
  """
 
167
  """
168
  with gr.Blocks(theme=theme, css=css, elem_id="app-container") as app:
169
  gr.HTML("<center><h6>🎨 FLUX.1-Dev with LoRA 🇬🇧</h6></center>")
170
+ with gr.Tabs() as tabs:
171
+ with gr.TabItem(label="Image To Prompt", visible=True):
172
+ with gr.Row():
173
+ with gr.Column():
174
+ input_img = gr.Image(label="Input Picture 🖼️",height=320,type="filepath")
175
+ submit_btn = gr.Button(value="Submit", variant='primary')
176
+ with gr.Column():
177
+ output_text = gr.Textbox(label="Flux Prompt ✍️", show_copy_button = True)
178
+ clr_button =gr.Button("Clear 🗑️ ",variant="primary", elem_id="clear_button")
179
+ clr_button.click(lambda: (None, None), None, [input_img, output_text], queue=False, show_api=False)
180
+
181
+ submit_btn.click(feifeichat, [input_img], [output_text])
182
+
183
+ with gr.TabItem(("Text to Image", visible=True):
184
  with gr.Column(elem_id="app-container"):
185
  with gr.Row():
186
  with gr.Column(elem_id="prompt-container"):
 
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
  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
  """