Spaces:
Sleeping
Sleeping
Upload 3 files
Browse files
app.py
CHANGED
@@ -49,7 +49,7 @@ with gr.Blocks(theme="NoCrypt/miku@>=1.2.2", fill_width=True, css=css) as demo:
|
|
49 |
random_prompt = gr.Button(value="Extend Prompt π²", size="sm", scale=1)
|
50 |
clear_prompt = gr.Button(value="Clear Prompt ποΈ", size="sm", scale=1)
|
51 |
prompt = gr.Text(label="Prompt", lines=2, max_lines=8, placeholder="1girl, solo, ...", show_copy_button=True)
|
52 |
-
neg_prompt = gr.Text(label="Negative Prompt", lines=1, max_lines=8, placeholder=""
|
53 |
with gr.Accordion("Advanced options", open=False):
|
54 |
width = gr.Number(label="Width", info="If 0, the default value is used.", maximum=1216, step=32, value=0)
|
55 |
height = gr.Number(label="Height", info="If 0, the default value is used.", maximum=1216, step=32, value=0)
|
|
|
49 |
random_prompt = gr.Button(value="Extend Prompt π²", size="sm", scale=1)
|
50 |
clear_prompt = gr.Button(value="Clear Prompt ποΈ", size="sm", scale=1)
|
51 |
prompt = gr.Text(label="Prompt", lines=2, max_lines=8, placeholder="1girl, solo, ...", show_copy_button=True)
|
52 |
+
neg_prompt = gr.Text(label="Negative Prompt", lines=1, max_lines=8, placeholder="")
|
53 |
with gr.Accordion("Advanced options", open=False):
|
54 |
width = gr.Number(label="Width", info="If 0, the default value is used.", maximum=1216, step=32, value=0)
|
55 |
height = gr.Number(label="Height", info="If 0, the default value is used.", maximum=1216, step=32, value=0)
|
model.py
CHANGED
@@ -15,7 +15,8 @@ models = [
|
|
15 |
'votepurchase/counterfeitV30_v30',
|
16 |
'Meina/MeinaMix_V11',
|
17 |
'KBlueLeaf/Kohaku-XL-Epsilon-rev3',
|
18 |
-
'
|
|
|
19 |
'Eugeoter/artiwaifu-diffusion-1.0',
|
20 |
'Raelina/Rae-Diffusion-XL-V2',
|
21 |
'Raelina/Raemu-XL-V4',
|
|
|
15 |
'votepurchase/counterfeitV30_v30',
|
16 |
'Meina/MeinaMix_V11',
|
17 |
'KBlueLeaf/Kohaku-XL-Epsilon-rev3',
|
18 |
+
'KBlueLeaf/Kohaku-XL-Zeta',
|
19 |
+
'kayfahaarukku/UrangDiffusion-1.2',
|
20 |
'Eugeoter/artiwaifu-diffusion-1.0',
|
21 |
'Raelina/Rae-Diffusion-XL-V2',
|
22 |
'Raelina/Raemu-XL-V4',
|