Blane187 commited on
Commit
50e351f
1 Parent(s): fee2440

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +11 -1
app.py CHANGED
@@ -2,6 +2,16 @@ import gradio as gr
2
  import os
3
 
4
  model = "Blane187/miyako-saitou-s1-ponyxl-lora-nochekaiser"
 
 
 
5
 
6
- demo = gr.load(model, src="models", theme="Blane187/fuchsia")
 
 
 
 
 
 
 
7
  demo.launch()
 
2
  import os
3
 
4
  model = "Blane187/miyako-saitou-s1-ponyxl-lora-nochekaiser"
5
+ examples = [
6
+ ["miyako saitou, long hair, brown hair, brown eyes,"]
7
+ ]
8
 
9
+
10
+ demo = gr.load(
11
+ model,
12
+ src="models",
13
+ theme="Blane187/fuchsia",
14
+ examples=examples
15
+
16
+ )
17
  demo.launch()