mirror of
https://github.com/easydiffusion/easydiffusion.git
synced 2024-11-22 16:23:28 +01:00
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()
|