5e4457445f
feat(ui): make toast/hotkey into logical components
2023-05-15 15:25:27 +10:00
0221ca8f49
fix(ui): use cloned canvas for retrieving dataURL/Blobs
2023-05-15 13:54:30 +10:00
c8f765cc06
improve debugging messages
2023-05-14 18:29:55 -04:00
cf36e4029e
fix(ui): fix syntax error in the logo component flexbox
2023-05-15 08:24:33 +10:00
b9e9087dbe
do not manage GPU for pipelines if sequential_offloading is True
2023-05-14 18:09:38 -04:00
63e465eb5c
tweaks to get_model()
behavior
...
1. If an external VAE is specified in config file, then
get_model(submodel=vae) will return the external VAE, not the one
burnt into the parent diffusers pipeline.
2. The mechanism in (1) is generalized such that you can now have
"unet:", "text_encoder:" and similar stanzas in the config file.
Valid formats of these subsections:
unet:
repo_id: foo/bar
unet:
path: /path/to/local/folder
unet:
repo_id: foo/bar
subfolder: unet
In the near future, these will also be used to attach external
parts to the pipeline, generalizing VAE behavior.
3. Accommodate callers (i.e. the WebUI) that are passing the
model key ("diffusers/stable-diffusion-1.5") to get_model()
instead of the tuple of model_name and model_type.
4. Fixed bug in VAE model attaching code.
5. Rebuilt web front end.
2023-05-14 16:50:59 -04:00
c8a98a9a22
Merge branch 'main' into lstein/bugfix/compel
2023-05-14 14:43:18 -04:00
c4681774a5
Merge branch 'main' into logging-facelift
2023-05-15 02:08:29 +12:00
050add58d2
fix getting conditionings
2023-05-14 12:20:54 +02:00
f5df150097
feat(ui): add callback to signal app is ready
...
needed for commercial
2023-05-14 18:42:15 +10:00
dac82adb5b
fix(ui): make logo component non-selectable
2023-05-14 18:41:11 +10:00
b72c9787a9
Revert "comment out customer_attention_context"
...
This reverts commit 8f8cd90787
.
Due to NameError: name 'options' is not defined
2023-05-14 00:37:55 -04:00
426f4eaf7e
adjusted regression tests to work with new SDModelTypes
2023-05-13 22:29:33 -04:00
2623941d91
Merge branch 'main' into lstein/bugfix/compel
2023-05-13 22:23:59 -04:00
baf5451fa0
Merge branch 'main' into lstein/new-model-manager
2023-05-13 22:01:34 -04:00
d3a7fea939
Revert "fix: Rework the layout of the parameters scrollbar"
...
This reverts commit 6f1fc397f7
.
2023-05-14 11:45:08 +10:00
5a7b687c84
fix(ui): add missing packages
2023-05-14 11:45:08 +10:00
0020457fc7
fix(ui): tweak settings scheduler styling
2023-05-14 11:45:08 +10:00
658b556544
feat(ui): IAICustomSelect v2, implement for scheduler & model
2023-05-14 11:45:08 +10:00
37da0fc075
feat(ui): IAICustomSelect v1
2023-05-14 11:45:08 +10:00
6d3e8507cc
fix(ui): fix "no image" fallbacks
2023-05-14 11:45:08 +10:00
0e9470503f
fix: Rework the layout of the parameters scrollbar
2023-05-14 11:45:08 +10:00
d2ebc6741b
feat: Add setting to hide / display schedulers
2023-05-14 11:45:08 +10:00
026d3260b4
Add Heun Karras Scheduler
2023-05-14 11:45:08 +10:00
1103ab2844
merge with main
2023-05-13 21:35:19 -04:00
11b2076b46
implement change to web_config suggested by ebr
2023-05-13 21:33:19 -04:00
b31a6ff605
fix reversed args in _model_key() call
2023-05-13 21:11:06 -04:00
1f602e6143
Fix - apply precision to text_encoder
2023-05-14 03:46:13 +03:00
039fa73269
Change SDModelType enum to string, fixes(model unload negative locks count, scheduler load error, saftensors convert, wrong logic in del_model, wrong parse metadata in web)
2023-05-14 03:06:26 +03:00
78533714e3
Merge branch 'main' into logging-facelift
2023-05-14 09:07:51 +12:00
691e1bf829
Make debug messages cyan/blue
2023-05-14 09:06:57 +12:00
2204e47596
allow submodels to be fetched independent of parent pipeline
2023-05-13 16:54:47 -04:00
d8b1f29066
proxy SDModelInfo so that it can be used directly as context
2023-05-13 16:29:18 -04:00
b23c9f1da5
get Tuple type hint syntax right
2023-05-13 14:59:21 -04:00
5e8e3cf464
correct typos in model_manager_service
2023-05-13 14:55:59 -04:00
72967bf118
convert add_model(), del_model(), list_models() etc to use bifurcated names
2023-05-13 14:44:44 -04:00
bc96727cbe
Rewrite latent nodes to new model manager
2023-05-13 16:08:03 +03:00
3b2a054f7a
Add model loader node; unet, clip, vae fields; change compel node to clip field
2023-05-13 04:37:20 +03:00
47a088d685
rehydrate selectedImage URL when results and uploads are fetched
2023-05-13 09:48:38 +10:00
63db3fc22f
reduce queue check interval to 0.5s
2023-05-12 17:54:26 -04:00
ad0bb3f61a
fix: queue error should not crash InvocationProcessor
...
1. if retrieving an item from the queue raises an exception, the
InvocationProcessor thread crashes, but the API continues running in
a non-functional state. This fixes the issue
2. when there are no items in the queue, sleep 1 second before checking
again.
3. Also ensures the thread isn't crashed if an exception is raised from
invoker, and emits the error event
Intentionally using base Exceptions because for now we don't know which
specific exception to expect.
Fixes (sort of)? #3222
2023-05-12 17:54:26 -04:00
131145eab1
A big refactor of model manager(according to IMHO)
2023-05-12 23:13:34 +03:00
4492044d29
Redo compel node to separate model loading
2023-05-12 23:09:33 +03:00
5431dd5f50
Fix event args
2023-05-12 23:08:03 +03:00
79fecba274
Fix model manager initialization in web ui
2023-05-12 23:05:08 +03:00
8f8cd90787
comment out customer_attention_context
2023-05-12 13:59:00 -04:00
d796ea7bec
feat: Logging Improvements
2023-05-13 02:13:49 +12:00
e5b7dd63e9
fix(nodes): temporarily disable librarygraphs
...
- Do not retrieve graph from DB until we resolve the issue of changing node schemas causing application to fail to start up due to invalid graphs
2023-05-12 22:33:49 +10:00
af060188bd
Merge branch 'main' into lstein/bugfix/compel
2023-05-12 08:22:18 -04:00
60a565d7de
feat(ui): use chakra menu for theme changer
2023-05-12 20:04:29 +10:00