webdef / sd_ui.py
TenPoisk
Update sd_ui.py
3383fd8
raw
history blame
740 Bytes
#import library
import gradio as gr
#ready library install
print('βœ…οΈ All libraries installed!')
#title of app
title = "WebDef.UI"
#description of app
description = \
"""
__This is WebDef.UI__ Generate fantastic images with the latest AI models for FREE!
![](https://raw.githubusercontent.com/ehristoforu/imghost/main/Picsart_23-08-04_21-51-22-975.png)
"""
#article of app
article = \
"""
<h1 style='text-align: center'>
__Examples__
</h1>
![](https://raw.githubusercontent.com/ehristoforu/imghost/main/e410407a-ad56-42cc-bd6d-5005e3496de9.jpg)
"""
#ready rum space
print('πŸŽ‰ The app is ready to go!')
gr.Interface.load("models/runwayml/stable-diffusion-v1-5", title=title, description=description, article=article).launch()