Update app.py
Browse files
app.py
CHANGED
@@ -1,10 +1,11 @@
|
|
1 |
import gradio as gr
|
2 |
|
3 |
-
|
|
|
4 |
|
5 |
# 创建新的界面
|
6 |
with gr.Blocks() as demo:
|
7 |
-
#
|
8 |
model.render()
|
9 |
|
10 |
# 添加分隔线
|
@@ -13,9 +14,11 @@ with gr.Blocks() as demo:
|
|
13 |
# 添加底部文案和链接
|
14 |
with gr.Row():
|
15 |
gr.Markdown("""
|
16 |
-
|
17 |
-
[Nude AI](https://nudeai.beauty) • [Uncensored AI](https://uncensoredai.cc) • [AI Hentai Generator](https://aihentaigenerator.fun) • [Stable Diffusion Hentai](https://stable-diffusion-hentai.aihentaigenerator.fun) • [Bing Image Creator](https://bingimagecreator.online) • [NSFW AI Art](https://nsfwaiart.art) • [NSFW AI Chatbot](https://nsfw-ai-chatbot.online) • [NSFW AI World](https://nsfwai.world) • [AI Tools Directory](https://aitoolsdirectory.online) • [Viggle AI](https://viggleai.live)
|
18 |
-
|
19 |
-
[Cookie Clicker Unblocked](https://cookie-clicker-unblocked.pro) • [Freaky Font](https://freakyfont.org) • [Chat Gratuito](https://chatgratuito.online) • [Incredibox Sprunki](https://incrediboxsprunki.pro) • [Moto X3M Unblocked](https://motox3munblocked.pro) • [Parkour Civilization](https://parkourcivilization.pro)
|
|
|
20 |
|
21 |
-
|
|
|
|
1 |
import gradio as gr
|
2 |
|
3 |
+
# 首先加载模型但不要立即launch
|
4 |
+
model = gr.load("models/black-forest-labs/FLUX.1-schnell")
|
5 |
|
6 |
# 创建新的界面
|
7 |
with gr.Blocks() as demo:
|
8 |
+
# 渲染原始模型界面
|
9 |
model.render()
|
10 |
|
11 |
# 添加分隔线
|
|
|
14 |
# 添加底部文案和链接
|
15 |
with gr.Row():
|
16 |
gr.Markdown("""
|
17 |
+
**Best AI Tools**
|
18 |
+
[Nude AI](https://nudeai.beauty) • [Uncensored AI](https://uncensoredai.cc) • [AI Hentai Generator](https://aihentaigenerator.fun) • [Stable Diffusion Hentai](https://stable-diffusion-hentai.aihentaigenerator.fun) • [Bing Image Creator](https://bingimagecreator.online) • [NSFW AI Art](https://nsfwaiart.art) • [NSFW AI Chatbot](https://nsfw-ai-chatbot.online) • [NSFW AI World](https://nsfwai.world) • [AI Tools Directory](https://aitoolsdirectory.online) • [Viggle AI](https://viggleai.live)
|
19 |
+
**Games**
|
20 |
+
[Cookie Clicker Unblocked](https://cookie-clicker-unblocked.pro) • [Freaky Font](https://freakyfont.org) • [Chat Gratuito](https://chatgratuito.online) • [Incredibox Sprunki](https://incrediboxsprunki.pro) • [Moto X3M Unblocked](https://motox3munblocked.pro) • [Parkour Civilization](https://parkourcivilization.pro)
|
21 |
+
""")
|
22 |
|
23 |
+
# 最后启动应用
|
24 |
+
demo.launch()
|