Spaces:
Runtime error
Runtime error
Commit
·
a12399b
1
Parent(s):
9525232
Update app.py
Browse files
app.py
CHANGED
|
@@ -100,14 +100,19 @@ with block:
|
|
| 100 |
with gr.Row():
|
| 101 |
sd_options = gr.Dropdown(['SD1.4', 'SD1.5', 'SD2.1'], value='SD1.4', label="SD options")
|
| 102 |
|
| 103 |
-
|
| 104 |
-
|
| 105 |
-
|
| 106 |
-
|
| 107 |
-
|
| 108 |
-
|
| 109 |
-
|
| 110 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 111 |
|
| 112 |
|
| 113 |
with gr.Group():
|
|
|
|
| 100 |
with gr.Row():
|
| 101 |
sd_options = gr.Dropdown(['SD1.4', 'SD1.5', 'SD2.1'], value='SD1.4', label="SD options")
|
| 102 |
|
| 103 |
+
with gr.Column():
|
| 104 |
+
text = gr.Textbox(
|
| 105 |
+
label="Enter your prompt",
|
| 106 |
+
show_label=False,
|
| 107 |
+
max_lines=1,
|
| 108 |
+
placeholder="Enter your prompt",
|
| 109 |
+
container=False,
|
| 110 |
+
)
|
| 111 |
+
seed = gr.Slider(label='seed',
|
| 112 |
+
minimum=0,
|
| 113 |
+
maximum=1000,
|
| 114 |
+
step=1,
|
| 115 |
+
value=42)
|
| 116 |
|
| 117 |
|
| 118 |
with gr.Group():
|