TrueCharts Bot fd3d1b837a 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-->
2025-11-27 02:19:54 +01:00
2025-11-26 19:21:41 +01:00

title
title
TrueCharts

Community Helm Chart Catalog

docs Discord GitHub last commit


TrueCharts is a catalog of highly optimised Helm Charts. Made for the community, by the community!

All our charts are supposed to work together and be easy to setup using any helm-compatible deployment tool, above all, give the average user more than enough options to tune things to their liking.


Getting started using TrueCharts

docs


Support

Please check our FAQ, manual and Issue tracker There is a significant chance your issue has been reported before!

Still something not working as expected? Contact us! and we'll figure it out together!

Development

pre-commit renovate GitHub last commit


Our development process is fully distributed and agile, so every chart-maintainer is free to set their own roadmap and development speed and does not have to comply to a centralised roadmap. This ensures freedom and flexibility for everyone involved and makes sure you, the end user, always has the latest and greatest of every Chart installed.

Getting into creating Charts

For more information check the website: https://truecharts.org

Contact and Support

Discord


To contact the TrueCharts project:




Contributors

All Contributors

Thanks goes to these wonderful people (emoji key):


Kjeld Schouten-Lebbing
Kjeld Schouten-Lebbing

💻 🚇 📖 👀 💵
Justin Clift
Justin Clift

📖
whiskerz007
whiskerz007

💻
Stavros Kois
Stavros Kois

💻 📖 🐛 👀 💵
allen-4
allen-4

💻
Troy Prelog
Troy Prelog

💻 📖 💵
Dan Sheridan
Dan Sheridan

💻
Sebastien Dupont
Sebastien Dupont

📖 💵
Vegetto
Vegetto

👀
Ellie Nieuwdorp
Ellie Nieuwdorp

💻
Nate Walck
Nate Walck

💻
Lloyd
Lloyd

💻 💵
Dave Withnall
Dave Withnall

📖
ksimm1
ksimm1

📖 🐛 💵 🧑‍🏫
Aaron Johnson
Aaron Johnson

📖
Ralph
Ralph

💻
Joachim Baten
Joachim Baten

💻 🐛
Michael Yang
Michael Yang

💻
Ciaran Farley
Ciaran Farley

📖
Heavybullets8
Heavybullets8

📖 💻 🐛 📹 🧑‍🏫 💵
662
662

💻
alex171
alex171

📖
Techno Tim
Techno Tim

📖
Mingyao Liu
Mingyao Liu

💻 🐛
NightShaman
NightShaman

💻 📖 🐛 💵 🧑‍🏫
Andrew Smith
Andrew Smith

📖 ⚠️
Bob Klosinski
Bob Klosinski

💻
Sukarn
Sukarn

💻 📖
sebs
sebs

💻
Dyllan Tinoco
Dyllan Tinoco

💻
StevenMcElligott
StevenMcElligott

💻 💵 📖 🐛 🧑‍🏫
brothergomez
brothergomez

💻 🐛
sagit
sagit

💻 🐛 📹 📖 🧑‍🏫
Nevan Chow
Nevan Chow

💻
Daniel Carlsson
Daniel Carlsson

🐛
Devon Louie
Devon Louie

🐛
Alex-Orsholits
Alex-Orsholits

🐛
Tails32
Tails32

🐛
Menaxerius
Menaxerius

🐛
hidefog
hidefog

🐛
Darren Gibbard
Darren Gibbard

🐛
Barti
Barti

🐛
Sunii
Sunii

🐛
trbmchs
trbmchs

🐛
Light
Light

🐛
Boostflow
Boostflow

🐛
Trigardon
Trigardon

🐛
dbb12345
dbb12345

🐛 💻
karypid
karypid

🐛
Philipp
Philipp

🐛
John
John

🐛 📖
John Parton
John Parton

🐛
Marc
Marc

🐛
fdzaebel
fdzaebel

🐛
kloeckwerx
kloeckwerx

🐛
Bradley Bare
Bradley Bare

🐛
Alexander Thamm
Alexander Thamm

🐛
rexit1982
rexit1982

🐛
iaxx
iaxx

🐛
Xstar97
Xstar97

💻 🐛 🧑‍🏫
ornias
ornias

📹
Josh Asplund
Josh Asplund

💵
midnight33233
midnight33233

💵
kbftech
kbftech

💵
hogenf
hogenf

💵
Hawks
Hawks

💵
Jim Russell
Jim Russell

💵
TheGovnah
TheGovnah

💵
famewolf
famewolf

💵 🐛
Konrad Bujak
Konrad Bujak

📖
190n
190n

💻 📖
Alexej Kubarev
Alexej Kubarev

📖
r-vanooyen
r-vanooyen

📖
shadofall
shadofall

📖 🧑‍🏫
agreppin
agreppin

💻
Stavros Ntentos
Stavros Ntentos

💻 🤔
Vlad-Florin Ilie
Vlad-Florin Ilie

💻
huma2000
huma2000

🐛
hugalafutro
hugalafutro

🐛 💵
yehia Amer
yehia Amer

📖
Tyler Stransky
Tyler Stransky

🐛
juggie
juggie

🐛
Ben Tilford
Ben Tilford

🐛 💻
I-nebukad-I
I-nebukad-I

🐛 💻
Ethan Leisinger
Ethan Leisinger

💻 📖
Cullen Murphy
Cullen Murphy

💻 🐛
Jason Thatcher
Jason Thatcher

💻 🐛 📖
Stefan Schramek
Stefan Schramek

🐛
nokaka
nokaka

🐛
Gal Szkolnik
Gal Szkolnik

🐛
Evgeny Stepanovych
Evgeny Stepanovych

🐛
Waqar Ahmed
Waqar Ahmed

🐛
DrSKiZZ
DrSKiZZ

💵
Jan Puciłowski
Jan Puciłowski

💻 ⚠️
Shaun Coyne
Shaun Coyne

💵
Christoph
Christoph

💵
Brandon Rutledge
Brandon Rutledge

🐛
Michael Bestas
Michael Bestas

🐛
Jurģis Rudaks
Jurģis Rudaks

🐛
brunofatia
brunofatia

💵
TopicsLP
TopicsLP

📖
Michael Schnerring
Michael Schnerring

🐛 💻
Tamas Nagy
Tamas Nagy

🐛
OpenSpeedTest™️
OpenSpeedTest™️

💻
Richard James Acton
Richard James Acton

📖
lps-rocks
lps-rocks

🐛
Faust
Faust

🐛
uranderu
uranderu

🐛
Tom Cassady
Tom Cassady

🐛
Huftierchen
Huftierchen

🐛
ZasX
ZasX

📖 🧑‍🏫 💻
Kevin T.
Kevin T.

🐛
Steven Scott
Steven Scott

📖
Watteel Pascal
Watteel Pascal

💻
JamesOsborn-SE
JamesOsborn-SE

💻 📖
NeoToxic
NeoToxic

🧑‍🏫 🐛
jab416171
jab416171

📖
Anna
Anna

📖
ChaosBlades
ChaosBlades

🐛
Patric Stout
Patric Stout

💻
Ben Kochie
Ben Kochie

💻
Jeff Bachtel
Jeff Bachtel

📖
Ben Woods
Ben Woods

💻
Karl Shea
Karl Shea

🐛
Balakumaran MN
Balakumaran MN

📖
Jesperbelt
Jesperbelt

📖
cccs31
cccs31

🐛
Sam Smucny
Sam Smucny

💻
Keith Cirkel
Keith Cirkel

💻
mgale456
mgale456

💻
Alec Fenichel
Alec Fenichel

💻
John Dorman
John Dorman

💻
Dan
Dan

💻
u4ium
u4ium

📖
ErroneousBosch
ErroneousBosch

🐛
MaverickD650
MaverickD650

💻 🐛
Grogdor
Grogdor

📖
Ryan Gooler
Ryan Gooler

📖
Rob Herley
Rob Herley

📖
Christian Heimlich
Christian Heimlich

📖
l-moon-git
l-moon-git

💻
hughes5
hughes5

📖
sdimovv
sdimovv

💻
AllieQpzm
AllieQpzm

💻
Dominik
Dominik

🐛
renovate[bot]
renovate[bot]

🔧
allcontributors[bot]
allcontributors[bot]

🔧
dependabot[bot]
dependabot[bot]

🔧
TrueCharts Bot
TrueCharts Bot

🔧 🚇 💻
Mend Renovate
Mend Renovate

🔧
Simone
Simone

💻
Jean-François Roy
Jean-François Roy

💻
Whiskey24
Whiskey24

💻
inmanturbo
inmanturbo

📖
Alex
Alex

💻
Brian Semrad
Brian Semrad

💻
Christopher
Christopher

💻 📖
Csaba Engedi
Csaba Engedi

💻
Cyb3rzombie
Cyb3rzombie

💻
Eric Cavalcanti
Eric Cavalcanti

💻
Gavin Chappell
Gavin Chappell

💻 🐛
raynay-r
raynay-r

💻
Jip-Hop
Jip-Hop

📖
Jonas Wrede
Jonas Wrede

💻
SilentNyte
SilentNyte

📖
Stan
Stan

💻
Tiago Gaspar
Tiago Gaspar

💻
gismo2004
gismo2004

💻
jsegaert
jsegaert

📖
Miguel Angel Nubla
Miguel Angel Nubla

💻
xal3xhx
xal3xhx

💻
jeremybox
jeremybox

📖
Cameron Sabuda
Cameron Sabuda

📖
Jeroen Schepens
Jeroen Schepens

🐛
James Wright
James Wright

📖
Malpractis
Malpractis

🐛
CommanderStarhump
CommanderStarhump

🐛
Vianchiel
Vianchiel

🐛
Maximilian Ehlers
Maximilian Ehlers

🐛
nautilus7
nautilus7

🐛 💻
kqmaverick
kqmaverick

🐛
ccalby
ccalby

🐛
kofeyh
kofeyh

🐛
imjustleaving
imjustleaving

🐛
Cristian Torres
Cristian Torres

🐛
schopenhauer
schopenhauer

🐛
Zackptg5
Zackptg5

🐛
Brad Ackerman
Brad Ackerman

🐛
mcspiff313
mcspiff313

🐛
Fletcher Nichol
Fletcher Nichol

💻 🐛
Marco Faggian
Marco Faggian

💻
John P
John P

📖
kryojenik
kryojenik

💻
Malcolm
Malcolm

📖
depasseg
depasseg

📖
j1mbl3s
j1mbl3s

📖
VictorienXP
VictorienXP

💻
yelhouti
yelhouti

💻
Jaroslav Lichtblau
Jaroslav Lichtblau

📖
MaximilianS
MaximilianS

📖
Dion Larson
Dion Larson

💻 📖
Physics-Dude
Physics-Dude

📖
waflint
waflint

💻
Henry Wilkinson
Henry Wilkinson

💻 📖
cedstrom
cedstrom

💻
v3DJG6GL
v3DJG6GL

🐛 💻
polarstack
polarstack

💻
Keyvan
Keyvan

💻
MickaelFontes
MickaelFontes

💻
David CM
David CM

💻
Aamir Azad
Aamir Azad

📖
Jordan Woyak
Jordan Woyak

💻
Simon Hofman
Simon Hofman

💻
notyouraveragegamer
notyouraveragegamer

📖
Varac
Varac

💻
tuxsudo
tuxsudo

💻
TylerRudie
TylerRudie

📖
qnb59bny5x
qnb59bny5x

💻
Filip Bednárik
Filip Bednárik

🐛
Serhii Shcherbinin
Serhii Shcherbinin

💻
Quentin Raynaud
Quentin Raynaud

🐛
Felix Schäfer
Felix Schäfer

📖
Julien Nicolas de Verteuil
Julien Nicolas de Verteuil

💻
Gabriel Donadel Dall'Agnol
Gabriel Donadel Dall'Agnol

📖
Jon S. Stumpf
Jon S. Stumpf

📖
Tanguille
Tanguille

📖
Dennis
Dennis

🐛 📖
TheIceCreamTroll
TheIceCreamTroll

💻
Atanas Pamukchiev
Atanas Pamukchiev

💻
Boemeltrein
Boemeltrein

📖
Yiannis Marangos
Yiannis Marangos

💻
Michael Ruoss
Michael Ruoss

💻
Aron Kahrs
Aron Kahrs

💻
nemesis1982
nemesis1982

📖
Ed P
Ed P

💻
Frédéric Nadeau
Frédéric Nadeau

📖
frapbod
frapbod

💻
Max Bachhuber
Max Bachhuber

💻
zierbeek
zierbeek

💻
Ac1dburn
Ac1dburn

💻
Antoine Saget
Antoine Saget

📖
Ben Bodenmiller
Ben Bodenmiller

🐛
felixfon
felixfon

📖
adtwomey
adtwomey

📖
alfi0812
alfi0812

💻 📖 🐛 👀
Agassi
Agassi

💻
Artur
Artur

💻
Morgan Hunter
Morgan Hunter

💻
Aleksandr Oleinikov
Aleksandr Oleinikov

💻
Jamie
Jamie

💻
David Gries
David Gries

🐛 💻
Phreeman33
Phreeman33

💻 🐛
Jens Wolvers
Jens Wolvers

💻
Bart Willems
Bart Willems

💻
Caidy
Caidy

💻
Mr Khachaturov
Mr Khachaturov

💻
LordCrash101
LordCrash101

📖
elendil95
elendil95

💻
TheDodger
TheDodger

💻
Saad Awan
Saad Awan

💻
Felix von Arx
Felix von Arx

💻
yodatak
yodatak

💻
Marcel Henrich
Marcel Henrich

💻
Florent Viel
Florent Viel

💻
SniperAsh6
SniperAsh6

💻
Alexandre Acebedo
Alexandre Acebedo

💻
Douglas Chimento
Douglas Chimento

💻
Addison McDermid
Addison McDermid

💻
Jaël Gareau
Jaël Gareau

💻
Steve Sampson
Steve Sampson

📖
Albert Romkes
Albert Romkes

💻
Maja Bojarska
Maja Bojarska

💻
astro-stan
astro-stan

💻
Oliver Simons
Oliver Simons

💻

This project follows the all-contributors specification. Contributions of any kind welcome!

Licence

License


Truecharts, is primarily based on the AGPL-v3 license, this ensures almost everyone can use and modify our charts. Licences can vary on a per-Chart basis. This can easily be seen by the presence of a "LICENSE" file in that folder.

An exception to this, has been made for every document inside folders labeled as docs or doc and their subfolders: those folders are not licensed under AGPL-v3 and are considered "all rights reserved". Said content can be modified and changes submitted per PR, in accordance to the github End User License Agreement.

SPDX-License-Identifier: AGPL-3.0


built-with-resentment contains-technical-debt

S
Description
Fork of trueforge-org/truecharts with some customizations
Readme 890 MiB
luanti-v1.0.0 Latest
2026-07-08 18:51:26 +00:00
Languages
Go Template 97.9%
Shell 2.1%