Blane187 commited on
Commit
5f68b2f
1 Parent(s): 69227b5

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +10 -1
app.py CHANGED
@@ -2,6 +2,15 @@ import gradio as gr
2
 
3
  model = "Blane187/ai-hoshino-s1-ponyxl-lora-nochekaise"
4
 
 
 
 
5
 
6
- demo = gr.load(model, src="models", theme="Blane187/fuchsia")
 
 
 
 
 
 
7
  demo.launch()
 
2
 
3
  model = "Blane187/ai-hoshino-s1-ponyxl-lora-nochekaise"
4
 
5
+ examples = [
6
+ ["ai hoshino, long hair, bangs, purple eyes, purple hair, symbol-shaped pupils,"]
7
+ ]
8
 
9
+ demo = gr.load(
10
+ model,
11
+ title="Hoshino AI, Stable diffusion PonyXL Lora",
12
+ src="models",
13
+ theme="Blane187/fuchsia",
14
+ examples=examples,
15
+ )
16
  demo.launch()