artificialguybr
commited on
Commit
•
d2091ae
1
Parent(s):
98be8ae
Update app.py
Browse files
app.py
CHANGED
@@ -40,10 +40,10 @@ with gr.Blocks() as app:
|
|
40 |
result = gr.Image(interactive=False, label="Generated Image")
|
41 |
|
42 |
with gr.Row():
|
43 |
-
with gr.Column():
|
44 |
title
|
45 |
gallery
|
46 |
-
with gr.Column():
|
47 |
prompt
|
48 |
gr.Button("Run").click(
|
49 |
fn=run_lora,
|
|
|
40 |
result = gr.Image(interactive=False, label="Generated Image")
|
41 |
|
42 |
with gr.Row():
|
43 |
+
with gr.Column(width=6): # Adjusting the width
|
44 |
title
|
45 |
gallery
|
46 |
+
with gr.Column(width=6): # Adjusting the width
|
47 |
prompt
|
48 |
gr.Button("Run").click(
|
49 |
fn=run_lora,
|