FLUX-Fast / app.py
Rooc's picture
Update app.py
6f9b576 verified
raw
history blame
1.3 kB
import gradio as gr
# 首先加载模型但不要立即launch
model = gr.load("models/black-forest-labs/FLUX.1-schnell")
# 创建新的界面
with gr.Blocks() as demo:
# 渲染原始模型界面
model.render()
# 添加分隔线
gr.Markdown("---")
# 添加底部文案和链接
with gr.Row():
gr.Markdown("""
**Best AI Tools**
[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)
**Games**
[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)
""")
# 最后启动应用
demo.launch()