DigiP-AI commited on
Commit
e79e402
·
verified ·
1 Parent(s): 245d69e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -16
app.py CHANGED
@@ -150,16 +150,6 @@ footer{display:none !important}
150
  }
151
  """
152
 
153
-
154
-
155
- # Project by Nymbo
156
- # Edited by DigiP-AI
157
-
158
-
159
-
160
- # Function to clear input and output
161
-
162
-
163
  # Build the Gradio UI with Blocks
164
  with gr.Blocks(theme=theme, css=css) as app:
165
  # Add a title to the app
@@ -198,8 +188,6 @@ with gr.Blocks(theme=theme, css=css) as app:
198
  with gr.Row():
199
  image_output = gr.Image(type="pil", label="Image Output", format="png", show_share_button=False, elem_id="gallery")
200
 
201
-
202
-
203
  gr.Examples(
204
  examples = examples,
205
  inputs = [text_prompt],
@@ -212,10 +200,7 @@ with gr.Blocks(theme=theme, css=css) as app:
212
  # Bind the button to the query function with the added width and height inputs
213
  text_button.click(query, inputs=[text_prompt, negative_prompt, steps, cfg, method, seed, strength, width, height], outputs=image_output)
214
 
215
-
216
- with gr.Blocks(theme=theme, elem_id="app-container") as app:
217
- gr.Markdown("Image To Flux Prompt")
218
- with gr.Tab(label="Image To Prompt"):
219
  with gr.Row():
220
  with gr.Column():
221
  input_img = gr.Image(label="Input Picture",height=320,type="filepath")
 
150
  }
151
  """
152
 
 
 
 
 
 
 
 
 
 
 
153
  # Build the Gradio UI with Blocks
154
  with gr.Blocks(theme=theme, css=css) as app:
155
  # Add a title to the app
 
188
  with gr.Row():
189
  image_output = gr.Image(type="pil", label="Image Output", format="png", show_share_button=False, elem_id="gallery")
190
 
 
 
191
  gr.Examples(
192
  examples = examples,
193
  inputs = [text_prompt],
 
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.Tab(label="Image To Prompt"):
 
 
 
204
  with gr.Row():
205
  with gr.Column():
206
  input_img = gr.Image(label="Input Picture",height=320,type="filepath")