Blane187 commited on
Commit
173c2d1
·
verified ·
1 Parent(s): 451b564

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -2
app.py CHANGED
@@ -2,12 +2,17 @@ import gradio as gr
2
 
3
  model = "Blane187/teto-kasane-ponyxl-lora-nochekaiser"
4
 
 
 
 
 
5
 
6
  demo = gr.load(
7
  model,
8
  title="Kasane Teto, PonyXL lora stable diffusion",
9
- description="see triger word here https://huggingface.co/Blane187/teto-kasane-ponyxl-lora-nochekaiser",
10
  src="models",
11
  theme="Blane187/fuchsia",
 
12
  )
13
- demo.launch()
 
 
2
 
3
  model = "Blane187/teto-kasane-ponyxl-lora-nochekaiser"
4
 
5
+ # Define examples
6
+ examples = [
7
+ ["teto kasane, ahoge, pink eyes, drill hair, pink hair"]
8
+ ]
9
 
10
  demo = gr.load(
11
  model,
12
  title="Kasane Teto, PonyXL lora stable diffusion",
 
13
  src="models",
14
  theme="Blane187/fuchsia",
15
+ examples=examples
16
  )
17
+
18
+ demo.launch()