chore(helm): update image docker.io/localai/localai v2.28.0 → v2.29.0 (#35354)

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/localai/localai](https://redirect.github.com/mudler/LocalAI)
| minor | `4931cc2` -> `de25f28` |
|
[docker.io/localai/localai](https://redirect.github.com/mudler/LocalAI)
| minor | `e5d71e3` -> `b8365ec` |
|
[docker.io/localai/localai](https://redirect.github.com/mudler/LocalAI)
| minor | `627674d` -> `85d5b0c` |
|
[docker.io/localai/localai](https://redirect.github.com/mudler/LocalAI)
| minor | `a4dd7b7` -> `1dd96ee` |

Add the preset `:preserveSemverRanges` to your config if you don't want
to pin your dependencies.

---

### Release Notes

<details>
<summary>mudler/LocalAI (docker.io/localai/localai)</summary>

###
[`v2.29.0`](https://redirect.github.com/mudler/LocalAI/releases/tag/v2.29.0)

[Compare
Source](https://redirect.github.com/mudler/LocalAI/compare/v2.28.0...v2.29.0)

<h1 align="center">
  <br>
<img height="300"
src="https://raw.githubusercontent.com/mudler/LocalAI/refs/heads/master/core/http/static/logo.png">
<br>
<br>
v2.29.0
</h1>

I am thrilled to announce the release of LocalAI v2.29.0! This update
focuses heavily on refining our container image strategy, making default
images leaner and providing clearer options for users needing specific
features or hardware acceleration. We've also added support for new
models like Qwen3, enhanced existing backends, and introduced
experimental endpoints, like video generation!

##### ⚠️ Important: Breaking Changes

This release includes significant changes to container image tagging and
contents. Please review carefully:

- **Python Dependencies Moved:** Images containing extra Python
dependencies (like those for `diffusers`) now require the `-extras`
suffix (e.g., `latest-gpu-nvidia-cuda-12-extras`). Default images are
now slimmer and do *not* include these dependencies.
- **FFmpeg is Now Standard:** All core images now include FFmpeg. The
separate `-ffmpeg` tags have been removed. If you previously used an
`-ffmpeg` tagged image, simply switch to the corresponding base image
tag (e.g., `latest-gpu-hipblas-ffmpeg` becomes `latest-gpu-hipblas`).

Here below some examples, note that the CI is still publishing the
images so won't be available until jobs are processed, and the
installation scripts will be updated right after images are publicly
available.

##### CPU only image:

```bash
docker run -ti --name local-ai -p 8080:8080 localai/localai:latest
```

##### NVIDIA GPU Images:

```bash

##### CUDA 12.0 with core features
docker run -ti --name local-ai -p 8080:8080 --gpus all localai/localai:latest-gpu-nvidia-cuda-12

##### CUDA 12.0 with extra Python dependencies
docker run -ti --name local-ai -p 8080:8080 --gpus all localai/localai:latest-gpu-nvidia-cuda-12-extras

##### CUDA 11.7 with core features
docker run -ti --name local-ai -p 8080:8080 --gpus all localai/localai:latest-gpu-nvidia-cuda-11

##### CUDA 11.7 with extra Python dependencies
docker run -ti --name local-ai -p 8080:8080 --gpus all localai/localai:latest-gpu-nvidia-cuda-11-extras

##### NVIDIA Jetson (L4T) ARM64
docker run -ti --name local-ai -p 8080:8080 --gpus all localai/localai:latest-nvidia-l4t-arm64
```

##### AMD GPU Images (ROCm):

```bash

##### ROCm with core features
docker run -ti --name local-ai -p 8080:8080 --device=/dev/kfd --device=/dev/dri --group-add=video localai/localai:latest-gpu-hipblas

##### ROCm with extra Python dependencies
docker run -ti --name local-ai -p 8080:8080 --device=/dev/kfd --device=/dev/dri --group-add=video localai/localai:latest-gpu-hipblas-extras
```

##### Intel GPU Images (oneAPI):

```bash

##### Intel GPU with FP16 support
docker run -ti --name local-ai -p 8080:8080 localai/localai:latest-gpu-intel-f16

##### Intel GPU with FP16 support and extra dependencies
docker run -ti --name local-ai -p 8080:8080 localai/localai:latest-gpu-intel-f16-extras

##### Intel GPU with FP32 support
docker run -ti --name local-ai -p 8080:8080 localai/localai:latest-gpu-intel-f32

##### Intel GPU with FP32 support and extra dependencies
docker run -ti --name local-ai -p 8080:8080 localai/localai:latest-gpu-intel-f32-extras
```

##### Vulkan GPU Images:

```bash

##### Vulkan with core features
docker run -ti --name local-ai -p 8080:8080 localai/localai:latest-gpu-vulkan
```

##### AIO Images (pre-downloaded models):

```bash

##### CPU version
docker run -ti --name local-ai -p 8080:8080 localai/localai:latest-aio-cpu

##### NVIDIA CUDA 12 version
docker run -ti --name local-ai -p 8080:8080 --gpus all localai/localai:latest-aio-gpu-nvidia-cuda-12

##### NVIDIA CUDA 11 version
docker run -ti --name local-ai -p 8080:8080 --gpus all localai/localai:latest-aio-gpu-nvidia-cuda-11

##### Intel GPU version
docker run -ti --name local-ai -p 8080:8080 localai/localai:latest-aio-gpu-intel-f16

##### AMD GPU version
docker run -ti --name local-ai -p 8080:8080 --device=/dev/kfd --device=/dev/dri --group-add=video localai/localai:latest-aio-gpu-hipblas
```

For more information about the AIO images and pre-downloaded models, see
[Container Documentation](https://localai.io/basics/container/).

##### Key Changes in v2.29.0

##### 📦 Container Image Overhaul

- **`-extras` Suffix:** Images with additional Python dependencies are
now identified by the `-extras` suffix.
- **Default Images:** Standard tags (like `latest`,
`latest-gpu-nvidia-cuda-12`) now provide core LocalAI functionality
without the extra Python libraries.
- **FFmpeg Inclusion:** FFmpeg is bundled in all images, simplifying
setup for multimedia tasks.
- **New `latest-*` Tags:** Added specific `latest` tags for various GPU
architectures:
    -   `latest-gpu-hipblas` (AMD ROCm)
    -   `latest-gpu-intel-f16` (Intel oneAPI FP16)
    -   `latest-gpu-intel-f32` (Intel oneAPI FP32)
    -   `latest-gpu-nvidia-cuda-12` (NVIDIA CUDA 12)
    -   `latest-gpu-vulkan` (Vulkan)

##### 🚀 New Features & Enhancements

- **Qwen3 Model Support:** Officially integrated support for the Qwen3
model family.
- **Experimental Auto GPU Offload:** LocalAI can now attempt to
automatically detect GPUs and configure optimal layer offloading for
`llama.cpp` and `CLIP`.
- **Whisper.cpp GPU Acceleration:** Updated whisper.cpp and enabled GPU
support via cuBLAS (NVIDIA) and Vulkan. SYCL and Hipblas support are in
progress.
- **Experimental Video Generation:** Introduced a `/video/generations`
endpoint. Stay tuned for compatible model backends!
- **Installer Uninstall Option:** The `install.sh` script now includes a
`--uninstall` flag for easy removal.
- **Expanded Hipblas Targets:** Added support for a wider range of AMD
GPU architectures.
`gfx803,gfx900,gfx906,gfx908,gfx90a,gfx942,gfx1010,gfx1030,gfx1032,gfx1100,gfx1101,gfx1102`

##### 🧹 Backend Updates

- **AutoGPTQ Backend Removed:** This backend has been dropped due to
being discontinued upstream.
- **llama.cpp** experimental support to automatically detect GPU layers
offloading.

##### The Complete Local Stack for Privacy-First AI

With LocalAGI rejoining LocalAI alongside LocalRecall, our ecosystem
provides a complete, open-source stack for private, secure, and
intelligent AI operations:

<table>
  <tr>
    <td width="30%" valign="top" align="center">
      <a href="https://redirect.github.com/mudler/LocalAI">
<img
src="https://raw.githubusercontent.com/mudler/LocalAI/refs/heads/master/core/http/static/logo.png"
width="200" alt="LocalAI Logo">
        <h3>LocalAI</h3>
      </a>
    </td>
    <td width="70%" valign="top">
<p>The free, Open Source OpenAI alternative. Acts as a drop-in
replacement REST API compatible with OpenAI specifications for local AI
inferencing. No GPU required.</p>
<p><em>Link:</em> <a
href="https://redirect.github.com/mudler/LocalAI">https://github.com/mudler/LocalAI</a></p>
    </td>
  </tr>
  <tr>
    <td width="30%" valign="top" align="center">
      <a href="https://redirect.github.com/mudler/LocalAGI">
<img
src="https://raw.githubusercontent.com/mudler/LocalAGI/refs/heads/main/webui/react-ui/public/logo_2.png"
width="200" alt="LocalAGI Logo">
         <h3>LocalAGI</h3>
      </a>
    </td>
    <td width="70%" valign="top">
<p>A powerful Local AI agent management platform. Serves as a drop-in
replacement for OpenAI's Responses API, supercharged with advanced
agentic capabilities and a no-code UI.</p>
<p><em>Link:</em> <a
href="https://redirect.github.com/mudler/LocalAGI">https://github.com/mudler/LocalAGI</a></p>
    </td>
  </tr>
  <tr>
    <td width="30%" valign="top" align="center">
      <a href="https://redirect.github.com/mudler/LocalRecall">
<img
src="https://raw.githubusercontent.com/mudler/LocalRecall/refs/heads/main/static/localrecall_horizontal.png"
width="200" alt="LocalRecall Logo">
         <h3>LocalRecall</h3>
      </a>
    </td>
    <td width="70%" valign="top">
<p>A RESTful API and knowledge base management system providing
persistent memory and storage capabilities for AI agents. Designed to
work alongside LocalAI and LocalAGI.</p>
<p><em>Link:</em> <a
href="https://redirect.github.com/mudler/LocalRecall">https://github.com/mudler/LocalRecall</a></p>
    </td>
  </tr>
</table>

##### Join the Movement! ❤️

A massive **THANK YOU** to our incredible community! LocalAI has over
**32,500 stars**, and LocalAGI has already rocketed past **650+ stars**!

As a reminder, LocalAI is real FOSS (Free and Open Source Software) and
its sibling projects are community-driven and not backed by VCs or a
company. We rely on contributors donating their spare time. If you love
open-source, privacy-first AI, please consider starring the repos,
contributing code, reporting bugs, or spreading the word!

👉 **Check out the reborn LocalAGI v2 today:**
<https://github.com/mudler/LocalAGI>

Let's continue building the future of AI, together! 🙌

##### Full changelog 👇

<details>

<summary>
👉 Click to expand 👈 
</summary>

##### What's Changed
##### Breaking Changes 🛠
* chore(autogptq): drop archived backend by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5214](https://redirect.github.com/mudler/LocalAI/pull/5214)l/5214
* chore(ci): build only images with ffmpeg included, simplify tags by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5251](https://redirect.github.com/mudler/LocalAI/pull/5251)l/5251
* chore(ci): strip 'core' in the image suffix, identify python-based
images with 'extras' by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5353](https://redirect.github.com/mudler/LocalAI/pull/5353)l/5353

##### Bug fixes 🐛
* fix: bark-cpp: assign FLAG_TTS to bark-cpp backend by
@&#8203;M0Rf[https://github.com/mudler/LocalAI/pull/5186](https://redirect.github.com/mudler/LocalAI/pull/5186)l/5186
* fix(talk): Talk interface sends content-type headers to chatgpt by
@&#8203;baf[https://github.com/mudler/LocalAI/pull/5200](https://redirect.github.com/mudler/LocalAI/pull/5200)l/5200
* fix: installation script compatibility with fedora 41 and later,
fedora headless unclear errors by
@&#8203;Bloodis[https://github.com/mudler/LocalAI/pull/5239](https://redirect.github.com/mudler/LocalAI/pull/5239)l/5239
* fix(stablediffusion-ggml): Build with DSD CUDA, HIP and Metal flags by
@&#8203;richie[https://github.com/mudler/LocalAI/pull/5236](https://redirect.github.com/mudler/LocalAI/pull/5236)l/5236
* fix(install/gpu):Fix docker not being able to leverage the GPU on
systems that have SELinux Enforced by
@&#8203;Bloodis[https://github.com/mudler/LocalAI/pull/5252](https://redirect.github.com/mudler/LocalAI/pull/5252)l/5252
* fix(aio): Fix copypasta in download files for gpt-4 model by
@&#8203;richie[https://github.com/mudler/LocalAI/pull/5276](https://redirect.github.com/mudler/LocalAI/pull/5276)l/5276
* fix(diffusers): consider options only in form of key/value by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5277](https://redirect.github.com/mudler/LocalAI/pull/5277)l/5277
* fix(gpu): do not assume gpu being returned has node and mem by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5310](https://redirect.github.com/mudler/LocalAI/pull/5310)l/5310
* fix(hipblas): do not build all cpu-specific flags by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5322](https://redirect.github.com/mudler/LocalAI/pull/5322)l/5322

##### Exciting New Features 🎉
* chore(ci): add latest images for core by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5198](https://redirect.github.com/mudler/LocalAI/pull/5198)l/5198
* feat(install.sh): allow to uninstall with --uninstall by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5202](https://redirect.github.com/mudler/LocalAI/pull/5202)l/5202
* chore: bump grpc limits to 50MB by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5212](https://redirect.github.com/mudler/LocalAI/pull/5212)l/5212
* feat(llama.cpp/clip): inject gpu options if we detect GPUs by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5243](https://redirect.github.com/mudler/LocalAI/pull/5243)l/5243
* feat(install): added complete process for installing nvidia drivers on
fedora without pulling X11 by
@&#8203;Bloodis[https://github.com/mudler/LocalAI/pull/5246](https://redirect.github.com/mudler/LocalAI/pull/5246)l/5246
* feat(video-gen): add endpoint for video generation by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5247](https://redirect.github.com/mudler/LocalAI/pull/5247)l/5247
* feat(llama.cpp): estimate vram usage by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5299](https://redirect.github.com/mudler/LocalAI/pull/5299)l/5299
* chore(defaults): enlarge defaults, drop gpu layers which is infered by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5308](https://redirect.github.com/mudler/LocalAI/pull/5308)l/5308
* fix(arm64): do not build instructions which are not available by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5318](https://redirect.github.com/mudler/LocalAI/pull/5318)l/5318
* feat(whisper.cpp): gpu support by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5344](https://redirect.github.com/mudler/LocalAI/pull/5344)l/5344

##### 🧠 Models
* chore(model gallery): add suno-ai bark-cpp model by
@&#8203;M0Rf[https://github.com/mudler/LocalAI/pull/5187](https://redirect.github.com/mudler/LocalAI/pull/5187)l/5187
* chore(model gallery): add
menlo_rezero-v0.1-llama-3.2-3b-it-grpo-250404 by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5194](https://redirect.github.com/mudler/LocalAI/pull/5194)l/5194
* chore(model gallery): add thedrummer_rivermind-12b-v1 by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5195](https://redirect.github.com/mudler/LocalAI/pull/5195)l/5195
* chore(model gallery): add dreamgen_lucid-v1-nemo by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5196](https://redirect.github.com/mudler/LocalAI/pull/5196)l/5196
* chore(model gallery): add qwen2.5-14b-instruct-1m by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5201](https://redirect.github.com/mudler/LocalAI/pull/5201)l/5201
* chore(model gallery): add ibm-granite_granite-3.3-8b-instruct by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5204](https://redirect.github.com/mudler/LocalAI/pull/5204)l/5204
* chore(model gallery): add ibm-granite_granite-3.3-2b-instruct by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5205](https://redirect.github.com/mudler/LocalAI/pull/5205)l/5205
* chore(model gallery): add readyart_amoral-fallen-omega-gemma3-12b by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5206](https://redirect.github.com/mudler/LocalAI/pull/5206)l/5206
* chore(model gallery): add google-gemma-3-27b-it-qat-q4_0-small by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5207](https://redirect.github.com/mudler/LocalAI/pull/5207)l/5207
* chore(model gallery): add pictor-1338-qwenp-1.5b by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5208](https://redirect.github.com/mudler/LocalAI/pull/5208)l/5208
* chore(model gallery) add llama_3.3_70b_darkhorse-i1 by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5222](https://redirect.github.com/mudler/LocalAI/pull/5222)l/5222
* chore(model gallery) add amoral-gemma3-1b-v2 by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5223](https://redirect.github.com/mudler/LocalAI/pull/5223)l/5223
* chore(model gallery): add starrysky-12b-i1 by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5224](https://redirect.github.com/mudler/LocalAI/pull/5224)l/5224
* chore(model gallery): add soob3123_veritas-12b by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5241](https://redirect.github.com/mudler/LocalAI/pull/5241)l/5241
* chore(model gallery): add l3.3-geneticlemonade-unleashed-v2-70b by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5249](https://redirect.github.com/mudler/LocalAI/pull/5249)l/5249
* chore(model gallery): add l3.3-genetic-lemonade-sunset-70b by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5250](https://redirect.github.com/mudler/LocalAI/pull/5250)l/5250
* chore(model gallery): add nvidia_openmath-nemotron-32b by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5260](https://redirect.github.com/mudler/LocalAI/pull/5260)l/5260
* chore(model gallery): add nvidia_openmath-nemotron-1.5b by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5261](https://redirect.github.com/mudler/LocalAI/pull/5261)l/5261
* chore(model gallery): add nvidia_openmath-nemotron-7b by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5262](https://redirect.github.com/mudler/LocalAI/pull/5262)l/5262
* chore(model gallery): add nvidia_openmath-nemotron-14b by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5263](https://redirect.github.com/mudler/LocalAI/pull/5263)l/5263
* chore(model gallery): add nvidia_openmath-nemotron-14b-kaggle by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5264](https://redirect.github.com/mudler/LocalAI/pull/5264)l/5264
* chore(model gallery): add qwen3-30b-a3b by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5269](https://redirect.github.com/mudler/LocalAI/pull/5269)l/5269
* chore(model gallery): add qwen3-32b by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5270](https://redirect.github.com/mudler/LocalAI/pull/5270)l/5270
* chore(model-gallery): ⬆️ update checksum by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/5268](https://redirect.github.com/mudler/LocalAI/pull/5268)l/5268
* chore(model gallery): add qwen3-14b by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5271](https://redirect.github.com/mudler/LocalAI/pull/5271)l/5271
* chore(model gallery): add qwen3-8b by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5272](https://redirect.github.com/mudler/LocalAI/pull/5272)l/5272
* chore(model gallery): add qwen3-4b by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5273](https://redirect.github.com/mudler/LocalAI/pull/5273)l/5273
* chore(model gallery): add qwen3-1.7b by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5274](https://redirect.github.com/mudler/LocalAI/pull/5274)l/5274
* chore(model gallery): add qwen3-0.6b by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5275](https://redirect.github.com/mudler/LocalAI/pull/5275)l/5275
* chore(model gallery): add mlabonne_qwen3-14b-abliterated by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5281](https://redirect.github.com/mudler/LocalAI/pull/5281)l/5281
* chore(model gallery): add mlabonne_qwen3-8b-abliterated by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5282](https://redirect.github.com/mudler/LocalAI/pull/5282)l/5282
* chore(model gallery): add mlabonne_qwen3-4b-abliterated by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5283](https://redirect.github.com/mudler/LocalAI/pull/5283)l/5283
* chore(model gallery): add qwen3-30b-a3b-abliterated by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5285](https://redirect.github.com/mudler/LocalAI/pull/5285)l/5285
* chore(model gallery): add qwen3-8b-jailbroken by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5286](https://redirect.github.com/mudler/LocalAI/pull/5286)l/5286
* chore(model gallery): add fast-math-qwen3-14b by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5287](https://redirect.github.com/mudler/LocalAI/pull/5287)l/5287
* chore(model gallery): add microsoft_phi-4-mini-reasoning by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5288](https://redirect.github.com/mudler/LocalAI/pull/5288)l/5288
* chore(model gallery): add josiefied-qwen3-8b-abliterated-v1 by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5293](https://redirect.github.com/mudler/LocalAI/pull/5293)l/5293
* chore(model gallery): add furina-8b by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5294](https://redirect.github.com/mudler/LocalAI/pull/5294)l/5294
* chore(model gallery): add microsoft_phi-4-reasoning-plus by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5295](https://redirect.github.com/mudler/LocalAI/pull/5295)l/5295
* chore(model gallery): add microsoft_phi-4-reasoning by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5296](https://redirect.github.com/mudler/LocalAI/pull/5296)l/5296
* chore(model gallery): add shuttleai_shuttle-3.5 by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5297](https://redirect.github.com/mudler/LocalAI/pull/5297)l/5297
* chore(model gallery): add webthinker-qwq-32b-i1 by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5298](https://redirect.github.com/mudler/LocalAI/pull/5298)l/5298
* chore(model gallery): add planetoid_27b_v.2 by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5301](https://redirect.github.com/mudler/LocalAI/pull/5301)l/5301
* chore(model gallery): add genericrpv3-4b by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5302](https://redirect.github.com/mudler/LocalAI/pull/5302)l/5302
* chore(model gallery): add comet_12b_v.5-i1 by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5303](https://redirect.github.com/mudler/LocalAI/pull/5303)l/5303
* chore(model gallery): add amoral-qwen3-14b by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5304](https://redirect.github.com/mudler/LocalAI/pull/5304)l/5304
* chore(model gallery): add qwen-3-32b-medical-reasoning-i1 by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5305](https://redirect.github.com/mudler/LocalAI/pull/5305)l/5305
* chore(model gallery): add smoothie-qwen3-8b by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5306](https://redirect.github.com/mudler/LocalAI/pull/5306)l/5306
* chore(model gallery): add qwen3-30b-a1.5b-high-speed by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5311](https://redirect.github.com/mudler/LocalAI/pull/5311)l/5311
* chore(model gallery): add kalomaze_qwen3-16b-a3b by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5312](https://redirect.github.com/mudler/LocalAI/pull/5312)l/5312
* chore(model gallery): add rei-v3-kto-12b by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5313](https://redirect.github.com/mudler/LocalAI/pull/5313)l/5313
* chore(model gallery): add allura-org_remnant-qwen3-8b by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5317](https://redirect.github.com/mudler/LocalAI/pull/5317)l/5317
* chore(model-gallery): ⬆️ update checksum by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/5321](https://redirect.github.com/mudler/LocalAI/pull/5321)l/5321
* chore(model gallery): add huihui-ai_qwen3-14b-abliterated by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5324](https://redirect.github.com/mudler/LocalAI/pull/5324)l/5324
* chore(model gallery): add
goekdeniz-guelmez_josiefied-qwen3-8b-abliterated-v1 by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5325](https://redirect.github.com/mudler/LocalAI/pull/5325)l/5325
* chore(model gallery): add claria-14b by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5326](https://redirect.github.com/mudler/LocalAI/pull/5326)l/5326
* chore(model gallery): add qwen3-14b-griffon-i1 by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5330](https://redirect.github.com/mudler/LocalAI/pull/5330)l/5330
* chore(model gallery): add qwen3-4b-esper3-i1 by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5332](https://redirect.github.com/mudler/LocalAI/pull/5332)l/5332
* chore(model gallery): add servicenow-ai_apriel-nemotron-15b-thinker by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5333](https://redirect.github.com/mudler/LocalAI/pull/5333)l/5333
* chore(model gallery): add cognition-ai_kevin-32b by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5334](https://redirect.github.com/mudler/LocalAI/pull/5334)l/5334
* chore(model gallery): add qwen3-14b-uncensored by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5335](https://redirect.github.com/mudler/LocalAI/pull/5335)l/5335
* chore(model gallery): add symiotic-14b-i1 by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5336](https://redirect.github.com/mudler/LocalAI/pull/5336)l/5336
* chore(model gallery): add gemma-3-12b-fornaxv.2-qat-cot by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5337](https://redirect.github.com/mudler/LocalAI/pull/5337)l/5337
* chore(model-gallery): ⬆️ update checksum by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/5346](https://redirect.github.com/mudler/LocalAI/pull/5346)l/5346
* chore(model gallery): add gryphe_pantheon-proto-rp-1.8-30b-a3b by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5347](https://redirect.github.com/mudler/LocalAI/pull/5347)l/5347
* chore(model gallery): add qwen_qwen2.5-vl-7b-instruct by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5348](https://redirect.github.com/mudler/LocalAI/pull/5348)l/5348
* chore(model gallery): add qwen_qwen2.5-vl-72b-instruct by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5349](https://redirect.github.com/mudler/LocalAI/pull/5349)l/5349

##### 📖 Documentation and examples
* chore(docs): improve installer.sh docs by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5232](https://redirect.github.com/mudler/LocalAI/pull/5232)l/5232
* docs(Vulkan): Add GPU docker documentation for Vulkan by
@&#8203;sredm[https://github.com/mudler/LocalAI/pull/5255](https://redirect.github.com/mudler/LocalAI/pull/5255)l/5255
* docs: update docs for DisableWebUI flag by
@&#8203;Mohit-Ga[https://github.com/mudler/LocalAI/pull/5256](https://redirect.github.com/mudler/LocalAI/pull/5256)l/5256
* fix(CUDA):Add note for how to run CUDA with SELinux by
@&#8203;sredm[https://github.com/mudler/LocalAI/pull/5259](https://redirect.github.com/mudler/LocalAI/pull/5259)l/5259

##### 👒 Dependencies
* chore: ⬆️ Update ggml-org/llama.cpp to
`80f19b41869728eeb6a26569957b92a773a2b2c6` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/5183](https://redirect.github.com/mudler/LocalAI/pull/5183)l/5183
* chore: ⬆️ Update ggml-org/llama.cpp to
`015022bb53387baa8b23817ac03743705c7d472b` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/5192](https://redirect.github.com/mudler/LocalAI/pull/5192)l/5192
* chore: ⬆️ Update ggml-org/llama.cpp to
`2f74c354c0f752ed9aabf7d3a350e6edebd7e744` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/5203](https://redirect.github.com/mudler/LocalAI/pull/5203)l/5203
* chore: ⬆️ Update ggml-org/llama.cpp to
`6408210082cc0a61b992b487be7e2ff2efbb9e36` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/5211](https://redirect.github.com/mudler/LocalAI/pull/5211)l/5211
* chore: ⬆️ Update ggml-org/llama.cpp to
`00137157fca3d17b90380762b4d7cc158d385bd3` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/5218](https://redirect.github.com/mudler/LocalAI/pull/5218)l/5218
* chore: ⬆️ Update ggml-org/llama.cpp to
`6602304814e679cc8c162bb760a034aceb4f8965` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/5228](https://redirect.github.com/mudler/LocalAI/pull/5228)l/5228
* chore: ⬆️ Update ggml-org/llama.cpp to
`1d735c0b4fa0551c51c2f4ac888dd9a01f447985` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/5233](https://redirect.github.com/mudler/LocalAI/pull/5233)l/5233
* chore(deps): bump mxschmitt/action-tmate from 3.19 to 3.21 by
@&#8203;dependab[https://github.com/mudler/LocalAI/pull/5231](https://redirect.github.com/mudler/LocalAI/pull/5231)l/5231
* chore: ⬆️ Update ggml-org/llama.cpp to
`658987cfc9d752dca7758987390d5fb1a7a0a54a` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/5234](https://redirect.github.com/mudler/LocalAI/pull/5234)l/5234
* chore: ⬆️ Update ggml-org/llama.cpp to
`ecda2ec4b347031a9b8a89ee2efc664ce63f599c` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/5238](https://redirect.github.com/mudler/LocalAI/pull/5238)l/5238
* chore: ⬆️ Update ggml-org/llama.cpp to
`226251ed56b85190e18a1cca963c45b888f4953c` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/5240](https://redirect.github.com/mudler/LocalAI/pull/5240)l/5240
* chore: ⬆️ Update ggml-org/llama.cpp to
`295354ea6848a77bdee204ee1c971d9b92ffcca9` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/5245](https://redirect.github.com/mudler/LocalAI/pull/5245)l/5245
* chore: ⬆️ Update ggml-org/llama.cpp to
`77d5e9a76a7b4a8a7c5bf9cf6ebef91860123cba` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/5254](https://redirect.github.com/mudler/LocalAI/pull/5254)l/5254
* chore: ⬆️ Update ggml-org/llama.cpp to
`ced44be34290fab450f8344efa047d8a08e723b4` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/5258](https://redirect.github.com/mudler/LocalAI/pull/5258)l/5258
* chore(deps): bump appleboy/scp-action from 0.1.7 to 1.0.0 by
@&#8203;dependab[https://github.com/mudler/LocalAI/pull/5265](https://redirect.github.com/mudler/LocalAI/pull/5265)l/5265
* chore: ⬆️ Update ggml-org/llama.cpp to
`5f5e39e1ba5dbea814e41f2a15e035d749a520bc` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/5267](https://redirect.github.com/mudler/LocalAI/pull/5267)l/5267
* chore: ⬆️ Update ggml-org/llama.cpp to
`e2e1ddb93a01ce282e304431b37e60b3cddb6114` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/5278](https://redirect.github.com/mudler/LocalAI/pull/5278)l/5278
* fix: vllm missing logprobs by
@&#8203;wyattea[https://github.com/mudler/LocalAI/pull/5279](https://redirect.github.com/mudler/LocalAI/pull/5279)l/5279
* chore: ⬆️ Update ggml-org/llama.cpp to
`3e168bede4d27b35656ab8026015b87659ecbec2` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/5284](https://redirect.github.com/mudler/LocalAI/pull/5284)l/5284
* chore: ⬆️ Update ggml-org/llama.cpp to
`d7a14c42a1883a34a6553cbfe30da1e1b84dfd6a` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/5292](https://redirect.github.com/mudler/LocalAI/pull/5292)l/5292
* chore(deps): bump llama.cpp to
'1d36b3670b285e69e58b9d687c770a2a0a192194 by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5307](https://redirect.github.com/mudler/LocalAI/pull/5307)l/5307
* chore: ⬆️ Update ggml-org/llama.cpp to
`36667c8edcded08063ed51c7d57e9e086bbfc903` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/5300](https://redirect.github.com/mudler/LocalAI/pull/5300)l/5300
* fix: use rice when embedding large binaries by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5309](https://redirect.github.com/mudler/LocalAI/pull/5309)l/5309
* chore: ⬆️ Update ggml-org/llama.cpp to
`9fdfcdaeddd1ef57c6d041b89cd8fb7048a0f028` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/5316](https://redirect.github.com/mudler/LocalAI/pull/5316)l/5316
* chore(deps): bump mxschmitt/action-tmate from 3.21 to 3.22 by
@&#8203;dependab[https://github.com/mudler/LocalAI/pull/5319](https://redirect.github.com/mudler/LocalAI/pull/5319)l/5319
* chore(deps): bump llama.cpp to
`b34c859146630dff136943abc9852ca173a7c9d6` by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5323](https://redirect.github.com/mudler/LocalAI/pull/5323)l/5323
* chore: ⬆️ Update ggml-org/llama.cpp to
`91a86a6f354aa73a7aab7bc3d283be410fdc93a5` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/5329](https://redirect.github.com/mudler/LocalAI/pull/5329)l/5329
* chore: ⬆️ Update ggml-org/llama.cpp to
`814f795e063c257f33b921eab4073484238a151a` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/5331](https://redirect.github.com/mudler/LocalAI/pull/5331)l/5331
* chore: ⬆️ Update ggml-org/llama.cpp to
`f05a6d71a0f3dbf0730b56a1abbad41c0f42e63d` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/5340](https://redirect.github.com/mudler/LocalAI/pull/5340)l/5340
* chore(deps): bump whisper.cpp by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5338](https://redirect.github.com/mudler/LocalAI/pull/5338)l/5338
* feat: Add sycl support for whisper.cpp by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5341](https://redirect.github.com/mudler/LocalAI/pull/5341)l/5341
* chore: ⬆️ Update ggml-org/llama.cpp to
`33eff4024084d1f0c8441b79f7208a52fad79858` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/5343](https://redirect.github.com/mudler/LocalAI/pull/5343)l/5343
* chore: ⬆️ Update ggml-org/llama.cpp to
`15e6125a397f6086c1dfdf7584acdb7c730313dc` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/5345](https://redirect.github.com/mudler/LocalAI/pull/5345)l/5345
* chore: ⬆️ Update ggml-org/whisper.cpp to
`2e310b841e0b4e7cf00890b53411dd9f8578f243` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/4785](https://redirect.github.com/mudler/LocalAI/pull/4785)l/4785
* chore: ⬆️ Update ggml-org/llama.cpp to
`9a390c4829cd3058d26a2e2c09d16e3fd12bf1b1` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/5351](https://redirect.github.com/mudler/LocalAI/pull/5351)l/5351
* chore(deps): bump dependabot/fetch-metadata from 2.3.0 to 2.4.0 by
@&#8203;dependab[https://github.com/mudler/LocalAI/pull/5355](https://redirect.github.com/mudler/LocalAI/pull/5355)l/5355
* chore(deps): bump securego/gosec from 2.22.3 to 2.22.4 by
@&#8203;dependab[https://github.com/mudler/LocalAI/pull/5356](https://redirect.github.com/mudler/LocalAI/pull/5356)l/5356

##### Other Changes
* docs: ⬆️ update docs version mudler/LocalAI by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/5191](https://redirect.github.com/mudler/LocalAI/pull/5191)l/5191
* feat(swagger): update swagger by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/5217](https://redirect.github.com/mudler/LocalAI/pull/5217)l/5217
* fix(ci): add clang by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5242](https://redirect.github.com/mudler/LocalAI/pull/5242)l/5242
* chore(deps): bump grpcio to 1.72.0 by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/5244](https://redirect.github.com/mudler/LocalAI/pull/5244)l/5244
* feat(swagger): update swagger by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/5253](https://redirect.github.com/mudler/LocalAI/pull/5253)l/5253

</details>

##### New Contributors
* @&#8203;baflo made their first
contributi[https://github.com/mudler/LocalAI/pull/5200](https://redirect.github.com/mudler/LocalAI/pull/5200)l/5200
* @&#8203;Bloodis94 made their first
contributi[https://github.com/mudler/LocalAI/pull/5239](https://redirect.github.com/mudler/LocalAI/pull/5239)l/5239
* @&#8203;sredman made their first
contributi[https://github.com/mudler/LocalAI/pull/5255](https://redirect.github.com/mudler/LocalAI/pull/5255)l/5255
* @&#8203;Mohit-Gaur made their first
contributi[https://github.com/mudler/LocalAI/pull/5256](https://redirect.github.com/mudler/LocalAI/pull/5256)l/5256
* @&#8203;wyattearp made their first
contributi[https://github.com/mudler/LocalAI/pull/5279](https://redirect.github.com/mudler/LocalAI/pull/5279)l/5279

**Full Changelog**:
https://github.com/mudler/LocalAI/compare/v2.28.0...v2.29.0

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about these
updates again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Renovate
Bot](https://redirect.github.com/renovatebot/renovate).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4yMzguMCIsInVwZGF0ZWRJblZlciI6IjM5LjIzOC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
This commit is contained in:
TrueCharts Bot
2025-05-18 15:02:16 +02:00
committed by GitHub
parent ac085c5838
commit 4fcc313fa5
2 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -9,7 +9,7 @@ annotations:
truecharts.org/min_helm_version: "3.14"
truecharts.org/train: stable
apiVersion: v2
appVersion: 2.28.0
appVersion: 2.29.0
dependencies:
- name: common
version: 25.4.10
@@ -36,5 +36,5 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/local-ai
- https://hub.docker.com/r/localai/localai
type: application
version: 11.74.0
version: 11.78.0
+4 -4
View File
@@ -1,7 +1,7 @@
image:
repository: docker.io/localai/localai
pullPolicy: IfNotPresent
tag: v2.28.0@sha256:a4dd7b71bc261ef8f4510fee0ee1e7bf7a917e7f5167aa3ee64e988cc8478989
tag: v2.29.0@sha256:1dd96ee69f33cc9fdc7956f21bd071f5b0f0d5703db1f6bf28cf11bf38e585e0
ffmpegImage:
repository: docker.io/localai/localai
pullPolicy: IfNotPresent
@@ -25,15 +25,15 @@ cublasCuda11FfmpegImage:
allInOneCuda12Image:
repository: docker.io/localai/localai
pullPolicy: IfNotPresent
tag: v2.28.0-aio-gpu-nvidia-cuda-12@sha256:627674d92225f2b9f20e98ca2f4fd692efaeb12622fee17e432503b7e4c8b1af
tag: v2.29.0-aio-gpu-nvidia-cuda-12@sha256:85d5b0c2c388deca9e42a96aa23a01be327792a3cbeb5d26ce8d902927c70039
allInOneCuda11Image:
repository: docker.io/localai/localai
pullPolicy: IfNotPresent
tag: v2.28.0-aio-gpu-nvidia-cuda-11@sha256:e5d71e3ace8d850fe83b3b390fb46dba984d554440e160a5834a2fa263bf6a68
tag: v2.29.0-aio-gpu-nvidia-cuda-11@sha256:b8365ec7f36f293bd21882a4f7ba681e67db1256f66425897888927a3eea432f
allInOneCpuImage:
repository: docker.io/localai/localai
pullPolicy: IfNotPresent
tag: v2.28.0-aio-cpu@sha256:4931cc2c44743bbd3cb26be43930e8df832c84d41c8ce263d96b437e9f077f09
tag: v2.29.0-aio-cpu@sha256:de25f287a09008827104b8867f98a53b951e6534f4567388facde007717ad260
securityContext:
container:
runAsNonRoot: false