Thumbnails for Embeddings (#1483)

* sqlalchemy

* sqlalchemy

* sqlalchemy bucket v1

* Bucket API

* Move easydb files to its own folders

* show images

* add croppr

* croppr ui

* profile, thumbnail croppr size limit

* fill list

* add upload

* Use modifiers card, resize thumbs

* Remove debugging code

* remove unused variable
This commit is contained in:
JeLuF
2023-08-17 08:03:05 +02:00
committed by GitHub
parent 285792f692
commit 7270b5fe0c
18 changed files with 1834 additions and 21 deletions

View File

@ -1,4 +1,4 @@
from easydiffusion import model_manager, app, server
from easydiffusion import model_manager, app, server, bucket_manager
from easydiffusion.server import server_api # required for uvicorn
app.init()
@ -8,6 +8,7 @@ server.init()
# Init the app
model_manager.init()
app.init_render_threads()
bucket_manager.init()
# start the browser ui
app.open_browser()