Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -12,11 +12,10 @@ theme = gr.themes.Base(
|
|
12 |
button_large_text_weight='400',
|
13 |
input_background_fill='#ffffff',
|
14 |
input_border_width='*block_border_width',
|
15 |
-
#input_border_color='gray',
|
16 |
)
|
17 |
|
18 |
with gr.Blocks(theme=theme) as demo:
|
19 |
-
img = gr.Image()
|
20 |
textbox = gr.Textbox(show_label=False)
|
21 |
button = gr.Button("generate")
|
22 |
button.click(fn=generate, inputs=textbox, outputs=img)
|
|
|
12 |
button_large_text_weight='400',
|
13 |
input_background_fill='#ffffff',
|
14 |
input_border_width='*block_border_width',
|
|
|
15 |
)
|
16 |
|
17 |
with gr.Blocks(theme=theme) as demo:
|
18 |
+
img = gr.Image(show_label=False)
|
19 |
textbox = gr.Textbox(show_label=False)
|
20 |
button = gr.Button("generate")
|
21 |
button.click(fn=generate, inputs=textbox, outputs=img)
|