Spaces:
Runtime error
Runtime error
Update app.py
Browse files
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(
|
|
|
|
|
|
|
|
|
|
|
|
|
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()
|