Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -53,11 +53,7 @@ examples = ["Futuristic utopian city in Coruscant. god beams. white buildings. s
|
|
53 |
"A small cabin on top of a snowy mountain in the style of Disney, artstation"]
|
54 |
|
55 |
|
56 |
-
with gr.Blocks(
|
57 |
-
*, body, #name, #ex, #article, .border-gray-200, .gr-input, .border-gray-100 { background: #0b0f19; color: white; border-color: #4c4c4c; }
|
58 |
-
.gr-samples-gallery .gr-sample-textbox, #greet_btn, #save_btn, .py-1, .gr-samples-gallery:hover .gr-sample-textbox:hover, .gr-text-input, #output, .wrap.svelte-1c38quw, .h-wrap { background: #1f2937; color: white; border-color: #4c4c4c;}
|
59 |
-
"""
|
60 |
-
) as demo:
|
61 |
output = gr.Gallery(label="Image Generation", elem_id="output").style(grid=3)
|
62 |
name = gr.Textbox(label="Prompt", placeholder="Describe the image you want to generate. Longer and more detailed prompts work better.", elem_id="name")
|
63 |
greet_btn = gr.Button("Generate Image", elem_id="greet_btn")
|
|
|
53 |
"A small cabin on top of a snowy mountain in the style of Disney, artstation"]
|
54 |
|
55 |
|
56 |
+
with gr.Blocks() as demo:
|
|
|
|
|
|
|
|
|
57 |
output = gr.Gallery(label="Image Generation", elem_id="output").style(grid=3)
|
58 |
name = gr.Textbox(label="Prompt", placeholder="Describe the image you want to generate. Longer and more detailed prompts work better.", elem_id="name")
|
59 |
greet_btn = gr.Button("Generate Image", elem_id="greet_btn")
|