prithivMLmods commited on
Commit
46c11b4
·
verified ·
1 Parent(s): c49f1bd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -8
app.py CHANGED
@@ -171,14 +171,13 @@ with gr.Blocks(css=css, theme=steel_blue_theme) as demo:
171
  with gr.Column():
172
  input_image = gr.Image(label="Upload Image", type="pil")
173
 
174
- with gr.Row():
175
- prompt = gr.Text(
176
- label="Edit Prompt",
177
- show_label=True,
178
- placeholder="e.g., transform into anime",
179
- )
180
- with gr.Row():
181
- run_button = gr.Button("Run", variant="primary")
182
 
183
  with gr.Column():
184
  output_image = gr.Image(label="Output Image", interactive=False, format="png", height=290)
 
171
  with gr.Column():
172
  input_image = gr.Image(label="Upload Image", type="pil")
173
 
174
+ prompt = gr.Text(
175
+ label="Edit Prompt",
176
+ show_label=True,
177
+ placeholder="e.g., transform into anime",
178
+ )
179
+
180
+ run_button = gr.Button("Run", variant="primary")
 
181
 
182
  with gr.Column():
183
  output_image = gr.Image(label="Output Image", interactive=False, format="png", height=290)