InvokeAI/invokeai/app
psychedelicious a1773197e9 feat(nodes): remove image_origin from most places
- remove `image_origin` from most places where we interact with images
- consolidate image file storage into a single `images/` dir

Images have an `image_origin` attribute but it is not actually used when retrieving images, nor will it ever be. It is still used when creating images and helps to differentiate between internally generated images and uploads.

It was included in eg API routes and image service methods as a holdover from the previous app implementation where images were not managed in a database. Now that we have images in a db, we can do away with this and simplify basically everything that touches images.

The one potentially controversial change is to no longer separate internal and external images on disk. If we retain this separation, we have to keep `image_origin` around in a number of spots and it getting image paths on disk painful.

So, I am have gotten rid of this organisation. Images are now all stored in `images`, regardless of their origin. As we improve the image management features, this change will hopefully become transparent.
2023-06-14 23:08:27 +10:00
..
api feat(nodes): remove image_origin from most places 2023-06-14 23:08:27 +10:00
cli use InvokeAISettings for app-wide configuration 2023-05-03 22:30:30 -04:00
invocations feat(nodes): remove image_origin from most places 2023-06-14 23:08:27 +10:00
models feat(nodes): remove image_origin from most places 2023-06-14 23:08:27 +10:00
services feat(nodes): remove image_origin from most places 2023-06-14 23:08:27 +10:00
util feat(nodes): refactor image types 2023-05-28 20:19:56 -04:00
api_app.py allow logger to be reconfigured after startup 2023-06-08 09:23:11 -04:00
cli_app.py Merge branch 'main' into lstein/fix-logger-reconfiguration 2023-06-08 13:41:24 -07:00