-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update repositories & selfhosted runner fixes (#25)
CI: * Some selfhosted runner fixes Misc: * Update repositories
- Loading branch information
Showing
10 changed files
with
24 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule ComfyUI
updated
22 files
+1 −1 | comfy/clip_model.py | |
+13 −4 | comfy/controlnet.py | |
+8 −0 | comfy/latent_formats.py | |
+161 −0 | comfy/ldm/cascade/common.py | |
+258 −0 | comfy/ldm/cascade/stage_a.py | |
+257 −0 | comfy/ldm/cascade/stage_b.py | |
+271 −0 | comfy/ldm/cascade/stage_c.py | |
+8 −1 | comfy/ldm/modules/attention.py | |
+62 −3 | comfy/model_base.py | |
+35 −7 | comfy/model_detection.py | |
+62 −11 | comfy/model_management.py | |
+49 −0 | comfy/model_sampling.py | |
+48 −1 | comfy/ops.py | |
+40 −18 | comfy/sd.py | |
+2 −2 | comfy/sd1_clip.py | |
+22 −0 | comfy/sdxl_clip.py | |
+56 −1 | comfy/supported_models.py | |
+4 −2 | comfy/supported_models_base.py | |
+2 −0 | comfy/utils.py | |
+74 −0 | comfy_extras/nodes_stable_cascade.py | |
+49 −0 | custom_nodes/websocket_image_save.py.disabled | |
+11 −4 | nodes.py |
Submodule axolotl
updated
from 8430db to 5a5d47
Submodule llama.cpp
updated
69 files
Submodule text-generation-webui
updated
32 files
+2 −2 | .github/workflows/stale.yml | |
+7 −7 | README.md | |
+4 −0 | css/main.css | |
+22 −13 | download-model.py | |
+1 −1 | instruction-templates/Mistral.yaml | |
+36 −32 | modules/chat.py | |
+12 −9 | modules/exllamav2.py | |
+12 −8 | modules/exllamav2_hf.py | |
+63 −0 | modules/llama_cpp_python_hijack.py | |
+1 −1 | modules/llamacpp_hf.py | |
+1 −1 | modules/llamacpp_model.py | |
+2 −0 | modules/loaders.py | |
+11 −20 | modules/models.py | |
+47 −18 | modules/models_settings.py | |
+44 −9 | modules/presets.py | |
+1 −0 | modules/sampler_hijack.py | |
+19 −5 | modules/shared.py | |
+2 −2 | modules/text_generation.py | |
+1 −0 | modules/ui.py | |
+1 −1 | modules/ui_chat.py | |
+64 −11 | modules/ui_model_menu.py | |
+11 −2 | modules/utils.py | |
+21 −21 | requirements.txt | |
+12 −12 | requirements_amd.txt | |
+10 −10 | requirements_amd_noavx2.txt | |
+11 −11 | requirements_apple_intel.txt | |
+13 −13 | requirements_apple_silicon.txt | |
+8 −9 | requirements_cpu_only.txt | |
+8 −9 | requirements_cpu_only_noavx2.txt | |
+21 −21 | requirements_noavx2.txt | |
+4 −5 | requirements_nowheels.txt | |
+1 −1 | server.py |
Submodule vllm
updated
43 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters