Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -84,14 +84,15 @@ with gr.Blocks(css='style.css') as demo:
|
|
84 |
|
85 |
|
86 |
with gr.Row(variant="compact"):
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
|
|
95 |
noise_level = gr.Slider(minimum=0.0, maximum=3, step=0.1, label="Noise Level")
|
96 |
|
97 |
with gr.Row():
|
|
|
84 |
|
85 |
|
86 |
with gr.Row(variant="compact"):
|
87 |
+
with gr.Column():
|
88 |
+
prompt = gr.Textbox(
|
89 |
+
label="Enter your prompt",
|
90 |
+
show_label=False,
|
91 |
+
max_lines=2,
|
92 |
+
placeholder="Full Prompt",
|
93 |
+
).style(
|
94 |
+
container=False,
|
95 |
+
)
|
96 |
noise_level = gr.Slider(minimum=0.0, maximum=3, step=0.1, label="Noise Level")
|
97 |
|
98 |
with gr.Row():
|