Create app.py
Browse files
app.py
ADDED
@@ -0,0 +1,15 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
|
2 |
+
|
3 |
+
import gradio as gr
|
4 |
+
|
5 |
+
model = "Benevolent/meinahentai_v4"
|
6 |
+
|
7 |
+
demo = gr.load(
|
8 |
+
model,
|
9 |
+
title="meinahentai_v4",
|
10 |
+
src="models",
|
11 |
+
theme="Blane187/fuchsia"
|
12 |
+
#examples=examples
|
13 |
+
)
|
14 |
+
|
15 |
+
demo.launch()
|