chore(helm): update image docker.io/localai/localai v3.7.0 → v3.8.0 (#42160)

This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/localai/localai](https://redirect.github.com/mudler/LocalAI)
| minor | `2613ada` -> `27eb061` |
|
[docker.io/localai/localai](https://redirect.github.com/mudler/LocalAI)
| minor | `bc0ff17` -> `277280d` |
|
[docker.io/localai/localai](https://redirect.github.com/mudler/LocalAI)
| minor | `5438e38` -> `66ae8f3` |
|
[docker.io/localai/localai](https://redirect.github.com/mudler/LocalAI)
| minor | `137dee3` -> `5a9c2d6` |

---

> [!WARNING]
> Some dependencies could not be looked up. Check the Dependency
Dashboard for more information.

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>

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

[Compare
Source](https://redirect.github.com/mudler/LocalAI/compare/v3.7.0...v3.8.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>
</h1>

Welcome to **LocalAI 3.8.0** !

LocalAI 3.8.0 focuses on smoothing out the user experience and exposing
more power to the user without requiring restarts or complex
configuration files. This release introduces a new onboarding flow and a
universal model loader that handles everything from HF URLs to local
files.

We’ve also improved the chat interface, addressed long-standing requests
regarding OpenAI API compatibility (specifically SSE streaming
standards) and exposed more granular controls for some backends
(llama.cpp) and backend management.

##### 📌 TL;DR

| Feature | Summary |
| --------------------------- |
----------------------------------------------------------------------------------------------------------------------
|
| **Universal Model Import** | Import directly from Hugging Face,
Ollama, OCI, or local paths. Auto-detects backends and handles chat
templates. |
| **UI & Index Overhaul** | New onboarding wizard, auto-model selection
on boot, and a cleaner tabular view for model management. |
| **MCP Live Streaming** | **New:** Agent actions and tool calls are now
streamed live via the Model Context Protocol—see reasoning in real-time.
|
| **Hot-Reloadable Settings** | Modify watchdogs, API keys, P2P
settings, and defaults without restarting the container. |
| **Chat enhancements** | Chat history and parallel conversations are
now persisted in local storage. |
| **Strict SSE Compliance** | Fixed streaming format to exactly match
OpenAI specs (resolves issues with LangChain/JS clients). |
| **Advanced Config** | Fine-tune `context_shift`, `cache_ram`, and
`parallel` workers via YAML options. |
| **Logprobs & Logitbias** | Added token-level probability support for
improved agent/eval workflows. |

##### Feature Breakdown

##### 🚀 Universal Model Import (URL-based)

We have refactored how models are imported. You no longer need to
manually write configuration files for common use cases. The new
importer accepts URLs from **Hugging Face, Ollama, and OCI registries**,
or local file paths also from the Web interface.


<https://github.com/user-attachments/assets/230576c2-2abe-4b20-97c0-935d4ed6e7e7>

- **Auto-Detection:** The system attempts to identify the correct
backend (e.g., `llama.cpp` vs `diffusers`) and applies native chat
templates (e.g., `llama-3`, `mistral`) automatically by reading the
model metadata.
- **Customization during Import:** You can override defaults
immediately, for example, forcing a specific quantization on a GGUF file
or selecting `vLLM` over `transformers`.
- **Multimodal Support:** Vision components (`mmproj`) are detected and
configured automatically.
- **File Safety:** We added a safeguard to prevent the deletion of model
files (blobs) if they are shared by multiple model configurations.

##### 🎨 Complete UI Overhaul

The web interface has been redesigned for better usability and clearer
management.


<https://github.com/user-attachments/assets/260a566d-8ffb-4659-b8d2-966c18b3688d>

- **Onboarding Wizard:** A guided flow helps first-time users import or
install a model in under 30 seconds.
- **Auto-Focus & Selection:** The input field captures focus
automatically, and a default model is loaded on startup so you don't
start in a "no model selected" state.
- **Tabular Management:** Models and backends are now organized in a
cleaner list view, making it easier to see what is installed.


<https://github.com/user-attachments/assets/a522d85b-9c31-4fe8-a9fa-b97c17b0bb4d>

***

##### 🤖 Agentic Ecosystem & MCP Live Streaming

LocalAI 3.8.0 significantly upgrades support for agentic workflows using
the Model Context Protocol (MCP).

- **Live Action Streaming:** We have added a new endpoint to stream
agent results as they happen. Instead of waiting for the final output,
you can now watch the agent "think": seeing tool calls, reasoning steps,
and intermediate actions streamed live in the UI.


<https://github.com/user-attachments/assets/857d62d1-183c-4e2f-ad15-63450702e3d4>

Configuring MCP via the interface is now simplified:


<https://github.com/user-attachments/assets/161387c0-5126-416d-ae3b-e2a2e4858b89>

***

##### 🔁 Runtime System Settings

A new **Settings > System** panel exposes configuration options that
previously required environment variables or a restart.


<https://github.com/user-attachments/assets/a1e3e205-1ec6-4d02-a86a-370bc24a74e5>

- **Immediate Effect:** Toggling Watchdogs, P2P, and Gallery
availability applies instantly.
- **API Key Management:** You can now generate, rotate, and expire API
keys via the UI.
- **Network:** CORS and CSRF settings are now accessible here (note:
these specific network settings still require a restart to take effect).

> Note: In order to benefit from persisting runtime settings, in older
LocalAI deployments it's necessary to mount the `/configuration`
directory from the container image.

***

##### ⚙️ Advanced `llama.cpp` Configuration

For power users running large context windows or high-throughput setups,
we've exposed additional underlying `llama.cpp` options in the YAML
config. You can now tune context shifting, RAM limits for the KV cache,
and parallel worker slots.

```yaml
options:
- context_shift:false
- cache_ram:-1
- use_jinja:true
- parallel:2
- grpc_servers:localhost:50051,localhost:50052
```

***

##### 📊 Logprobs & Logitbias Support

This release adds full support for **logitbias** and **logprobs**. This
is critical for advanced agentic logic, Self-RAG, and evaluating model
confidence / hallucination rates. It supports the OpenAI specification.

***

##### 🛠️ Fixes & Improvements

**OpenAI Compatibility:**

- **SSE Streaming:** Fixed a critical issue where streaming responses
were slightly non-compliant (e.g., sending empty content chunks or
missing `finish_reason`). This resolves integration issues with
`openai-node`, `LangChain`, and `LlamaIndex`.
- **Top\_N Behavior:** In the reranker, `top_n` can now be omitted or
set to `0` to return *all* results, rather than defaulting to an
arbitrary limit.

**General Fixes:**

- **Model Preview:** When downloading, you can now see the actual
filename and size before committing to the download.
- **Tool Handling:** Fixed crashes when tool content is missing or
malformed.
- **TTS:** Fixed dropdown selection states for TTS models.
- **Browser Storage:** Chat history is now persisted in your browser's
local storage. You can switch between parallel chats, rename them, and
export them to JSON.
- **True Cancellation:** Clicking "Stop" during a stream now correctly
propagates a cancellation context to the backend (works for `llama.cpp`,
`vLLM`, `transformers`, and `diffusers`). This immediately stops
generation and frees up resources.

***

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

<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. 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>Local AI agent management platform. 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>RESTful API and knowledge base management system providing persistent
memory and storage capabilities for AI agents. Works 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>

***

##### ❤️ Thank You

**Over 35,000 stars** and growing. LocalAI is a true FOSS movement —
built by contributors, powered by community.

If you believe in privacy-first AI:

-  **Star** the repo
- 💬 **Contribute** code, docs, or feedback
- 📣 **Share** with others

Your support keeps this stack alive.

#####  Full Changelog

<details>
<summary>📋 Click to expand full changelog</summary>

##### What's Changed
##### Bug fixes 🐛
* fix(reranker): respect `top_n` in the request by
@&#8203;mkhludn[https://github.com/mudler/LocalAI/pull/7025](https://redirect.github.com/mudler/LocalAI/pull/7025)l/7025
* fix(chatterbox): pin numpy by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/7198](https://redirect.github.com/mudler/LocalAI/pull/7198)l/7198
* fix(reranker): support omitting top_n by
@&#8203;mkhludn[https://github.com/mudler/LocalAI/pull/7199](https://redirect.github.com/mudler/LocalAI/pull/7199)l/7199
* fix(api): SSE streaming format to comply with specification by
@&#8203;Copil[https://github.com/mudler/LocalAI/pull/7182](https://redirect.github.com/mudler/LocalAI/pull/7182)l/7182
* fix(edit): propagate correctly opts when reloading by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/7233](https://redirect.github.com/mudler/LocalAI/pull/7233)l/7233
* fix(reranker): llama-cpp sort score desc, crop top_n by
@&#8203;mkhludn[https://github.com/mudler/LocalAI/pull/7211](https://redirect.github.com/mudler/LocalAI/pull/7211)l/7211
* fix: handle tool errors by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/7271](https://redirect.github.com/mudler/LocalAI/pull/7271)l/7271
* fix(reranker): tests and top_n check fix #&#8203;7212 by
@&#8203;m[https://github.com/mudler/LocalAI/pull/7284](https://redirect.github.com/mudler/LocalAI/pull/7284)AI/pull/7284
* fix the tts model dropdown to show the currently selected model by
@&#8203;Eri[https://github.com/mudler/LocalAI/pull/7306](https://redirect.github.com/mudler/LocalAI/pull/7306)l/7306
* fix: do not delete files if used by other configured models by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/7235](https://redirect.github.com/mudler/LocalAI/pull/7235)l/7235
* fix(llama.cpp): handle corner cases with tool content by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/7324](https://redirect.github.com/mudler/LocalAI/pull/7324)l/7324

##### Exciting New Features 🎉
* feat(llama.cpp): allow to set cache-ram and ctx_shift by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/7009](https://redirect.github.com/mudler/LocalAI/pull/7009)l/7009
* chore: show success toast when system prompt is updated by
@&#8203;shohidulba[https://github.com/mudler/LocalAI/pull/7131](https://redirect.github.com/mudler/LocalAI/pull/7131)l/7131
* feat(llama.cpp): consolidate options and respect tokenizer template
when enabled by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/7120](https://redirect.github.com/mudler/LocalAI/pull/7120)l/7120
* feat: respect context and add request cancellation by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/7187](https://redirect.github.com/mudler/LocalAI/pull/7187)l/7187
* feat(ui): add wizard when p2p is disabled by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/7218](https://redirect.github.com/mudler/LocalAI/pull/7218)l/7218
* feat(ui): chat stats, small visual enhancements by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/7223](https://redirect.github.com/mudler/LocalAI/pull/7223)l/7223
* chore: display file names in model preview by
@&#8203;shohidulba[https://github.com/mudler/LocalAI/pull/7251](https://redirect.github.com/mudler/LocalAI/pull/7251)l/7251
* feat: import models via URI by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/7245](https://redirect.github.com/mudler/LocalAI/pull/7245)l/7245
* chore(importers): small logic enhancements by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/7262](https://redirect.github.com/mudler/LocalAI/pull/7262)l/7262
* feat(ui): allow to cancel ops by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/7264](https://redirect.github.com/mudler/LocalAI/pull/7264)l/7264
* feat: migrate to echo and enable cancellation of non-streaming
requests by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/7270](https://redirect.github.com/mudler/LocalAI/pull/7270)l/7270
* feat(mcp): add LocalAI endpoint to stream live results of the agent by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/7274](https://redirect.github.com/mudler/LocalAI/pull/7274)l/7274
* chore: do not use placeholder image by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/7279](https://redirect.github.com/mudler/LocalAI/pull/7279)l/7279
* chore: guide the user to import models by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/7280](https://redirect.github.com/mudler/LocalAI/pull/7280)l/7280
* chore(ui): import vendored libs by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/7281](https://redirect.github.com/mudler/LocalAI/pull/7281)l/7281
* feat(importers): add transformers and vLLM by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/7278](https://redirect.github.com/mudler/LocalAI/pull/7278)l/7278
* feat: restyle index by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/7282](https://redirect.github.com/mudler/LocalAI/pull/7282)l/7282
* feat: add support to logitbias and logprobs by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/7283](https://redirect.github.com/mudler/LocalAI/pull/7283)l/7283
* feat(ui): small refinements by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/7285](https://redirect.github.com/mudler/LocalAI/pull/7285)l/7285
* feat(index): minor enhancements by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/7288](https://redirect.github.com/mudler/LocalAI/pull/7288)l/7288
* chore: scroll in thinking mode, better buttons placement by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/7289](https://redirect.github.com/mudler/LocalAI/pull/7289)l/7289
* chore: small ux enhancements by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/7290](https://redirect.github.com/mudler/LocalAI/pull/7290)l/7290
* feat(ui): add backend reinstall button by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/7305](https://redirect.github.com/mudler/LocalAI/pull/7305)l/7305
* feat(importer): unify importing code with CLI by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/7299](https://redirect.github.com/mudler/LocalAI/pull/7299)l/7299
* feat(ui): runtime settings by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/7320](https://redirect.github.com/mudler/LocalAI/pull/7320)l/7320
* feat(importers): Add diffuser backend importer with ginkgo tests and
UI support by
@&#8203;Copil[https://github.com/mudler/LocalAI/pull/7316](https://redirect.github.com/mudler/LocalAI/pull/7316)l/7316
* feat(ui): add chat history by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/7325](https://redirect.github.com/mudler/LocalAI/pull/7325)l/7325
* feat(inpainting): add inpainting endpoint, wire ImageGenerationFunc
and return generated image URL by
@&#8203;gmaOC[https://github.com/mudler/LocalAI/pull/7328](https://redirect.github.com/mudler/LocalAI/pull/7328)l/7328

##### 🧠 Models
* chore(model-gallery): ⬆️ update checksum by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/6972](https://redirect.github.com/mudler/LocalAI/pull/6972)l/6972
* chore(model gallery): 🤖 add 1 new models via gallery agent by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/6982](https://redirect.github.com/mudler/LocalAI/pull/6982)l/6982
* chore(model gallery): 🤖 add 1 new models via gallery agent by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/6989](https://redirect.github.com/mudler/LocalAI/pull/6989)l/6989
* chore(model gallery): 🤖 add 1 new models via gallery agent by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/7017](https://redirect.github.com/mudler/LocalAI/pull/7017)l/7017
* chore(model-gallery): ⬆️ update checksum by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/7024](https://redirect.github.com/mudler/LocalAI/pull/7024)l/7024
* chore(model gallery): 🤖 add 1 new models via gallery agent by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/7039](https://redirect.github.com/mudler/LocalAI/pull/7039)l/7039
* chore(model gallery): 🤖 add 1 new models via gallery agent by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/7040](https://redirect.github.com/mudler/LocalAI/pull/7040)l/7040
* chore(model gallery): 🤖 add 1 new models via gallery agent by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/7068](https://redirect.github.com/mudler/LocalAI/pull/7068)l/7068
* chore(model gallery): 🤖 add 1 new models via gallery agent by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/7077](https://redirect.github.com/mudler/LocalAI/pull/7077)l/7077
* chore(model gallery): 🤖 add 1 new models via gallery agent by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/7127](https://redirect.github.com/mudler/LocalAI/pull/7127)l/7127
* chore(model gallery): 🤖 add 1 new models via gallery agent by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/7133](https://redirect.github.com/mudler/LocalAI/pull/7133)l/7133
* chore(model gallery): 🤖 add 1 new models via gallery agent by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/7162](https://redirect.github.com/mudler/LocalAI/pull/7162)l/7162
* chore(model gallery): 🤖 add 1 new models via gallery agent by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/7205](https://redirect.github.com/mudler/LocalAI/pull/7205)l/7205
* chore(model gallery): 🤖 add 1 new models via gallery agent by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/7216](https://redirect.github.com/mudler/LocalAI/pull/7216)l/7216
* chore(model gallery): 🤖 add 1 new models via gallery agent by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/7237](https://redirect.github.com/mudler/LocalAI/pull/7237)l/7237
* chore(model-gallery): ⬆️ update checksum by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/7248](https://redirect.github.com/mudler/LocalAI/pull/7248)l/7248

##### 📖 Documentation and examples
* feat: docs revamp by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/7313](https://redirect.github.com/mudler/LocalAI/pull/7313)l/7313
* fix: Update Installer Options URL by
@&#8203;filipeaaolivei[https://github.com/mudler/LocalAI/pull/7330](https://redirect.github.com/mudler/LocalAI/pull/7330)l/7330

##### 👒 Dependencies
* chore(deps): bump github.com/mudler/cogito from 0.4.0 to 0.5.0 by
@&#8203;dependabot[bo[https://github.com/mudler/LocalAI/pull/7054](https://redirect.github.com/mudler/LocalAI/pull/7054)l/7054
* chore(deps): bump github.com/onsi/ginkgo/v2 from 2.26.0 to 2.27.2 by
@&#8203;dependabot[bo[https://github.com/mudler/LocalAI/pull/7056](https://redirect.github.com/mudler/LocalAI/pull/7056)l/7056
* chore(deps): bump github.com/modelcontextprotocol/go-sdk from 1.0.0 to
1.1.0 by
@&#8203;dependabot[bo[https://github.com/mudler/LocalAI/pull/7053](https://redirect.github.com/mudler/LocalAI/pull/7053)l/7053
* chore(deps): bump github.com/valyala/fasthttp from 1.55.0 to 1.68.0 by
@&#8203;dependabot[bo[https://github.com/mudler/LocalAI/pull/7057](https://redirect.github.com/mudler/LocalAI/pull/7057)l/7057
* chore(deps): bump github.com/mudler/edgevpn from 0.31.0 to 0.31.1 by
@&#8203;dependabot[bo[https://github.com/mudler/LocalAI/pull/7055](https://redirect.github.com/mudler/LocalAI/pull/7055)l/7055
* chore(deps): bump github.com/containerd/containerd from 1.7.28 to
1.7.29 in the go_modules group across 1 directory by
@&#8203;dependabot[bo[https://github.com/mudler/LocalAI/pull/7149](https://redirect.github.com/mudler/LocalAI/pull/7149)l/7149
* chore(deps): bump appleboy/ssh-action from 1.2.2 to 1.2.3 by
@&#8203;dependabot[bo[https://github.com/mudler/LocalAI/pull/7224](https://redirect.github.com/mudler/LocalAI/pull/7224)l/7224
* chore(deps): bump github.com/mudler/cogito from 0.5.0 to 0.5.1 by
@&#8203;dependabot[bo[https://github.com/mudler/LocalAI/pull/7226](https://redirect.github.com/mudler/LocalAI/pull/7226)l/7226
* chore(deps): bump github.com/jaypipes/ghw from 0.19.1 to 0.20.0 by
@&#8203;dependabot[bo[https://github.com/mudler/LocalAI/pull/7227](https://redirect.github.com/mudler/LocalAI/pull/7227)l/7227
* chore(deps): bump github.com/docker/docker from 28.5.1+incompatible to
28.5.2+incompatible by
@&#8203;dependabot[bo[https://github.com/mudler/LocalAI/pull/7228](https://redirect.github.com/mudler/LocalAI/pull/7228)l/7228
* chore(deps): bump github.com/testcontainers/testcontainers-go from
0.38.0 to 0.40.0 by
@&#8203;dependabot[bo[https://github.com/mudler/LocalAI/pull/7230](https://redirect.github.com/mudler/LocalAI/pull/7230)l/7230
* chore(deps): bump github.com/ebitengine/purego from 0.9.0 to 0.9.1 by
@&#8203;dependabot[bo[https://github.com/mudler/LocalAI/pull/7229](https://redirect.github.com/mudler/LocalAI/pull/7229)l/7229
* chore(deps): bump fyne.io/fyne/v2 from 2.7.0 to 2.7.1 by
@&#8203;dependabot[bo[https://github.com/mudler/LocalAI/pull/7293](https://redirect.github.com/mudler/LocalAI/pull/7293)l/7293
* chore(deps): bump go.yaml.in/yaml/v2 from 2.4.2 to 2.4.3 by
@&#8203;dependabot[bo[https://github.com/mudler/LocalAI/pull/7294](https://redirect.github.com/mudler/LocalAI/pull/7294)l/7294
* chore(deps): bump github.com/alecthomas/kong from 1.12.1 to 1.13.0 by
@&#8203;dependabot[bo[https://github.com/mudler/LocalAI/pull/7296](https://redirect.github.com/mudler/LocalAI/pull/7296)l/7296
* chore(deps): bump google.golang.org/protobuf from 1.36.8 to 1.36.10 by
@&#8203;dependabot[bo[https://github.com/mudler/LocalAI/pull/7295](https://redirect.github.com/mudler/LocalAI/pull/7295)l/7295
* chore(deps): bump golang.org/x/crypto from 0.43.0 to 0.45.0 in the
go_modules group across 1 directory by
@&#8203;dependabot[bo[https://github.com/mudler/LocalAI/pull/7319](https://redirect.github.com/mudler/LocalAI/pull/7319)l/7319

##### Other Changes
* docs: ⬆️ update docs version mudler/LocalAI by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/6996](https://redirect.github.com/mudler/LocalAI/pull/6996)l/6996
* chore: ⬆️ Update ggml-org/whisper.cpp to
`999a7e0cbf8484dc2cea1e9f855d6b39f34f7ae9` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/6997](https://redirect.github.com/mudler/LocalAI/pull/6997)l/6997
* chore: ⬆️ Update ggml-org/llama.cpp to
`2f68ce7cfd20e9e7098514bf730e5389b7bba908` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/6998](https://redirect.github.com/mudler/LocalAI/pull/6998)l/6998
* chore: ⬆️ Update ggml-org/llama.cpp to
`cd5e3b57541ecc52421130742f4d89acbcf77cd4` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/7023](https://redirect.github.com/mudler/LocalAI/pull/7023)l/7023
* chore: display warning only when directory is present by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/7050](https://redirect.github.com/mudler/LocalAI/pull/7050)l/7050
* chore: ⬆️ Update ggml-org/llama.cpp to
`c5023daf607c578d6344c628eb7da18ac3d92d32` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/7069](https://redirect.github.com/mudler/LocalAI/pull/7069)l/7069
* chore: ⬆️ Update ggml-org/llama.cpp to
`ad51c0a720062a04349c779aae301ad65ca4c856` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/7098](https://redirect.github.com/mudler/LocalAI/pull/7098)l/7098
* chore: ⬆️ Update ggml-org/llama.cpp to
`a44d77126c911d105f7f800c17da21b2a5b112d1` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/7125](https://redirect.github.com/mudler/LocalAI/pull/7125)l/7125
* chore: ⬆️ Update ggml-org/llama.cpp to
`7f09a680af6e0ef612de81018e1d19c19b8651e8` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/7156](https://redirect.github.com/mudler/LocalAI/pull/7156)l/7156
* chore: use air to live reload in dev environment by
@&#8203;shohidulba[https://github.com/mudler/LocalAI/pull/7186](https://redirect.github.com/mudler/LocalAI/pull/7186)l/7186
* chore: ⬆️ Update ggml-org/llama.cpp to
`65156105069fa86a4a81b6cb0e8cb583f6420677` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/7184](https://redirect.github.com/mudler/LocalAI/pull/7184)l/7184
* chore: ⬆️ Update ggml-org/llama.cpp to
`333f2595a3e0e4c0abf233f2f29ef1710acd134d` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/7201](https://redirect.github.com/mudler/LocalAI/pull/7201)l/7201
* chore: ⬆️ Update ggml-org/llama.cpp to
`b8595b16e69e3029e06be3b8f6635f9812b2bc3f` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/7210](https://redirect.github.com/mudler/LocalAI/pull/7210)l/7210
* chore: ⬆️ Update ggml-org/whisper.cpp to
`a1867e0dad0b21b35afa43fc815dae60c9a139d6` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/7231](https://redirect.github.com/mudler/LocalAI/pull/7231)l/7231
* chore: ⬆️ Update ggml-org/llama.cpp to
`13730c183b9e1a32c09bf132b5367697d6c55048` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/7232](https://redirect.github.com/mudler/LocalAI/pull/7232)l/7232
* chore: ⬆️ Update ggml-org/llama.cpp to
`7d019cff744b73084b15ca81ba9916f3efab1223` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/7247](https://redirect.github.com/mudler/LocalAI/pull/7247)l/7247
* feat(swagger): update swagger by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/7267](https://redirect.github.com/mudler/LocalAI/pull/7267)l/7267
* chore: ⬆️ Update ggml-org/whisper.cpp to
`d9b7613b34a343848af572cc14467fc5e82fc788` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/7268](https://redirect.github.com/mudler/LocalAI/pull/7268)l/7268
* chore(deps): bump llama.cpp to
`c4abcb2457217198efdd67d02675f5fddb7071c2` by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/7266](https://redirect.github.com/mudler/LocalAI/pull/7266)l/7266
* chore: ⬆️ Update ggml-org/llama.cpp to
`9b17d74ab7d31cb7d15ee7eec1616c3d825a84c0` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/7273](https://redirect.github.com/mudler/LocalAI/pull/7273)l/7273
* feat(swagger): update swagger by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/7276](https://redirect.github.com/mudler/LocalAI/pull/7276)l/7276
* chore: ⬆️ Update ggml-org/llama.cpp to
`662192e1dcd224bc25759aadd0190577524c6a66` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/7277](https://redirect.github.com/mudler/LocalAI/pull/7277)l/7277
* feat(swagger): update swagger by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/7286](https://redirect.github.com/mudler/LocalAI/pull/7286)l/7286
* chore: ⬆️ Update ggml-org/llama.cpp to
`80deff3648b93727422461c41c7279ef1dac7452` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/7287](https://redirect.github.com/mudler/LocalAI/pull/7287)l/7287
* chore(docs): improve documentation and split into sections bigger
topics by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/7292](https://redirect.github.com/mudler/LocalAI/pull/7292)l/7292
* chore: ⬆️ Update ggml-org/whisper.cpp to
`b12abefa9be2abae39a73fa903322af135024a36` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/7300](https://redirect.github.com/mudler/LocalAI/pull/7300)l/7300
* chore: ⬆️ Update ggml-org/llama.cpp to
`cb623de3fc61011e5062522b4d05721a22f2e916` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/7301](https://redirect.github.com/mudler/LocalAI/pull/7301)l/7301
* chore(deps): bump llama.cpp to
'10e9780154365b191fb43ca4830659ef12def80f by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/7311](https://redirect.github.com/mudler/LocalAI/pull/7311)l/7311
* chore: ⬆️ Update ggml-org/llama.cpp to
`7d77f07325985c03a91fa371d0a68ef88a91ec7f` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/7314](https://redirect.github.com/mudler/LocalAI/pull/7314)l/7314
* chore: ⬆️ Update ggml-org/whisper.cpp to
`19ceec8eac980403b714d603e5ca31653cd42a3f` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/7321](https://redirect.github.com/mudler/LocalAI/pull/7321)l/7321
* chore(docs): add documentation about import by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/7315](https://redirect.github.com/mudler/LocalAI/pull/7315)l/7315
* chore: ⬆️ Update ggml-org/llama.cpp to
`dd0f3219419b24740864b5343958a97e1b3e4b26` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/7322](https://redirect.github.com/mudler/LocalAI/pull/7322)l/7322
* chore(chatterbox): bump l4t index to support more recent pytorch by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/7332](https://redirect.github.com/mudler/LocalAI/pull/7332)l/7332
* chore: ⬆️ Update ggml-org/llama.cpp to
`23bc779a6e58762ea892eca1801b2ea1b9050c00` by
@&#8203;localai-b[https://github.com/mudler/LocalAI/pull/7331](https://redirect.github.com/mudler/LocalAI/pull/7331)l/7331
* Revert "chore(chatterbox): bump l4t index to support more recent
pytorch" by
@&#8203;mudl[https://github.com/mudler/LocalAI/pull/7333](https://redirect.github.com/mudler/LocalAI/pull/7333)l/7333

</details>

##### New Contributors
* @&#8203;shohidulbari made their first
contributi[https://github.com/mudler/LocalAI/pull/7131](https://redirect.github.com/mudler/LocalAI/pull/7131)l/7131
* @&#8203;mkhludnev made their first
contributi[https://github.com/mudler/LocalAI/pull/7025](https://redirect.github.com/mudler/LocalAI/pull/7025)l/7025
* @&#8203;ErixM made their first
contributi[https://github.com/mudler/LocalAI/pull/7306](https://redirect.github.com/mudler/LocalAI/pull/7306)l/7306
* @&#8203;filipeaaoliveira made their first
contributi[https://github.com/mudler/LocalAI/pull/7330](https://redirect.github.com/mudler/LocalAI/pull/7330)l/7330

**Full Changelog**:
<https://github.com/mudler/LocalAI/compare/v3.7.0...v3.8.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:eyJjcmVhdGVkSW5WZXIiOiI0Mi4xNy4wIiwidXBkYXRlZEluVmVyIjoiNDIuMTcuMCIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL21pbm9yIl19-->
This commit is contained in:
TrueCharts Bot
2025-11-27 02:19:54 +01:00
committed by GitHub
parent cb0e5fd000
commit fd3d1b837a
2 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -11,7 +11,7 @@ annotations:
truecharts.org/min_kubernetes_version: 1.24.0 truecharts.org/min_kubernetes_version: 1.24.0
truecharts.org/train: stable truecharts.org/train: stable
apiVersion: v2 apiVersion: v2
appVersion: 3.7.0 appVersion: 3.8.0
dependencies: dependencies:
- name: common - name: common
version: 28.27.4 version: 28.27.4
@@ -38,5 +38,5 @@ sources:
- https://github.com/trueforge-org/truecharts/tree/master/charts/stable/local-ai - https://github.com/trueforge-org/truecharts/tree/master/charts/stable/local-ai
- https://hub.docker.com/r/localai/localai - https://hub.docker.com/r/localai/localai
type: application type: application
version: 16.36.0 version: 16.40.0
+4 -4
View File
@@ -1,7 +1,7 @@
image: image:
repository: docker.io/localai/localai repository: docker.io/localai/localai
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: v3.7.0@sha256:137dee320c6ca9d356255dfd2238d40dd26aa3f10e8e48bceda4dae36eefed09 tag: v3.8.0@sha256:5a9c2d6d2aac1a371e762b52d354c024c897f7c2ab683ebf3d73346e9e1558cd
ffmpegImage: ffmpegImage:
repository: docker.io/localai/localai repository: docker.io/localai/localai
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
@@ -25,15 +25,15 @@ cublasCuda11FfmpegImage:
allInOneCuda12Image: allInOneCuda12Image:
repository: docker.io/localai/localai repository: docker.io/localai/localai
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: v3.7.0-aio-gpu-nvidia-cuda-12@sha256:5438e389dbeb528bcf1af9b5011a969ee8cb869effc1e2074bc8a632e2a5e28e tag: v3.8.0-aio-gpu-nvidia-cuda-12@sha256:66ae8f343676b727aca4989094a412b09e27f2875bde5aed830521138f656093
allInOneCuda11Image: allInOneCuda11Image:
repository: docker.io/localai/localai repository: docker.io/localai/localai
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: v3.7.0-aio-gpu-nvidia-cuda-11@sha256:bc0ff1782ab11e6ec470a046392872073d0c6f3fa6ec3ceeba231699cadc61c1 tag: v3.8.0-aio-gpu-nvidia-cuda-11@sha256:277280d4d9063baee3ecc6d5e8ea24c92a51af595e152874feb1ade58e8a7a9a
allInOneCpuImage: allInOneCpuImage:
repository: docker.io/localai/localai repository: docker.io/localai/localai
pullPolicy: IfNotPresent pullPolicy: IfNotPresent
tag: v3.7.0-aio-cpu@sha256:2613ada7b891907fab705f036de15e4d4cd298926f6304c2e533429d3a9e3533 tag: v3.8.0-aio-cpu@sha256:27eb061e4e6ba4aad5a05903501abd35936917304f28e11b133a363b313d0707
securityContext: securityContext:
container: container:
runAsNonRoot: false runAsNonRoot: false