File size: 628 Bytes
aeb8db7 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
#import library
import gradio as gr
#title of app
title = "SD.UI V1.1"
#description of app
description = \
"""
__This is WebDef.UI__ Generate fantastic images with the latest AI models for FREE!

"""
#article of app
article = \ """
<p style='text-align: center'>
__Examples__
</p>

"""
gr.Interface.load("models/stabilityai/stable-diffusion-xl-base-1.0", title=title, description=description, article=article).launch() |