mirror of
https://github.com/easydiffusion/easydiffusion.git
synced 2024-11-22 08:13:22 +01:00
14 lines
254 B
Python
14 lines
254 B
Python
from easydiffusion import model_manager, app, server
|
|
from easydiffusion.server import server_api # required for uvicorn
|
|
|
|
app.init()
|
|
|
|
server.init()
|
|
|
|
# Init the app
|
|
model_manager.init()
|
|
app.init_render_threads()
|
|
|
|
# start the browser ui
|
|
app.open_browser()
|