prithivMLmods commited on
Commit
f347e5d
·
verified ·
1 Parent(s): ba3884a

update app

Browse files
Files changed (1) hide show
  1. app.py +7 -6
app.py CHANGED
@@ -170,12 +170,13 @@ with gr.Blocks(css=css, theme=steel_blue_theme) as demo:
170
  with gr.Row(equal_height=True):
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
 
 
170
  with gr.Row(equal_height=True):
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
 
181
  run_button = gr.Button("Run", variant="primary")
182