Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -95,8 +95,8 @@ with gr.Blocks(theme='Yntec/HaleyCH_Theme_craiyon') as demo:
|
|
95 |
"""
|
96 |
)
|
97 |
with gr.Tab('🖍️ AI models drawing images from any prompt! 🖍️'):
|
98 |
-
txt_input = gr.Textbox(label='Your prompt:', lines=
|
99 |
-
gen_button = gr.Button('
|
100 |
with gr.Row():
|
101 |
seed = gr.Slider(label="Use a seed to replicate the same image later (maximum 666666666)", minimum=0, maximum=MAX_SEED, step=1, value=starting_seed, scale=3)
|
102 |
seed_rand = gr.Button("Randomize Seed 🎲", size="sm", variant="secondary", scale=1)
|
|
|
95 |
"""
|
96 |
)
|
97 |
with gr.Tab('🖍️ AI models drawing images from any prompt! 🖍️'):
|
98 |
+
txt_input = gr.Textbox(label='Your prompt:', lines=5, scale=3)
|
99 |
+
gen_button = gr.Button('Draw it! 🖍️', scale=1)
|
100 |
with gr.Row():
|
101 |
seed = gr.Slider(label="Use a seed to replicate the same image later (maximum 666666666)", minimum=0, maximum=MAX_SEED, step=1, value=starting_seed, scale=3)
|
102 |
seed_rand = gr.Button("Randomize Seed 🎲", size="sm", variant="secondary", scale=1)
|