mirror of
https://github.com/easydiffusion/easydiffusion.git
synced 2025-08-14 02:05:21 +02:00
.github
NSIS
media
scripts
ui
easydiffusion
hotfix
media
plugins
index.html
main.py
modifiers.json
.gitignore
3rd-PARTY-LICENSES
CHANGES.md
CONTRIBUTING.md
CreativeML Open RAIL-M License
How to install and run.txt
LICENSE
README BEFORE YOU RUN THIS.txt
README.md
build.bat
build.sh
environment.yaml
11 lines
225 B
Python
11 lines
225 B
Python
from easydiffusion import model_manager, app, server
|
|
from easydiffusion.server import server_api # required for uvicorn
|
|
|
|
# Init the app
|
|
model_manager.init()
|
|
app.init()
|
|
server.init()
|
|
|
|
# start the browser ui
|
|
app.open_browser()
|