From f829059e3d6768ec9b805edd00ea14d95fd55239 Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Mon, 31 Aug 2026 09:38:28 +0200 Subject: [PATCH 1/5] Rename branches from 'update/' to 'bump/' Signed-off-by: Ettore Di Giacinto --- .github/workflows/bump_deps.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/bump_deps.yaml b/.github/workflows/bump_deps.yaml index 069b094a04d4..d8672593308a 100644 --- a/.github/workflows/bump_deps.yaml +++ b/.github/workflows/bump_deps.yaml @@ -166,7 +166,7 @@ jobs: push-to-fork: ci-forks/LocalAI commit-message: ':arrow_up: Update ${{ matrix.repository }}' title: 'chore: :arrow_up: Update ${{ matrix.repository }} to `${{ steps.bump.outputs.commit }}`' - branch: "update/${{ matrix.variable }}" + branch: "bump/${{ matrix.variable }}" body: ${{ steps.bump.outputs.message }} signoff: true @@ -203,7 +203,7 @@ jobs: push-to-fork: ci-forks/LocalAI commit-message: ':arrow_up: Update vllm-project/vllm cu130 wheel' title: 'chore: :arrow_up: Update vllm-project/vllm cu130 wheel to `${{ steps.bump.outputs.commit }}`' - branch: "update/VLLM_VERSION" + branch: "bump/VLLM_VERSION" body: ${{ steps.bump.outputs.message }} signoff: true @@ -241,6 +241,6 @@ jobs: push-to-fork: ci-forks/LocalAI commit-message: ':arrow_up: Update vllm-project/vllm-metal (darwin)' title: 'chore: :arrow_up: Update vllm-metal (darwin) to `${{ steps.bump.outputs.commit }}`' - branch: "update/VLLM_METAL_VERSION" + branch: "bump/VLLM_METAL_VERSION" body: ${{ steps.bump.outputs.message }} signoff: true From 1ab3db4bb777d8b1cf7fc50198773abd5360eb7d Mon Sep 17 00:00:00 2001 From: localai-org-maint-bot Date: Mon, 31 Aug 2026 09:39:08 +0200 Subject: [PATCH 2/5] chore: :arrow_up: Update leejet/stable-diffusion.cpp to `6b3edaaf32cc19e5bb2d819c788bd557eddc8eba` (#11793) :arrow_up: Update leejet/stable-diffusion.cpp Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: mudler <2420543+mudler@users.noreply.github.com> --- backend/go/stablediffusion-ggml/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/go/stablediffusion-ggml/Makefile b/backend/go/stablediffusion-ggml/Makefile index fd82adbb0965..1f8e7040271f 100644 --- a/backend/go/stablediffusion-ggml/Makefile +++ b/backend/go/stablediffusion-ggml/Makefile @@ -8,7 +8,7 @@ JOBS?=$(shell nproc --ignore=1) # stablediffusion.cpp (ggml) STABLEDIFFUSION_GGML_REPO?=https://github.com/leejet/stable-diffusion.cpp -STABLEDIFFUSION_GGML_VERSION?=be0e34480dada95f8ce9a021bbb95c5de85d67c7 +STABLEDIFFUSION_GGML_VERSION?=6b3edaaf32cc19e5bb2d819c788bd557eddc8eba CMAKE_ARGS+=-DGGML_MAX_NAME=128 From b8316f2a2aa9bace0c1c9db1547a534b2ec95725 Mon Sep 17 00:00:00 2001 From: lei_lei <96427312+leilei3167@users.noreply.github.com> Date: Mon, 31 Aug 2026 16:17:11 +0800 Subject: [PATCH 3/5] fix(gallery): use published F16 mmproj for qwythos-9b (#11792) Install 404s because the gallery still points at mmproj-...-f16.gguf. HF only ships ...-F16.gguf now, with a different sha256. Signed-off-by: lei_lei <96427312+leilei3167@users.noreply.github.com> --- core/gallery/variants_lint_test.go | 23 +++++++++++++++++++++++ gallery/index.yaml | 8 ++++---- 2 files changed, 27 insertions(+), 4 deletions(-) diff --git a/core/gallery/variants_lint_test.go b/core/gallery/variants_lint_test.go index c0cbad804768..370cec8cc7f3 100644 --- a/core/gallery/variants_lint_test.go +++ b/core/gallery/variants_lint_test.go @@ -540,6 +540,29 @@ var _ = Describe("gallery/index.yaml Higgs Audio entry", func() { }) }) +var _ = Describe("gallery/index.yaml qwythos-9b-claude-mythos-5-1m mmproj", func() { + It("points at the published F16 mmproj artifact", func() { + entries, err := loadGalleryIndex() + Expect(err).ToNot(HaveOccurred()) + + models := make([]*gallery.GalleryModel, 0, len(entries)) + for i := range entries { + models = append(models, &entries[i]) + } + entry := gallery.FindGalleryElement(models, "qwythos-9b-claude-mythos-5-1m") + Expect(entry).ToNot(BeNil()) + Expect(entry.Overrides).To(HaveKeyWithValue( + "mmproj", + "llama-cpp/mmproj/Qwythos-9B-Claude-Mythos-5-1M-GGUF/mmproj-Qwythos-9B-Claude-Mythos-5-1M-F16.gguf", + )) + Expect(entry.AdditionalFiles).To(ContainElement(gallery.File{ + Filename: "llama-cpp/mmproj/Qwythos-9B-Claude-Mythos-5-1M-GGUF/mmproj-Qwythos-9B-Claude-Mythos-5-1M-F16.gguf", + SHA256: "f977efc337a2ac2ba183eea0c73e25b75fc240d56c05ed4d9b56ab451f64c82c", + URI: "https://huggingface.co/empero-ai/Qwythos-9B-Claude-Mythos-5-1M-GGUF/resolve/main/mmproj-Qwythos-9B-Claude-Mythos-5-1M-F16.gguf", + })) + }) +}) + // The lint rules above check the catalog as text. This drives the real // resolution path for the entry a user actually clicked and failed to install, // so the fix is proven at the layer that broke and not only at the layer that diff --git a/gallery/index.yaml b/gallery/index.yaml index f09d3224163b..c3125aab7aef 100644 --- a/gallery/index.yaml +++ b/gallery/index.yaml @@ -7133,7 +7133,7 @@ disable: true known_usecases: - chat - mmproj: llama-cpp/mmproj/Qwythos-9B-Claude-Mythos-5-1M-GGUF/mmproj-Qwythos-9B-Claude-Mythos-5-1M-f16.gguf + mmproj: llama-cpp/mmproj/Qwythos-9B-Claude-Mythos-5-1M-GGUF/mmproj-Qwythos-9B-Claude-Mythos-5-1M-F16.gguf options: - use_jinja:true - spec_type:draft-mtp @@ -7147,9 +7147,9 @@ - filename: llama-cpp/models/Qwythos-9B-Claude-Mythos-5-1M-GGUF/Qwythos-9B-Claude-Mythos-5-1M-MTP-Q4_K_M.gguf uri: https://huggingface.co/empero-ai/Qwythos-9B-Claude-Mythos-5-1M-GGUF/resolve/main/Qwythos-9B-Claude-Mythos-5-1M-MTP-Q4_K_M.gguf sha256: 318caed45110f5e3c60bff1142e0d1e658e046e670830d9be643df33940f4f98 - - filename: llama-cpp/mmproj/Qwythos-9B-Claude-Mythos-5-1M-GGUF/mmproj-Qwythos-9B-Claude-Mythos-5-1M-f16.gguf - sha256: f70dc3509053962b0d0d3ee8a7eacebf5d60aa560cad78254ae8698516ae029f - uri: https://huggingface.co/empero-ai/Qwythos-9B-Claude-Mythos-5-1M-GGUF/resolve/main/mmproj-Qwythos-9B-Claude-Mythos-5-1M-f16.gguf + - filename: llama-cpp/mmproj/Qwythos-9B-Claude-Mythos-5-1M-GGUF/mmproj-Qwythos-9B-Claude-Mythos-5-1M-F16.gguf + sha256: f977efc337a2ac2ba183eea0c73e25b75fc240d56c05ed4d9b56ab451f64c82c + uri: https://huggingface.co/empero-ai/Qwythos-9B-Claude-Mythos-5-1M-GGUF/resolve/main/mmproj-Qwythos-9B-Claude-Mythos-5-1M-F16.gguf - name: "glm-5.2" url: "github:mudler/LocalAI/gallery/virtual.yaml@master" urls: From bdf600ea2adde8b56d458c4ff8b73dfa316c2ff3 Mon Sep 17 00:00:00 2001 From: localai-org-maint-bot Date: Mon, 31 Aug 2026 13:11:05 +0200 Subject: [PATCH 4/5] chore: :arrow_up: Update ggml-org/whisper.cpp to `eacbd8234c6654cdbf2c377f72b2106875479bdc` (#11796) :arrow_up: Update ggml-org/whisper.cpp Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: mudler <2420543+mudler@users.noreply.github.com> --- backend/go/whisper/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/go/whisper/Makefile b/backend/go/whisper/Makefile index 8b0f02d644ac..c1844ff6d230 100644 --- a/backend/go/whisper/Makefile +++ b/backend/go/whisper/Makefile @@ -8,7 +8,7 @@ JOBS?=$(shell nproc --ignore=1) # whisper.cpp version WHISPER_REPO?=https://github.com/ggml-org/whisper.cpp -WHISPER_CPP_VERSION?=978113305b2ead22249b881deafa131dc8884911 +WHISPER_CPP_VERSION?=eacbd8234c6654cdbf2c377f72b2106875479bdc SO_TARGET?=libgowhisper.so CMAKE_ARGS+=-DBUILD_SHARED_LIBS=OFF From 69a5b54c0afba5509bd497431c76b808200c1820 Mon Sep 17 00:00:00 2001 From: localai-org-maint-bot Date: Mon, 31 Aug 2026 13:11:15 +0200 Subject: [PATCH 5/5] chore: :arrow_up: Update CrispStrobe/CrispASR to `18b3e3f8456748a6380dc4c13817df244b695d39` (#11799) :arrow_up: Update CrispStrobe/CrispASR Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: mudler <2420543+mudler@users.noreply.github.com> --- backend/go/crispasr/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/go/crispasr/Makefile b/backend/go/crispasr/Makefile index b87b395a7daf..0772d44318d3 100644 --- a/backend/go/crispasr/Makefile +++ b/backend/go/crispasr/Makefile @@ -8,7 +8,7 @@ JOBS?=$(shell nproc --ignore=1) # CrispASR version (release tag) CRISPASR_REPO?=https://github.com/CrispStrobe/CrispASR -CRISPASR_VERSION?=ae4474dd8306384a0e697183d863dfc52e69a2fb +CRISPASR_VERSION?=18b3e3f8456748a6380dc4c13817df244b695d39 SO_TARGET?=libgocrispasr.so CMAKE_ARGS+=-DBUILD_SHARED_LIBS=OFF