v4.9.0 #11628
mudler
announced in
Announcements
v4.9.0
#11628
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
🎉 LocalAI 4.9.0 Release! 🚀
LocalAI 4.9.0 is out!
Thirteen days and 146 pull requests, spent on the parts of LocalAI you touch every day rather than on new engines. Authentication is now deny-by-default, chat gained end-to-end context compression, models and backends each have one canonical page instead of three, and
vllm-cppgrew a video modality serving MiniMax-H3 with a real audio track.Highlights:
/moderations,/models,/backendsand/mcp/chat/completionsfell outside the old protected-prefix list. Reported by Naor Yaacov./app/modelsnow owns Explore and Installed,/app/backendsowns Catalog and Installed, and the nested Host view is gone. Old/app/managebookmarks still work.vllm-cppopens a second engine handle for the H3 checkpoint set and renders video and audio jointly, so the MP4 arrives with a real AAC track. Ask for speech in the prompt and the model lip-syncs it.EMAIL_001) and are restored if the backend echoes them, across JSON and SSE tokens split over writes.Plus a single shared WebRTC UDP port for Realtime, Metal actually enabled in the macOS Stable Diffusion and Parakeet builds, backend crash diagnostics at the default log level, and Portuguese (Brazil) and Indonesian UI translations.
Models and backends each get one canonical page, with Explore and Installed as views rather than separate destinations.
📊 This release in numbers
Where the work landed:
core/gallery/backend/pkg/swagger/docs/📌 TL;DR
/versionand generated audio, image, video and 3D URLs now require credentials. Embedded deployments can add narrow prefixes throughApplicationConfig.PathWithoutAuth, and the legacy GET exemption flags remain as explicit compatibility overrides.compressionconfig. Older complete turns are compressed through a configured LocalAI model before inference, after PII filtering and Assistant/MCP prompt injection (including later MCP iterations). Leading system/developer prompts, the newest messages and complete tool-call/result units are preserved; tool schemas and completion headroom are accounted for with a conservative offline token bound. Metadata rides non-streaming responses and streaming usage trailers, with event, ratio and duration metrics exported. Disabled by default; cloud-proxy passthrough is rejected (translate mode works)./app/modelsowns Explore and Installed with URL-backed search, state and selection;/app/backendsowns Catalog and Installed while keeping variants, development builds and target-node scope. Explore offers capability-aware Open and Manage installation; destructive model controls stay in Installed. Operate Overview shows host capacity from its shared summary poller, and the nested Host destination is removed./app/manageredirects while preserving legacy query state. No API change.page--mediumwith a work column and the format reference beside it rather than behind a closed chevron. The source field is the hero and carries its own Import button, which removes thearia-hiddensubmit that existed only because the real action sat outside the<form>. Simple and Advanced modes are gone (about 80% the same surface); the real distinction, a source or YAML, is now two tabs. Also fixes two class bugs: a primary button with noclassNameat all falling through to browser chrome, andclass="btn btn-primary fas fa-save fa-upload"setting Font Awesome as the button's own font while two icons fought over one::before.vllm-cppover vllm.cpp ABI v12. A second engine handle loads the H3 checkpoint set (the DiT isparameters.model, the text encoder and two VAEs are named inoptions:), andGenerateVideorenders video and audio jointly into an MP4 with a real AAC track. The DiT partition is declared, not detected: community quantizations strip the release metadata and the FL2VA and Ref2VA DiTs are byte-structurally identical, socheckPartitionConditioningrefuses a reference-conditioned FL2VA request before the engine runs (it would otherwise render for hours and return a coloured lattice). ffmpeg comes from the host: libvllm composes the mux argv and spawns nothing. New gallery entryminimax-h3-fl2va-q4.llama-cppbackend on CUDA, ROCm, SYCL, Vulkan, Metal and L4T, using upstream's GGUF conversion. Implemented as a slot-basedSERVER_TASK_TYPE_TTStask, which is the concurrency-safe integration given thatserver_contextowns thellama_contextand runs the slot scheduler on its own thread. Carries the still-draft upstream server hunks aspatches/0002-add-server-task-type-tts.patch(delete on merge of ggml-org/llama.cpp#26603). Gallery:qwen3-tts-llamacppandqwen3-tts-llamacpp-q4. The existingqwen3-tts-cppbackend is untouched and remains a separate path.classifier: knnroutes by similarity-weighted voting over labelled example prompts, so no classifier model is needed and label knowledge lives in a corpus you seed and curate. Entries belowknn.similarity_thresholdcannot vote; when none clears it the router takes the fallback, andnearest_similarityis recorded on decisions and fallbacks alike. One JSONL file per router under<data path>/router-corpusis the source of truth, with the in-memory index rebuilt at classifier build time and entries re-embedded when the embedding model changed. Corpus input is API-only by design:POST /api/router/{name}/corpus,GET .../corpus/stats(label counts only, texts are never returned),DELETE .../corpus, admin-gated and exposed as MCP tools.pii.reverse_in_response. Masked request values become unique deterministic pseudonyms within the request (EMAIL_001,EMAIL_002) and are restored if the backend returns them, including SSE tokens split across response writes. Substitution maps are request-local and never persisted. Irreversible[REDACTED:...]remains the default.DownloadFilesWithConcurrencyruns up to N whole-file transfers through anerrgroupwithSetLimit. Single files are never split, so.partialresume and per-file SHA verification are untouched, and the two non-artifact callers keep sequential ordering and fail-fast behaviour through a limit-of-1 wrapper.completedBytesbecame anatomic.Int64(the race detector reported three races otherwise) and the caller's status callback stays serialized.--web-rtc-udp-port/LOCALAI_WEBRTC_UDP_PORTreuses one Pion ICE UDP mux across Realtime calls, with bind failures surfaced through signaling and container/firewall setup documented. The follow-up fix keepsLOCALAI_WEBRTC_ICE_INTERFACESeffective when a fixed port is set, which had been silently ignored: a wildcard mux made pion enumerate every interface itself, handing browsers unroutable172.xcandidates that dropped once ICE consent checks failed.WithLockCtxnow defends againststatement_timeoutas well aslock_timeout(both abort the same blockingpg_advisory_lock, only the latter was overridden).120a;121ato80;86;89;90a;100a;103a;120a;121a, arm64 from121ato87;90a;100a;110;121a, split by where the silicon exists. An unlisted card did not run slower, it died at the first request withno kernel image is available for execution on the device, long after install reported success. The CUDA 13 guard now covers both branches, and Triton-AOT stays on.en/, and Indonesian for the admin, media and navigation surfaces.🚀 New Features & Major Enhancements
🔐 Authentication now denies by default
The previous classifier gated selected API-style paths by prefix. Anything whose path was not on that list was public, which meant unprefixed aliases (
/mcp/chat/completions,/moderations,/models,/backends,/import-model) could bypass global authentication, and any newly registered route inherited the same weakness by default.The middleware is now method-aware and denies by default: a route is public only if its method and path appear in an explicit public registry. What stays public is the set required to bootstrap and to be discoverable: API instructions, Swagger GET routes, the LocalAI well-known document, and the health, login, OAuth, SPA, asset, branding and node registration-token flows. Whole-router coverage is asserted in tests, so a new route cannot become public by omission.
Migration impact. When database authentication or legacy API keys are configured,
/versionand generated audio, image, video and 3D URLs now require credentials. Embedded deployments can still add narrow prefixes viaApplicationConfig.PathWithoutAuth, and the legacy GET exemption flags remain available as explicit compatibility overrides.Thanks to Naor Yaacov for reporting this class of authentication bypass.
🗜️ End-to-end context compression
A long conversation eventually stops fitting. Compression is opt-in per model, and when enabled it compresses older complete turns through a configured LocalAI model before inference rather than truncating them away.
What it will not touch: leading system and developer safety prompts, the newest messages, and complete tool-call/result units, which are kept whole so a compressed history never leaves a call without its result. It runs after PII filtering and after Assistant/MCP prompt injection, including on later MCP iterations, so what gets compressed is the prompt that would actually have been sent. Tool schemas and completion headroom are accounted for with a conservative offline token bound.
Compression metadata is exposed in non-streaming responses and in streaming usage trailers, and compression events, ratios and durations are exported as metrics. Cloud-proxy passthrough configurations reject compression because LocalAI cannot safely rewrite an opaque provider payload; translate mode is supported. A late failure in an already-started stream is returned as an in-band SSE error followed by
[DONE].🖥️ One canonical page per resource
Models had a gallery and a separate Host management surface. Backends had a nested Host view for installed binaries. Between them it was not obvious where a resource lived, and the common lifecycle actions sat one level deeper than they needed to.
Each resource now has one page.
/app/modelsowns Explore and Installed,/app/backendsowns Catalog and Installed, both with URL-backed search, state and selection, and backends keep their variants, development builds and target-node scope. Explore presents capability-aware Open and Manage installation actions while destructive model controls stay in Installed. Operate Overview reads host capacity from its shared summary poller, and the nested Host destination is removed. Narrow list/detail views restore focus to the originating row when you come back from a detail view.Nothing in the API changed, and existing
/app/managebookmarks keep working through a replace redirect that preserves legacy model and backend query state.Catalog and Installed as views of one page, with target-node scope intact.
📥 The import form, rebuilt
The import page had taken the new palette but kept its old layout: a 760px column with the primary action detached from the form it submits. Two of its problems were outright bugs.
ImportModel.jsx:808carried noclassNameat all, so the page's single most important control fell through to the user-agent button, with system chrome, system font, the wrong radius and no design-system focus ring. Next to it,class="btn btn-primary fas fa-save fa-upload"set Font Awesome as the button's own font family, which its label text inherited, whilefa-saveandfa-uploadfought over one::before.The layout moves to
page--mediumwith a work column and the format reference beside it, since that reference answers the only question a first-time admin has and used to sit behind a chevron that was closed by default. Below 1024px it becomes a disclosure instead of disappearing. The source field is the hero, monospace because it holds something you paste, and it carries its own Import button, which removes thearia-hiddensubmit that existed only to compensate for the real action sitting outside the<form>. Simple and Advanced modes are gone: they were about 80% the same surface, and the overlap cost a mode switch, a localStorage key and a three-button Keep/Discard/Cancel dialog whose only job was protecting state the switch would have hidden. What genuinely differs is the kind of input, which is now two tabs: a source, or YAML. The size and VRAM estimate reports under the field that produced it instead of as a banner above the page header.A follow-up swept the same class of bug across the rest of the UI: eight header controls on seven pages had two or three elements' classes collapsed into one string.
One form, a collapsible options panel, and the format reference where you can read it.
🎬 MiniMax-H3: video and audio, jointly
vllm.cpp's stable C ABI grew a video slice at v12, and
vllm-cppnow serves two things. Text generation is unchanged. When a model config declares the H3 checkpoint set,Loadopens a video engine instead andGenerateVideorenders a clip through LocalAI's existing/videoendpoint, with video and audio generated jointly, so the MP4 comes back with a real AAC track rather than silent. Ask for speech in the prompt and the model lip-syncs it.Three things shape the integration:
The video engine is a second handle, not a mode of the first. H3 is not a model directory. The DiT, the text encoder and two VAEs are separate artifacts, and vllm.cpp's two loaders refuse each other's checkpoints.
parameters.modelis the DiT; the rest of the set is named inoptions:.The DiT partition is declared, not detected. The FL2VA DiT serves
t2vaandfl2va;ref2vais a different checkpoint. Community GGUF and NVFP4 quantizations strip the release metadata and the two DiTs are byte-structurally identical, so the engine refuses to generate until it is told which it has. Handing reference conditioning to an FL2VA DiT renders for hours and returns a coloured lattice over the frame, socheckPartitionConditioningrejects that combination before the engine is ever called.ffmpeg comes from the host. libvllm writes the frames and the WAV and composes the mux argv, then spawns nothing, which is a deliberate upstream process boundary. The backend substitutes
argv[0]and execs it.Gallery entries
minimax-h3-fl2va-q4(Q4_K_M FL2VA set) andminimax-h3-ref2va-q4ship with it.🗣️ Qwen3-TTS through the llama.cpp backend
Qwen3-TTS now runs on the
llama-cppbackend, which means text-to-speech on the same accelerator matrix already shipped for text generation (CUDA, ROCm, SYCL, Vulkan, Metal, L4T) using upstream's own GGUF conversion.grpc-server.cppis an adapter over llama.cpp's sharedserver_context, which owns thellama_contextand runs the slot scheduler on its own thread, so a gRPC handler driving the gen-audio loop itself would race that scheduler. Making TTS a slot-basedSERVER_TASK_TYPE_TTStask is the concurrency-safe integration, following the0001-add-server-task-type-score.patchprecedent already in the tree. llama.cpp merged Qwen3-TTS in ggml-org/llama.cpp#26254; the server plumbing in #26603 is still a draft, so it is carried aspatches/0002-add-server-task-type-tts.patchand should be deleted once that merges.disable-tts-task.shkeeps turboquant and bonsai compiling, since they copygrpc-server.cppinto forks without our patches.Both paths were verified end to end on CPU returning valid 24 kHz mono 16-bit WAV containing real speech, measured rather than eyeballed. Gallery entries:
qwen3-tts-llamacppandqwen3-tts-llamacpp-q4.The existing
qwen3-tts-cppbackend over qwentts.cpp is untouched. This is a second, independent path, not a replacement.🧭 KNN as a first-class router
classifier: knnpromotes KNN search from a cache for the classifier to a primary request router. Unlikescoreorcolbertit needs no classifier model: label knowledge lives in a corpus of labelled example prompts that you seed and curate through the admin API, so routing decisions are deterministic, auditable, and grounded in graded experience rather than a model's opinion.There is an explicit epistemic gate. Corpus entries below
knn.similarity_thresholdcannot vote, and when none clears it the classifier activates no labels and the router takes the fallback: a prompt unlike all labelled experience is treated as undecidable, not guessed. Decisions recordnearest_similarity, on fallback rows too, so you can see how far the nearest labelled experience actually was, and the Routing tab explains out-of-corpus fallbacks and shows per-label corpus counts.Persistence is one JSONL file per router under
<data path>/router-corpusholding text, labels, vector and embedder fingerprint. That file is the source of truth; the local-store index is rebuilt from it at classifier build time and stays a pure in-memory index, and entries recorded under a different embedding model re-embed on load. This also corrects the docs' claim that local-store collections persist: the embedding cache never survived restarts and still does not, while the corpus does.Corpus input is API-only by design, since entries may contain example user content:
POST /api/router/{name}/corpusseeds (labels validated against declared policies, embedded server-side, indexed immediately),GET .../corpus/statsinspects and returns label counts only (entry texts are never returned by any surface), andDELETE .../corpuswipes. All admin-gated like the sibling router endpoints and exposed as MCP tools.📊 Global admission control and running backend traces
Admission control existed per backend, which left nothing bounding the process as a whole, and the traces list could grow without limit. HTTP admission is now bounded process-wide.
Alongside it, backend operations are represented while they are still in flight rather than only once they finish, and running backend traces surface in the UI with immediate links to their logs, so an operation that is taking too long is something you can look at instead of something you wait out.
Operations are represented while they are still running, not only once they finish.
🕵️ PII pseudonyms that survive the round trip
The PII middleware masked values irreversibly, which is right for logs and wrong for a conversation: a model that is handed
[REDACTED:EMAIL]twice cannot tell whether it saw one address or two, and anything it says about them comes back unusable.Opt-in
pii.reverse_in_responseturns masked request values into unique deterministic pseudonyms within the request (EMAIL_001,EMAIL_002) and restores them if the backend returns them. Restoration handles normal JSON and SSE tokens split across response writes. Substitution maps stay request-local and are never persisted. Irreversible[REDACTED:...]remains the default.📦 Bounded parallel Hugging Face downloads
Snapshot materialization fetched every file through the sequential executor, so a repository split into many shards spent most of its wall clock in per-file request latency rather than moving bytes.
DownloadFilesWithConcurrencynow runs up to N whole-file transfers at once through anerrgroupwithSetLimit. Only whole files run in parallel: a single file is never split, so the.partialresume machinery and the per-file SHA check are untouched. The two non-artifact callers (core/gallery/models.goandcore/config/model_config_loader.go) keep exactly their previous behaviour through a wrapper passing a limit of 1, so tasks still run in slice order and the first failure still returns before any later task starts.Two consequences of the parallel path are worth knowing:
completedBytesis now anatomic.Int64, which is not a precaution (with a plainint64the race detector reports three races), and the caller's status callback is serialized to preserve the guarantee the sequential path gave it implicitly.AfterDownloadis deliberately not serialized, because it does the verify-and-promote work that the parallelism exists to overlap.📞 Realtime WebRTC on one UDP port
--web-rtc-udp-port/LOCALAI_WEBRTC_UDP_PORTreuses a single Pion ICE UDP mux across Realtime WebRTC calls, so a container or firewall needs one rule rather than a range. UDP bind failures are surfaced through signaling instead of failing opaquely, and the container and firewall setup is documented.A follow-up closed the gap it opened.
LOCALAI_WEBRTC_ICE_INTERFACESwas silently ignored whenever a fixed UDP port was set, which is exactly the combination an operator reaches for: pinning a port to write a firewall rule and restricting interfaces to keep unreachabledocker0andvethaddresses out of the candidate list usually go together. A wildcard mux made pion derive candidate addresses by enumerating interfaces itself with a nil filter, so on a host with docker bridges the browser received172.18.0.1,172.17.0.1,10.10.10.1and friends, connected on a good pair, then dropped when ICE consent checks failed on the others.🖧 Cold model loads run as durable jobs
On a two-replica frontend, loading a 35.7 GB GGUF onto a newly added Jetson Thor worker made the model permanently unloadable from the operator's seat, while staging was in fact progressing normally underneath. Replica A held the per-model advisory lock through roughly twenty minutes of transfer; replica B blocked on
pg_advisory_lockfor the same model and was killed at 60s by the role'sstatement_timeout, and every UI retry reproduced it.Two defects sat behind that one symptom. The lock's lifetime was the transfer's lifetime, with
Routewrapping backend install, multi-GB staging and checkpoint load inadvisorylock.WithLockCtx, which turns a millisecond dedup decision into a cluster-wide outage for that model. AndWithLockCtxoverrodelock_timeoutbut notstatement_timeout, though both abort the same blocking call.Cold loads now run as durable jobs, so the lock is held only for the decision it exists to make.
🎮 vllm-cpp builds for the cards people own
The
vllm-cppCUDA images were built for Blackwell only:120a;121aon amd64 and121aalone on arm64, out of the ten architectures vllm.cpp's own release archive builds.What makes it worth calling out is the failure mode. An unlisted card is not slower, it dies at the first request with
no kernel image is available for execution on the device, long afterlocal-ai backends install vllm-cppreported success. This was found on a Jetson Thor node that had the backend installed and could serve nothing.120a;121a80;86;89;90a;100a;103a;120a;121a121a87;90a;100a;110;121aThe split follows where the silicon exists: Jetson (
87Orin,110Thor) is arm64-only, desktop120ais amd64-only, and90a/100aare on both because of the SBSA parts. That adds A100, A10/3090, L4/4090/RTX 6000 Ada, H100/H200, B200, B300, Jetson Orin and Jetson Thor. The CUDA 13 guard now covers both branches rather than amd64 alone, and Triton-AOT stays on.🌍 Portuguese (Brazil) and Indonesian
A complete
pt-BRtranslation of the WebUI: 14 namespaces at full key parity withen/includingmodelEditor.json, with every i18next interpolation variable and_one/_otherplural key preserved. Indonesian covers the admin, media and navigation strings. Both keep brand, model and technical identifiers untranslated, matching existing locale conventions.🧰 Smaller features worth knowing about
stablediffusion-ggmlgated its Metal flags on anOS=Darwinvariable the runner never defines, so the Darwin workflow'sBUILD_TYPE=metalproduced a build withoutGGML_METAL_EMBED_LIBRARY=ON, shipping a runtime source path that failed to exposekernel_mul_mv_ext_bf16_f32_r1_5.parakeet-cppnever forwardedBUILD_TYPE=metaltoPARAKEET_GGML_METALat all: on an M1 Air the same five-minute sample went from 82.57s to 50.18s with byte-identical output. A dry-run build-contract test now guards the Stable Diffusion flags.mcp.remoteandmcp.stdioformats.URI.DownloadFilecallers still see the mismatch immediately.realtime_audiomodels and opened the frame-basedAudioTransformStreamRPC, which failed after the handshake withNotImplementedErrorfor any-to-any models likeliquid-audio. The use case is now validated before the backend loads, and any-to-any callers are pointed at the OpenAI Realtime API.PRELOAD_MODELS/--preload-modelsnow identifies which input was invalid and rejects non-array top-level values (including booleans andnull) with the expected shape in the error.🐛 Bug Fixes (recap)
fix(auth): protect HTTP routes by default - fix(auth): protect HTTP routes by default #11602fix(distributed): run cold model loads as durable jobs instead of holding the advisory lock - fix(distributed): run cold model loads as durable jobs instead of holding the advisory lock #11514fix(vllm-cpp): build every CUDA architecture the platform can host - fix(vllm-cpp): build every CUDA architecture the platform can host #11512fix(realtime): keep the ICE interface allow-list working with a fixed UDP port - fix(realtime): keep the ICE interface allow-list working with a fixed UDP port #11466fix(stablediffusion): embed Metal library - fix(stablediffusion): embed Metal library #11531fix(parakeet-cpp): enable Metal in macOS builds - fix(parakeet-cpp): enable Metal in macOS builds #11492fix(model): report backend crash diagnostics - fix(model): report backend crash diagnostics #11532fix(model): surface backend startup exits - fix(model): surface backend startup exits #11447fix(downloader): retry checksum mismatches - fix(downloader): retry checksum mismatches #11536fix(audio): reject incompatible transform streams - fix(audio): reject incompatible transform streams #11565fix(gallery): parse harmony output of gpt-oss-* models correctly - fix (gallery): Parse harmony output of gpt-oss-* models correctly (#8037) #11518fix(gallery): identify invalid preload JSON - fix(gallery): identify invalid preload JSON #11434fix(gallery): repair DeepSeek V4 fallback - fix(gallery): repair DeepSeek V4 fallback #11480fix(gallery): correct Higgs Audio v3 checksum - fix(gallery): correct Higgs Audio v3 checksum #11459fix(fish-speech): preserve ROCm PyTorch - fix(fish-speech): preserve ROCm PyTorch #11568fix(vllm): align Intel basekit runtime to oneAPI 2025.3.2 - fix(vllm): align Intel basekit runtime #11437fix(kokoros): add the missingupscale_imagestub to the Backend trait impl - fix(kokoros): add missingupscale_imagestub to Backend trait impl #11414fix: show MCP connection errors in the UI - fix: Show MCP connection errors in the UI #11495fix(ui): unmerge the class strings that left buttons in browser chrome - fix(ui): unmerge the class strings that left buttons in browser chrome #11462fix(ui): keep agent import action visible - fix(ui): keep agent import action visible #11488fix: wrap long TTS request text instead of widening the page - fix: tts text wrap #11576🧠 Models
85 new gallery entries this cycle, taking the index from 1,622 to 1,707.
Text generation: Qwen3.8 in 9B, 27B, Ridge and small variants, Gemma 4 agentic and Gemma 4 Scotoma 2, DeepSeek V4 Pro 0813, Ling 3.0 Flash, Nemotron 3.5 Lightning 30B, Tess 4 27B, Ornith 1.0 and 1.5 9B, Muse Glimmer 30B, Grug 12B, BigBang v1, Genesis Hermes V7, TwIL-LM3, BTL-4 Compact, XYZ Aquila mini, North Mini Code, AREX Turbo, Fara1.5 4B, MiniCPM5 1B Q8, Shieldstral 1.0 3B and UI-Mate 9B.
Vision and OCR: HunyuanOCR, OvisOCR2, LFM2.5 VL 1.6B, and LFM2.5 230M alongside it.
Audio and video: Higgs Audio v3 TTS, the Qwen3-TTS llama.cpp entries, and the MiniMax-H3 FL2VA and Ref2VA video sets.
Also a first Carbon genomics family, and text-generation entries for the
vllm-cppbackend.👒 Dependencies
Submodule and pin bumps this cycle:
Plus
golang.org/x/netto v0.55.0, vllm 0.26.0 and transformers >=5.15.0 in the Python backends, sentence-transformers 5.7.0, packaging 26.3, dompurify 3.4.13, the Kokoros source pin, inference defaults refreshed from unsloth, and seven gallery checksum refreshes.📖 Documentation
New pages for context compression and
vllm-cpp, a substantially expanded middleware page covering the PII pseudonym and compression surfaces, and a rewritten authentication page documenting the public and protected route surfaces after the deny-by-default change.Video generation gained the MiniMax-H3 setup, text-to-audio the Qwen3-TTS llama.cpp path, distributed mode the durable cold-load behaviour, MCP the configuration formats and container networking implications, and Realtime the shared UDP port and firewall guidance. Embeddings, model gallery, backends and API discovery all picked up corrections, and the broken stars counter came out of the site.
🙌 New Contributors
Thanks also to @richiejp, @jimmykarily, @Dennisadira, @dedyf5, @ALameLlama and @walcz-de, and to Naor Yaacov for the authentication bypass report.
What's Changed
Breaking Changes 🛠
Bug fixes 🐛
upscale_imagestub to Backend trait impl by @mudler with @Copilot in fix(kokoros): add missingupscale_imagestub to Backend trait impl #11414Exciting New Features 🎉
🧠 Models
📖 Documentation and examples
👒 Dependencies
592feef04a1802b18cbeffd0fd0eb5d02570c2ecby @localai-bot in chore: ⬆️ Update ggml-org/whisper.cpp to592feef04a1802b18cbeffd0fd0eb5d02570c2ec#1141640dffce6857b4fe051f096379dc464764c718458by @localai-bot in chore: ⬆️ Update ikawrakow/ik_llama.cpp to40dffce6857b4fe051f096379dc464764c718458#1140317a6cc99422bfafadf7161e96dd7294c89da9c36by @localai-bot in chore: ⬆️ Update CrispStrobe/CrispASR to17a6cc99422bfafadf7161e96dd7294c89da9c36#11404f2328aa0c19954d0ab31a3de60fbf50e47c2429fby @localai-bot in chore: ⬆️ Update ikawrakow/ik_llama.cpp tof2328aa0c19954d0ab31a3de60fbf50e47c2429f#1142184cc882352757baf628a1776badf7cc54d584e28by @localai-bot in chore: ⬆️ Update antirez/ds4 to84cc882352757baf628a1776badf7cc54d584e28#11432a7c81affa48c6800d63111bdb33469a01d062daaby @localai-bot in chore: ⬆️ Update ikawrakow/ik_llama.cpp toa7c81affa48c6800d63111bdb33469a01d062daa#11431748c5e28f6a7228b8f38ad7142ca97d29584544bby @localai-bot in chore: ⬆️ Update 0xShug0/audio.cpp to748c5e28f6a7228b8f38ad7142ca97d29584544b#114018898b0fee199b1765321a5d0d8314aee51a34583by @localai-bot in chore: ⬆️ Update CrispStrobe/CrispASR to8898b0fee199b1765321a5d0d8314aee51a34583#114225763a901de3f525b65ed5574fd57623905685755by @localai-bot in chore: ⬆️ Update ikawrakow/ik_llama.cpp to5763a901de3f525b65ed5574fd57623905685755#114528b91f4c5490b88ae6193673c35644d91d8695821by @localai-bot in chore: ⬆️ Update CrispStrobe/CrispASR to8b91f4c5490b88ae6193673c35644d91d8695821#114509d6e7b39236e0151ad28a70fab0d538b84ce8718by @localai-bot in chore: ⬆️ Update 0xShug0/audio.cpp to9d6e7b39236e0151ad28a70fab0d538b84ce8718#11451030ebb558a5820b444a8f836ed5cdd46c9b4bd7aby @localai-bot in chore: ⬆️ Update ggml-org/llama.cpp to030ebb558a5820b444a8f836ed5cdd46c9b4bd7a#1145424306364ab8beaed9197604a042a56aaccfde493by @localai-bot in chore: ⬆️ Update mudler/vllm.cpp to24306364ab8beaed9197604a042a56aaccfde493#1138526ceed9d4091a1696cf50e2ed87e5767d5811d81by @localai-bot in chore: ⬆️ Update ikawrakow/ik_llama.cpp to26ceed9d4091a1696cf50e2ed87e5767d5811d81#1147554abd5c0abfd1f394e01cb3c38f2e3af4daedf85by @localai-bot in chore: ⬆️ Update mudler/depth-anything.cpp to54abd5c0abfd1f394e01cb3c38f2e3af4daedf85#114819fd9e8f34408d5dd21d7f9385e96fc755708950bby @localai-bot in chore: ⬆️ Update mudler/vllm.cpp to9fd9e8f34408d5dd21d7f9385e96fc755708950b#11472c46ffaa5665cfb2d6cf372c9a054dbab896e14feby @localai-bot in chore: ⬆️ Update ikawrakow/ik_llama.cpp toc46ffaa5665cfb2d6cf372c9a054dbab896e14fe#11482v0.3.0.dev20260812005333by @localai-bot in chore: ⬆️ Update vllm-metal (darwin) tov0.3.0.dev20260812005333#114670.27.1by @localai-bot in chore: ⬆️ Update vllm-project/vllm cu130 wheel to0.27.1#11468ce521ee178867ceaa5fdc11803616578c8936c19by @localai-bot in chore: ⬆️ Update CrispStrobe/CrispASR toce521ee178867ceaa5fdc11803616578c8936c19#11470de298c225bed97c3f9026b73cd7b71e7879bd41bby @localai-bot in chore: ⬆️ Update leejet/stable-diffusion.cpp tode298c225bed97c3f9026b73cd7b71e7879bd41b#114697089168to29e99adby @dependabot[bot] in chore(deps): bump backend/rust/kokoros/sources/Kokoros from7089168to29e99ad#1149684e908c625fb60992b4cdef8180fb12fa9b4c4bfby @localai-bot in chore: ⬆️ Update ggml-org/llama.cpp to84e908c625fb60992b4cdef8180fb12fa9b4c4bf#11473v0.3.0.dev20260813121949by @localai-bot in chore: ⬆️ Update vllm-metal (darwin) tov0.3.0.dev20260813121949#11507981e5ea0d7579b4803c86afbb09a7cd7d7bf3bb8by @localai-bot in chore: ⬆️ Update ikawrakow/ik_llama.cpp to981e5ea0d7579b4803c86afbb09a7cd7d7bf3bb8#11509cb082743c456ac77aec0947de36e6420a933da04by @localai-bot in chore: ⬆️ Update CrispStrobe/CrispASR tocb082743c456ac77aec0947de36e6420a933da04#1151043afea46c25a12aae6db1e3105643267164898b4by @localai-bot in chore: ⬆️ Update ikawrakow/ik_llama.cpp to43afea46c25a12aae6db1e3105643267164898b4#11527v0.3.0.dev20260814013332by @localai-bot in chore: ⬆️ Update vllm-metal (darwin) tov0.3.0.dev20260814013332#11522cc498701f1a68d88dd489803ebad10053a924322by @localai-bot in chore: ⬆️ Update CrispStrobe/CrispASR tocc498701f1a68d88dd489803ebad10053a924322#115231fe009caeda75f69bc864d6370b10674e45a92bdby @localai-bot in chore: ⬆️ Update ggml-org/whisper.cpp to1fe009caeda75f69bc864d6370b10674e45a92bd#115248337e4cd3861406fc04e0854b1409cd1b027fbc9by @localai-bot in chore: ⬆️ Update ikawrakow/ik_llama.cpp to8337e4cd3861406fc04e0854b1409cd1b027fbc9#11542v0.3.0.dev20260815085651by @localai-bot in chore: ⬆️ Update vllm-metal (darwin) tov0.3.0.dev20260815085651#115414880c5715f36445a30bd39d3349a06dc96085a11by @localai-bot in chore: ⬆️ Update mudler/vllm.cpp to4880c5715f36445a30bd39d3349a06dc96085a11#11515v0.3.0.dev20260816085229by @localai-bot in chore: ⬆️ Update vllm-metal (darwin) tov0.3.0.dev20260816085229#115533721d402f7bcc911dd4143a58e3da1cc67f09cc2by @localai-bot in chore: ⬆️ Update CrispStrobe/CrispASR to3721d402f7bcc911dd4143a58e3da1cc67f09cc2#11554v0.3.0.dev20260817081527by @localai-bot in chore: ⬆️ Update vllm-metal (darwin) tov0.3.0.dev20260817081527#11570007fda47128aaba7e2ce2279b0947a1c13800d68by @localai-bot in chore: ⬆️ Update CrispStrobe/CrispASR to007fda47128aaba7e2ce2279b0947a1c13800d68#115690021a77de0a8966059dc94548fb3b96654e0bb12by @localai-bot in chore: ⬆️ Update ggml-org/llama.cpp to0021a77de0a8966059dc94548fb3b96654e0bb12#1150876f2a6d84e41cc9a593146a9a958f63645542731by @localai-bot in chore: ⬆️ Update mudler/vllm.cpp to76f2a6d84e41cc9a593146a9a958f63645542731#115553407559d7c83b543bd60ca8fa2b630374e71083fby @localai-bot in chore: ⬆️ Update 0xShug0/audio.cpp to3407559d7c83b543bd60ca8fa2b630374e71083f#11474v0.3.0.dev20260818075955by @localai-bot in chore: ⬆️ Update vllm-metal (darwin) tov0.3.0.dev20260818075955#1158692816fc5c48d33a58171b49678ccf884d70142fbby @localai-bot in chore: ⬆️ Update 0xShug0/audio.cpp to92816fc5c48d33a58171b49678ccf884d70142fb#115874834a2327d008ace3ec5a9ed00f51454bcabbc1cby @localai-bot in chore: ⬆️ Update ggml-org/whisper.cpp to4834a2327d008ace3ec5a9ed00f51454bcabbc1c#115886e99e4540b8d0811542a9d7690dc9aa0bda5812fby @localai-bot in chore: ⬆️ Update mudler/vllm.cpp to6e99e4540b8d0811542a9d7690dc9aa0bda5812f#1158960addddf3c567c43ec3caf70fc953fba3572d96fby @localai-bot in chore: ⬆️ Update ggml-org/llama.cpp to60addddf3c567c43ec3caf70fc953fba3572d96f#11590a117d433855ecc36b0cb20bd1abddd852902ed13by @localai-bot in chore: ⬆️ Update CrispStrobe/CrispASR toa117d433855ecc36b0cb20bd1abddd852902ed13#11591e75de9b6b9b688fd293aa22f7e27aa724ea286f8by @localai-bot in chore: ⬆️ Update mudler/parakeet.cpp toe75de9b6b9b688fd293aa22f7e27aa724ea286f8#11592438305e1577768ec0f75729456a4c8b9f425e2eeby @localai-bot in chore: ⬆️ Update mudler/vllm.cpp to438305e1577768ec0f75729456a4c8b9f425e2ee#11612a61da671b6a81c79071500954eea3c91c1a383ddby @localai-bot in chore: ⬆️ Update 0xShug0/audio.cpp toa61da671b6a81c79071500954eea3c91c1a383dd#1161397d2990807fe6d558e395f8764198d7c7e7b411cby @localai-bot in chore: ⬆️ Update leejet/stable-diffusion.cpp to97d2990807fe6d558e395f8764198d7c7e7b411c#11616a153b09b37c90cd55cd9336fccbdf3ba7a289596by @localai-bot in chore: ⬆️ Update CrispStrobe/CrispASR toa153b09b37c90cd55cd9336fccbdf3ba7a289596#116114f9676226f667d14608487df744f375db87127f8by @localai-bot in chore: ⬆️ Update NVIDIA/NeMo-Speech.cpp to4f9676226f667d14608487df744f375db87127f8#11417Other Changes
Full Changelog: v4.8.2...v4.9.0
This discussion was created from the release v4.9.0.
All reactions