Spaces:
Running
on
Zero
Running
on
Zero
prithivMLmods
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -124,18 +124,17 @@ footer {
|
|
124 |
'''
|
125 |
|
126 |
with gr.Blocks(css=css, theme="bethecloud/storj_theme") as demo:
|
127 |
-
gr.Markdown(DESCRIPTIONz)
|
128 |
-
with gr.
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
result = gr.Gallery(label="Result", columns=1, preview=True, show_label=False)
|
139 |
|
140 |
with gr.Accordion("Advanced options", open=False, visible=True):
|
141 |
seed = gr.Slider(
|
|
|
124 |
'''
|
125 |
|
126 |
with gr.Blocks(css=css, theme="bethecloud/storj_theme") as demo:
|
127 |
+
gr.Markdown(DESCRIPTIONz)
|
128 |
+
with gr.Row():
|
129 |
+
prompt = gr.Text(
|
130 |
+
label="Prompt",
|
131 |
+
show_label=False,
|
132 |
+
max_lines=1,
|
133 |
+
placeholder="Enter your prompt",
|
134 |
+
container=False,
|
135 |
+
)
|
136 |
+
run_button = gr.Button("Run", scale=0)
|
137 |
+
result = gr.Gallery(label="Result", columns=1, show_label=False)
|
|
|
138 |
|
139 |
with gr.Accordion("Advanced options", open=False, visible=True):
|
140 |
seed = gr.Slider(
|