Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -156,7 +156,7 @@ with gr.Blocks(css='style.css') as demo:
|
|
156 |
).style(
|
157 |
container=False,min_width=1200
|
158 |
)
|
159 |
-
see_prompts = gr.Button("✨
|
160 |
|
161 |
|
162 |
with gr.Row(variant="compact"):
|
@@ -174,6 +174,18 @@ with gr.Blocks(css='style.css') as demo:
|
|
174 |
with gr.Row():
|
175 |
#Now that the first box generates a picture with noise=0 having the default at 0 makes no sense as it'd generate the same image 6 times.
|
176 |
noise_level = gr.Slider(minimum=0.2, maximum=3, step=0.1, label="Noise Level (0.1 or less was generating the same pic 6 times! 🤣)")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
177 |
with gr.Row():
|
178 |
with gr.Row():
|
179 |
output1=gr.Image(label="DreamAnything",show_label=False,min_width=640)
|
|
|
156 |
).style(
|
157 |
container=False,min_width=1200
|
158 |
)
|
159 |
+
see_prompts = gr.Button("✨Magic✨ ✨Prompt✨").style(full_width=False)
|
160 |
|
161 |
|
162 |
with gr.Row(variant="compact"):
|
|
|
174 |
with gr.Row():
|
175 |
#Now that the first box generates a picture with noise=0 having the default at 0 makes no sense as it'd generate the same image 6 times.
|
176 |
noise_level = gr.Slider(minimum=0.2, maximum=3, step=0.1, label="Noise Level (0.1 or less was generating the same pic 6 times! 🤣)")
|
177 |
+
gr.HTML(
|
178 |
+
"""
|
179 |
+
<div style="text-align: center; max-width: 1200px; margin: 0 auto;">
|
180 |
+
<div>
|
181 |
+
<body>
|
182 |
+
<div class="center"><p style="margin-bottom: 10px; color: #ffffff;">Please allow up to 1 minute for each image to generate, for a total of 6 minutes max.</p>
|
183 |
+
</div>
|
184 |
+
</body>
|
185 |
+
</div>
|
186 |
+
</div>
|
187 |
+
"""
|
188 |
+
)
|
189 |
with gr.Row():
|
190 |
with gr.Row():
|
191 |
output1=gr.Image(label="DreamAnything",show_label=False,min_width=640)
|