File size: 740 Bytes
aeb8db7 e74d0b0 aeb8db7 3383fd8 aeb8db7 ae25053 3383fd8 aeb8db7 3383fd8 aeb8db7 e74d0b0 3383fd8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
#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!

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

"""
#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() |