Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -104,7 +104,7 @@ footer {
|
|
104 |
visibility: hidden
|
105 |
}
|
106 |
'''
|
107 |
-
with gr.Blocks(css=css
|
108 |
gr.Markdown(DESCRIPTION)
|
109 |
gr.DuplicateButton(
|
110 |
value="Duplicate Space for private use",
|
@@ -121,8 +121,8 @@ with gr.Blocks(css=css, theme="pseudolab/huggingface-korea-theme") as demo:
|
|
121 |
placeholder="Enter your prompt",
|
122 |
container=False,
|
123 |
)
|
124 |
-
run_button = gr.Button("Run"
|
125 |
-
result = gr.Gallery(label="Result", columns=1, preview=True
|
126 |
with gr.Accordion("Advanced options", open=False):
|
127 |
use_negative_prompt = gr.Checkbox(label="Use negative prompt", value=True)
|
128 |
negative_prompt = gr.Text(
|
|
|
104 |
visibility: hidden
|
105 |
}
|
106 |
'''
|
107 |
+
with gr.Blocks(css=css) as demo:
|
108 |
gr.Markdown(DESCRIPTION)
|
109 |
gr.DuplicateButton(
|
110 |
value="Duplicate Space for private use",
|
|
|
121 |
placeholder="Enter your prompt",
|
122 |
container=False,
|
123 |
)
|
124 |
+
run_button = gr.Button("Run")
|
125 |
+
result = gr.Gallery(label="Result", columns=1, preview=True)
|
126 |
with gr.Accordion("Advanced options", open=False):
|
127 |
use_negative_prompt = gr.Checkbox(label="Use negative prompt", value=True)
|
128 |
negative_prompt = gr.Text(
|