DigiP-AI commited on
Commit
f643ca3
Β·
verified Β·
1 Parent(s): 5f89994

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -12
app.py CHANGED
@@ -154,7 +154,6 @@ footer{display:none !important}
154
  with gr.Blocks(theme=theme, css=css) as app:
155
  # Add a title to the app
156
  gr.HTML("<center><h1>🎨 Stable Diffusion 3.5 large turbo πŸ‡¬πŸ‡§</h1></center>")
157
-
158
  with gr.Tabs() as tabs:
159
  with gr.TabItem("Text to Image"):
160
  # Container for all the UI elements
@@ -200,18 +199,19 @@ with gr.Blocks(theme=theme, css=css) as app:
200
 
201
  # Bind the button to the query function with the added width and height inputs
202
  text_button.click(query, inputs=[text_prompt, negative_prompt, steps, cfg, method, seed, strength, width, height], outputs=image_output)
 
 
 
 
 
 
 
 
 
 
 
203
 
204
- with gr.Tab(label="Image To Prompt"):
205
- with gr.Row():
206
- with gr.Column():
207
- input_img = gr.Image(label="Input Picture",height=320,type="filepath")
208
- submit_btn = gr.Button(value="Submit", variant='primary')
209
- with gr.Column():
210
- output_text = gr.Textbox(label="Flux Prompt", show_copy_button = True)
211
- clr_button =gr.Button("Clear",variant="primary", elem_id="clear_button")
212
- clr_button.click(lambda: gr.Textbox(value=""), None, output_text)
213
-
214
- submit_btn.click(feifeichat, [input_img], [output_text])
215
 
216
 
217
  app.queue(default_concurrency_limit=200, max_size=200) # <-- Sets up a queue with default parameters
 
154
  with gr.Blocks(theme=theme, css=css) as app:
155
  # Add a title to the app
156
  gr.HTML("<center><h1>🎨 Stable Diffusion 3.5 large turbo πŸ‡¬πŸ‡§</h1></center>")
 
157
  with gr.Tabs() as tabs:
158
  with gr.TabItem("Text to Image"):
159
  # Container for all the UI elements
 
199
 
200
  # Bind the button to the query function with the added width and height inputs
201
  text_button.click(query, inputs=[text_prompt, negative_prompt, steps, cfg, method, seed, strength, width, height], outputs=image_output)
202
+
203
+ with gr.Tabs() as tabs:
204
+ with gr.TabItem(label="Image To Prompt"):
205
+ with gr.Row():
206
+ with gr.Column():
207
+ input_img = gr.Image(label="Input Picture",height=320,type="filepath")
208
+ submit_btn = gr.Button(value="Submit", variant='primary')
209
+ with gr.Column():
210
+ output_text = gr.Textbox(label="Flux Prompt", show_copy_button = True)
211
+ clr_button =gr.Button("Clear",variant="primary", elem_id="clear_button")
212
+ clr_button.click(lambda: gr.Textbox(value=""), None, output_text)
213
 
214
+ submit_btn.click(feifeichat, [input_img], [output_text])
 
 
 
 
 
 
 
 
 
 
215
 
216
 
217
  app.queue(default_concurrency_limit=200, max_size=200) # <-- Sets up a queue with default parameters