TrueCharts Bot 68db030c8e chore(deps): update container image docker.io/localai/localai to v2.22.0 by renovate (#27625)
This PR contains the following updates:

| Package | Update | Change |
|---|---|---|
|
[docker.io/localai/localai](https://redirect.github.com/mudler/LocalAI)
| minor | `v2.21.1-aio-cpu` -> `v2.22.0-aio-cpu` |
|
[docker.io/localai/localai](https://redirect.github.com/mudler/LocalAI)
| minor | `v2.21.1-cublas-cuda11-ffmpeg-core` ->
`v2.22.0-cublas-cuda11-ffmpeg-core` |
|
[docker.io/localai/localai](https://redirect.github.com/mudler/LocalAI)
| minor | `v2.21.1-cublas-cuda11-core` -> `v2.22.0-cublas-cuda11-core` |
|
[docker.io/localai/localai](https://redirect.github.com/mudler/LocalAI)
| minor | `v2.21.1-cublas-cuda12-ffmpeg-core` ->
`v2.22.0-cublas-cuda12-ffmpeg-core` |
|
[docker.io/localai/localai](https://redirect.github.com/mudler/LocalAI)
| minor | `v2.21.1-cublas-cuda12-core` -> `v2.22.0-cublas-cuda12-core` |
|
[docker.io/localai/localai](https://redirect.github.com/mudler/LocalAI)
| minor | `v2.21.1-ffmpeg-core` -> `v2.22.0-ffmpeg-core` |
|
[docker.io/localai/localai](https://redirect.github.com/mudler/LocalAI)
| minor | `v2.21.1` -> `v2.22.0` |

---

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

---

### Release Notes

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

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

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

<!-- Release notes generated using configuration in .github/release.yml
at master -->

##### LocalAI v2.22.0 is out 🥳

##### 💡 Highlights

- **Image-to-Text and Video-to-Text Support:** The VLLM backend now
supports both image-to-text and video-to-text processing.
- **Enhanced Multimodal Support**: Template placeholders are now
available, offering more flexibility in multimodal applications
- **Model Management Made Easy:** List all your loaded models directly
via the /system endpoint for seamless management.
- **Various bugfixes and improvements**: Fixed issues with dangling
processes to ensure proper resource management and resolved channel
closure issues in the base GRPC server.

##### 🖼️  Multimodal vLLM

To use multimodal models with vLLM simply specify the model in the YAML
file. Models however can differ if support multiple images or single
images, along how they process internally placeholders for images.

Some models/libraries have different way to express images, videos or
audio placeholders. For example, llama.cpp backend expects images within
an `[img-ID]` tag, but other backends/models (e.g. vLLM) use a different
notation ( `<|image_|>`).

For example, to override defaults, now it is possible to set in the
model configuration the following:

```yaml

template:
  video: "<|video_{{.ID}}|> {{.Text}}"
  image: "<|image_{{.ID}}|> {{.Text}}"
  audio: "<|audio_{{.ID}}|> {{.Text}}"
```

##### 📹 Video and Audio understanding

Some libraries might support both Video and Audio. Currently only vLLM
supports Video understanding, and can be used in the API by "extending"
the OpenAI API with `audio` and `video` type along images:

```bash
curl http://localhost:8080/v1/chat/completions \
  -H "Content-Type: application/json" \
  -d '{
    "model": "gpt-4o",
    "messages": [
      {
        "role": "user",
        "content": [
          {
            "type": "text",
            "text": "What'\''s in this video?"
          },
          {
            "type": "video_url",
            "video_url": {
              "url": "https://video-image-url"
            }
          }
        ]
      }
    ],
    "max_tokens": 300
  }'

```

##### 🧑‍🏭  Work in progress

- Realtime API is work in progress , tracked in
[https://github.com/mudler/LocalAI/issues/3714](https://redirect.github.com/mudler/LocalAI/issues/3714).
thumbs up if you want to see it supported in LocalAI!

##### What's Changed

##### Bug fixes 🐛

- chore: simplify model loading by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3715](https://redirect.github.com/mudler/LocalAI/pull/3715)
- fix(initializer): correctly reap dangling processes by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3717](https://redirect.github.com/mudler/LocalAI/pull/3717)
- fix(base-grpc): close channel in base grpc server by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3734](https://redirect.github.com/mudler/LocalAI/pull/3734)
- fix(vllm): bump cmake - vllm requires it by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3744](https://redirect.github.com/mudler/LocalAI/pull/3744)
- fix(llama-cpp): consistently select fallback by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3789](https://redirect.github.com/mudler/LocalAI/pull/3789)
- fix(welcome): do not list model twice if we have a config by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3790](https://redirect.github.com/mudler/LocalAI/pull/3790)
- fix: listmodelservice / welcome endpoint use LOOSE_ONLY by
[@&#8203;dave-gray101](https://redirect.github.com/dave-gray101) in
[https://github.com/mudler/LocalAI/pull/3791](https://redirect.github.com/mudler/LocalAI/pull/3791)

##### Exciting New Features 🎉

- feat(api): list loaded models in `/system` by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3661](https://redirect.github.com/mudler/LocalAI/pull/3661)
- feat: Add Get Token Metrics to GRPC server by
[@&#8203;siddimore](https://redirect.github.com/siddimore) in
[https://github.com/mudler/LocalAI/pull/3687](https://redirect.github.com/mudler/LocalAI/pull/3687)
- refactor: ListModels Filtering Upgrade by
[@&#8203;dave-gray101](https://redirect.github.com/dave-gray101) in
[https://github.com/mudler/LocalAI/pull/2773](https://redirect.github.com/mudler/LocalAI/pull/2773)
- feat: track internally started models by ID by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3693](https://redirect.github.com/mudler/LocalAI/pull/3693)
- feat: tokenization endpoint by
[@&#8203;shraddhazpy](https://redirect.github.com/shraddhazpy) in
[https://github.com/mudler/LocalAI/pull/3710](https://redirect.github.com/mudler/LocalAI/pull/3710)
- feat(multimodal): allow to template placeholders by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3728](https://redirect.github.com/mudler/LocalAI/pull/3728)
- feat(vllm): add support for image-to-text and video-to-text by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3729](https://redirect.github.com/mudler/LocalAI/pull/3729)
- feat(shutdown): allow force shutdown of backends by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3733](https://redirect.github.com/mudler/LocalAI/pull/3733)
- feat(transformers): Use downloaded model for Transformers backend if
it already exists. by
[@&#8203;joshbtn](https://redirect.github.com/joshbtn) in
[https://github.com/mudler/LocalAI/pull/3777](https://redirect.github.com/mudler/LocalAI/pull/3777)
- fix: roll out bluemonday Sanitize more widely by
[@&#8203;dave-gray101](https://redirect.github.com/dave-gray101) in
[https://github.com/mudler/LocalAI/pull/3794](https://redirect.github.com/mudler/LocalAI/pull/3794)

##### 🧠 Models

- models(gallery): add llama-3.2 3B and 1B by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3671](https://redirect.github.com/mudler/LocalAI/pull/3671)
- chore(model-gallery): ⬆️ update checksum by
[@&#8203;localai-bot](https://redirect.github.com/localai-bot) in
[https://github.com/mudler/LocalAI/pull/3675](https://redirect.github.com/mudler/LocalAI/pull/3675)
- models(gallery): add magnusintellectus-12b-v1-i1 by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3678](https://redirect.github.com/mudler/LocalAI/pull/3678)
- models(gallery): add bigqwen2.5-52b-instruct by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3679](https://redirect.github.com/mudler/LocalAI/pull/3679)
- feat(api): add correlationID to Track Chat requests by
[@&#8203;siddimore](https://redirect.github.com/siddimore) in
[https://github.com/mudler/LocalAI/pull/3668](https://redirect.github.com/mudler/LocalAI/pull/3668)
- models(gallery): add replete-llm-v2.5-qwen-14b by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3688](https://redirect.github.com/mudler/LocalAI/pull/3688)
- models(gallery): add replete-llm-v2.5-qwen-7b by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3689](https://redirect.github.com/mudler/LocalAI/pull/3689)
- models(gallery): add calme-2.2-qwen2.5-72b-i1 by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3691](https://redirect.github.com/mudler/LocalAI/pull/3691)
- models(gallery): add salamandra-7b-instruct by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3726](https://redirect.github.com/mudler/LocalAI/pull/3726)
- models(gallery): add mn-backyardai-party-12b-v1-iq-arm-imatrix by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3740](https://redirect.github.com/mudler/LocalAI/pull/3740)
- models(gallery): add t.e-8.1-iq-imatrix-request by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3741](https://redirect.github.com/mudler/LocalAI/pull/3741)
- models(gallery): add violet_twilight-v0.2-iq-imatrix by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3742](https://redirect.github.com/mudler/LocalAI/pull/3742)
- models(gallery): add gemma-2-9b-it-abliterated by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3743](https://redirect.github.com/mudler/LocalAI/pull/3743)
- models(gallery): add moe-girl-1ba-7bt-i1 by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3766](https://redirect.github.com/mudler/LocalAI/pull/3766)
- models(gallery): add archfunctions models by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3767](https://redirect.github.com/mudler/LocalAI/pull/3767)
- models(gallery): add versatillama-llama-3.2-3b-instruct-abliterated by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3771](https://redirect.github.com/mudler/LocalAI/pull/3771)
- models(gallery): add llama3.2-3b-enigma by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3772](https://redirect.github.com/mudler/LocalAI/pull/3772)
- models(gallery): add llama3.2-3b-esper2 by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3773](https://redirect.github.com/mudler/LocalAI/pull/3773)
- models(gallery): add llama-3.1-swallow-70b-v0.1-i1 by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3774](https://redirect.github.com/mudler/LocalAI/pull/3774)
- models(gallery): add rombos-llm-v2.5.1-qwen-3b by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3778](https://redirect.github.com/mudler/LocalAI/pull/3778)
- models(gallery): add qwen2.5-7b-ins-v3 by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3779](https://redirect.github.com/mudler/LocalAI/pull/3779)
- models(gallery): add dans-personalityengine-v1.0.0-8b by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3780](https://redirect.github.com/mudler/LocalAI/pull/3780)
- models(gallery): add llama-3.2-3b-agent007 by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3781](https://redirect.github.com/mudler/LocalAI/pull/3781)
- models(gallery): add nihappy-l3.1-8b-v0.09 by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3782](https://redirect.github.com/mudler/LocalAI/pull/3782)
- models(gallery): add llama-3.2-3b-agent007-coder by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3783](https://redirect.github.com/mudler/LocalAI/pull/3783)
- models(gallery): add
fireball-meta-llama-3.2-8b-instruct-agent-003-128k-code-dpo by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3784](https://redirect.github.com/mudler/LocalAI/pull/3784)
- models(gallery): add gemma-2-ataraxy-v3i-9b by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3785](https://redirect.github.com/mudler/LocalAI/pull/3785)

##### 📖 Documentation and examples

- chore(docs): update CONTRIBUTING.md by
[@&#8203;jjasghar](https://redirect.github.com/jjasghar) in
[https://github.com/mudler/LocalAI/pull/3723](https://redirect.github.com/mudler/LocalAI/pull/3723)

##### 👒 Dependencies

- chore: ⬆️ Update ggerganov/llama.cpp to
`ea9c32be71b91b42ecc538bd902e93cbb5fb36cb` by
[@&#8203;localai-bot](https://redirect.github.com/localai-bot) in
[https://github.com/mudler/LocalAI/pull/3667](https://redirect.github.com/mudler/LocalAI/pull/3667)
- chore: ⬆️ Update ggerganov/whisper.cpp to
`69339af2d104802f3f201fd419163defba52890e` by
[@&#8203;localai-bot](https://redirect.github.com/localai-bot) in
[https://github.com/mudler/LocalAI/pull/3666](https://redirect.github.com/mudler/LocalAI/pull/3666)
- chore: ⬆️ Update ggerganov/llama.cpp to
`95bc82fbc0df6d48cf66c857a4dda3d044f45ca2` by
[@&#8203;localai-bot](https://redirect.github.com/localai-bot) in
[https://github.com/mudler/LocalAI/pull/3674](https://redirect.github.com/mudler/LocalAI/pull/3674)
- chore: ⬆️ Update ggerganov/llama.cpp to
`b5de3b74a595cbfefab7eeb5a567425c6a9690cf` by
[@&#8203;localai-bot](https://redirect.github.com/localai-bot) in
[https://github.com/mudler/LocalAI/pull/3681](https://redirect.github.com/mudler/LocalAI/pull/3681)
- chore: ⬆️ Update ggerganov/whisper.cpp to
`8feb375fbdf0277ad36958c218c6bf48fa0ba75a` by
[@&#8203;localai-bot](https://redirect.github.com/localai-bot) in
[https://github.com/mudler/LocalAI/pull/3680](https://redirect.github.com/mudler/LocalAI/pull/3680)
- chore: ⬆️ Update ggerganov/llama.cpp to
`c919d5db39c8a7fcb64737f008e4b105ee0acd20` by
[@&#8203;localai-bot](https://redirect.github.com/localai-bot) in
[https://github.com/mudler/LocalAI/pull/3686](https://redirect.github.com/mudler/LocalAI/pull/3686)
- chore(deps): bump grpcio to 1.66.2 by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3690](https://redirect.github.com/mudler/LocalAI/pull/3690)
- chore(deps): Bump openai from 1.47.1 to 1.50.2 in
/examples/langchain-chroma by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/mudler/LocalAI/pull/3697](https://redirect.github.com/mudler/LocalAI/pull/3697)
- chore(deps): Bump chromadb from 0.5.7 to 0.5.11 in
/examples/langchain-chroma by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/mudler/LocalAI/pull/3696](https://redirect.github.com/mudler/LocalAI/pull/3696)
- chore(deps): Bump langchain from 0.3.0 to 0.3.1 in
/examples/langchain-chroma by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/mudler/LocalAI/pull/3694](https://redirect.github.com/mudler/LocalAI/pull/3694)
- chore: ⬆️ Update ggerganov/llama.cpp to
`6f1d9d71f4c568778a7637ff6582e6f6ba5fb9d3` by
[@&#8203;localai-bot](https://redirect.github.com/localai-bot) in
[https://github.com/mudler/LocalAI/pull/3708](https://redirect.github.com/mudler/LocalAI/pull/3708)
- chore(deps): Bump securego/gosec from 2.21.0 to 2.21.4 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/mudler/LocalAI/pull/3698](https://redirect.github.com/mudler/LocalAI/pull/3698)
- chore(deps): Bump openai from 1.47.1 to 1.50.2 in /examples/functions
by [@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/mudler/LocalAI/pull/3699](https://redirect.github.com/mudler/LocalAI/pull/3699)
- chore(deps): Bump langchain from 0.3.0 to 0.3.1 in
/examples/langchain/langchainpy-localai-example by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/mudler/LocalAI/pull/3704](https://redirect.github.com/mudler/LocalAI/pull/3704)
- chore(deps): Bump greenlet from 3.1.0 to 3.1.1 in
/examples/langchain/langchainpy-localai-example by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/mudler/LocalAI/pull/3703](https://redirect.github.com/mudler/LocalAI/pull/3703)
- chore(deps): Bump langchain from 0.3.0 to 0.3.1 in /examples/functions
by [@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/mudler/LocalAI/pull/3700](https://redirect.github.com/mudler/LocalAI/pull/3700)
- chore(deps): Bump langchain-community from 0.2.16 to 0.3.1 in
/examples/langchain/langchainpy-localai-example by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/mudler/LocalAI/pull/3702](https://redirect.github.com/mudler/LocalAI/pull/3702)
- chore(deps): Bump gradio from 4.38.1 to 4.44.1 in
/backend/python/openvoice by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/mudler/LocalAI/pull/3701](https://redirect.github.com/mudler/LocalAI/pull/3701)
- chore(deps): Bump llama-index from 0.11.12 to 0.11.14 in
/examples/langchain-chroma by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/mudler/LocalAI/pull/3695](https://redirect.github.com/mudler/LocalAI/pull/3695)
- chore(deps): Bump aiohttp from 3.10.3 to 3.10.8 in
/examples/langchain/langchainpy-localai-example by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/mudler/LocalAI/pull/3705](https://redirect.github.com/mudler/LocalAI/pull/3705)
- chore(deps): Bump yarl from 1.11.1 to 1.13.1 in
/examples/langchain/langchainpy-localai-example by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/mudler/LocalAI/pull/3706](https://redirect.github.com/mudler/LocalAI/pull/3706)
- chore(deps): Bump llama-index from 0.11.12 to 0.11.14 in
/examples/chainlit by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/mudler/LocalAI/pull/3707](https://redirect.github.com/mudler/LocalAI/pull/3707)
- chore: ⬆️ Update ggerganov/whisper.cpp to
`2ef717b293fe93872cc3a03ca77942936a281959` by
[@&#8203;localai-bot](https://redirect.github.com/localai-bot) in
[https://github.com/mudler/LocalAI/pull/3712](https://redirect.github.com/mudler/LocalAI/pull/3712)
- chore: ⬆️ Update ggerganov/llama.cpp to
`3f1ae2e32cde00c39b96be6d01c2997c29bae555` by
[@&#8203;localai-bot](https://redirect.github.com/localai-bot) in
[https://github.com/mudler/LocalAI/pull/3713](https://redirect.github.com/mudler/LocalAI/pull/3713)
- chore: ⬆️ Update ggerganov/llama.cpp to
`a39ab216aa624308fda7fa84439c6b61dc98b87a` by
[@&#8203;localai-bot](https://redirect.github.com/localai-bot) in
[https://github.com/mudler/LocalAI/pull/3718](https://redirect.github.com/mudler/LocalAI/pull/3718)
- chore: ⬆️ Update ggerganov/whisper.cpp to
`ede1718f6d45aa3f7ad4a1e169dfbc9d51570c4e` by
[@&#8203;localai-bot](https://redirect.github.com/localai-bot) in
[https://github.com/mudler/LocalAI/pull/3719](https://redirect.github.com/mudler/LocalAI/pull/3719)
- chore: ⬆️ Update ggerganov/llama.cpp to
`d5ed2b929d85bbd7dbeecb690880f07d9d7a6077` by
[@&#8203;localai-bot](https://redirect.github.com/localai-bot) in
[https://github.com/mudler/LocalAI/pull/3725](https://redirect.github.com/mudler/LocalAI/pull/3725)
- chore: ⬆️ Update ggerganov/whisper.cpp to
`ccc2547210e09e3a1785817383ab770389bb442b` by
[@&#8203;localai-bot](https://redirect.github.com/localai-bot) in
[https://github.com/mudler/LocalAI/pull/3724](https://redirect.github.com/mudler/LocalAI/pull/3724)
- chore: ⬆️ Update ggerganov/llama.cpp to
`71967c2a6d30da9f61580d3e2d4cb00e0223b6fa` by
[@&#8203;localai-bot](https://redirect.github.com/localai-bot) in
[https://github.com/mudler/LocalAI/pull/3731](https://redirect.github.com/mudler/LocalAI/pull/3731)
- chore: ⬆️ Update ggerganov/whisper.cpp to
`2944cb72d95282378037cb0eb45c9e2b2529ff2c` by
[@&#8203;localai-bot](https://redirect.github.com/localai-bot) in
[https://github.com/mudler/LocalAI/pull/3730](https://redirect.github.com/mudler/LocalAI/pull/3730)
- chore: ⬆️ Update ggerganov/whisper.cpp to
`6a94163b913d8e974e60d9ac56c8930d19f45773` by
[@&#8203;localai-bot](https://redirect.github.com/localai-bot) in
[https://github.com/mudler/LocalAI/pull/3735](https://redirect.github.com/mudler/LocalAI/pull/3735)
- chore: ⬆️ Update ggerganov/llama.cpp to
`8c475b97b8ba7d678d4c9904b1161bd8811a9b44` by
[@&#8203;localai-bot](https://redirect.github.com/localai-bot) in
[https://github.com/mudler/LocalAI/pull/3736](https://redirect.github.com/mudler/LocalAI/pull/3736)
- chore: ⬆️ Update ggerganov/llama.cpp to
`d5cb86844f26f600c48bf3643738ea68138f961d` by
[@&#8203;localai-bot](https://redirect.github.com/localai-bot) in
[https://github.com/mudler/LocalAI/pull/3738](https://redirect.github.com/mudler/LocalAI/pull/3738)
- chore: ⬆️ Update ggerganov/whisper.cpp to
`9f346d00840bcd7af62794871109841af40cecfb` by
[@&#8203;localai-bot](https://redirect.github.com/localai-bot) in
[https://github.com/mudler/LocalAI/pull/3739](https://redirect.github.com/mudler/LocalAI/pull/3739)
- chore(deps): Bump langchain from 0.3.1 to 0.3.2 in /examples/functions
by [@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/mudler/LocalAI/pull/3755](https://redirect.github.com/mudler/LocalAI/pull/3755)
- chore(deps): Bump openai from 1.50.2 to 1.51.1 in /examples/functions
by [@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/mudler/LocalAI/pull/3754](https://redirect.github.com/mudler/LocalAI/pull/3754)
- chore(deps): Bump openai from 1.45.1 to 1.51.1 in
/examples/langchain/langchainpy-localai-example by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/mudler/LocalAI/pull/3748](https://redirect.github.com/mudler/LocalAI/pull/3748)
- chore(deps): Bump multidict from 6.0.5 to 6.1.0 in
/examples/langchain/langchainpy-localai-example by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/mudler/LocalAI/pull/3749](https://redirect.github.com/mudler/LocalAI/pull/3749)
- chore(deps): Bump aiohttp from 3.10.8 to 3.10.9 in
/examples/langchain/langchainpy-localai-example by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/mudler/LocalAI/pull/3750](https://redirect.github.com/mudler/LocalAI/pull/3750)
- chore(deps): Bump llama-index from 0.11.14 to 0.11.16 in
/examples/chainlit by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/mudler/LocalAI/pull/3753](https://redirect.github.com/mudler/LocalAI/pull/3753)
- chore(deps): Bump streamlit from 1.38.0 to 1.39.0 in
/examples/streamlit-bot by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/mudler/LocalAI/pull/3757](https://redirect.github.com/mudler/LocalAI/pull/3757)
- chore(deps): Bump debugpy from 1.8.2 to 1.8.6 in
/examples/langchain/langchainpy-localai-example by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/mudler/LocalAI/pull/3751](https://redirect.github.com/mudler/LocalAI/pull/3751)
- chore(deps): Bump langchain from 0.3.1 to 0.3.2 in
/examples/langchain/langchainpy-localai-example by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/mudler/LocalAI/pull/3752](https://redirect.github.com/mudler/LocalAI/pull/3752)
- chore(deps): Bump openai from 1.50.2 to 1.51.1 in
/examples/langchain-chroma by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/mudler/LocalAI/pull/3758](https://redirect.github.com/mudler/LocalAI/pull/3758)
- chore(deps): Bump llama-index from 0.11.14 to 0.11.16 in
/examples/langchain-chroma by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/mudler/LocalAI/pull/3760](https://redirect.github.com/mudler/LocalAI/pull/3760)
- chore(deps): Bump nginx from 1.27.0 to 1.27.2 in /examples/k8sgpt by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/mudler/LocalAI/pull/3761](https://redirect.github.com/mudler/LocalAI/pull/3761)
- chore(deps): Bump appleboy/ssh-action from 1.0.3 to 1.1.0 by
[@&#8203;dependabot](https://redirect.github.com/dependabot) in
[https://github.com/mudler/LocalAI/pull/3762](https://redirect.github.com/mudler/LocalAI/pull/3762)
- chore: ⬆️ Update ggerganov/llama.cpp to
`6374743747b14db4eb73ce82ae449a2978bc3b47` by
[@&#8203;localai-bot](https://redirect.github.com/localai-bot) in
[https://github.com/mudler/LocalAI/pull/3763](https://redirect.github.com/mudler/LocalAI/pull/3763)
- chore: ⬆️ Update ggerganov/whisper.cpp to
`ebca09a3d1033417b0c630bbbe607b0f185b1488` by
[@&#8203;localai-bot](https://redirect.github.com/localai-bot) in
[https://github.com/mudler/LocalAI/pull/3764](https://redirect.github.com/mudler/LocalAI/pull/3764)
- chore: ⬆️ Update ggerganov/llama.cpp to
`dca1d4b58a7f1acf1bd253be84e50d6367f492fd` by
[@&#8203;localai-bot](https://redirect.github.com/localai-bot) in
[https://github.com/mudler/LocalAI/pull/3769](https://redirect.github.com/mudler/LocalAI/pull/3769)
- chore: ⬆️ Update ggerganov/whisper.cpp to
`fdbfb460ed546452a5d53611bba66d10d842e719` by
[@&#8203;localai-bot](https://redirect.github.com/localai-bot) in
[https://github.com/mudler/LocalAI/pull/3768](https://redirect.github.com/mudler/LocalAI/pull/3768)
- chore: ⬆️ Update ggerganov/llama.cpp to
`c81f3bbb051f8b736e117dfc78c99d7c4e0450f6` by
[@&#8203;localai-bot](https://redirect.github.com/localai-bot) in
[https://github.com/mudler/LocalAI/pull/3775](https://redirect.github.com/mudler/LocalAI/pull/3775)
- chore: ⬆️ Update ggerganov/llama.cpp to
`0e9f760eb12546704ef8fa72577bc1a3ffe1bc04` by
[@&#8203;localai-bot](https://redirect.github.com/localai-bot) in
[https://github.com/mudler/LocalAI/pull/3786](https://redirect.github.com/mudler/LocalAI/pull/3786)
- chore(deps): bump llama-cpp to
[`9677640`](https://redirect.github.com/mudler/LocalAI/commit/96776405a17034dcfd53d3ddf5d142d34bdbb657)
by [@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3793](https://redirect.github.com/mudler/LocalAI/pull/3793)

##### Other Changes

- docs: ⬆️ update docs version mudler/LocalAI by
[@&#8203;localai-bot](https://redirect.github.com/localai-bot) in
[https://github.com/mudler/LocalAI/pull/3665](https://redirect.github.com/mudler/LocalAI/pull/3665)
- feat(swagger): update swagger by
[@&#8203;localai-bot](https://redirect.github.com/localai-bot) in
[https://github.com/mudler/LocalAI/pull/3664](https://redirect.github.com/mudler/LocalAI/pull/3664)
- chore(refactor): track grpcProcess in the model structure by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3663](https://redirect.github.com/mudler/LocalAI/pull/3663)
- chore: get model also from query by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3716](https://redirect.github.com/mudler/LocalAI/pull/3716)
- chore(federated): display a message when nodes are not available by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3721](https://redirect.github.com/mudler/LocalAI/pull/3721)
- chore(vllm): do not install from source by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3745](https://redirect.github.com/mudler/LocalAI/pull/3745)
- chore(Dockerfile): default to cmake from package manager by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3746](https://redirect.github.com/mudler/LocalAI/pull/3746)
- chore(tests): improve rwkv tests and consume TEST_FLAKES by
[@&#8203;mudler](https://redirect.github.com/mudler) in
[https://github.com/mudler/LocalAI/pull/3765](https://redirect.github.com/mudler/LocalAI/pull/3765)

##### New Contributors

- [@&#8203;siddimore](https://redirect.github.com/siddimore) made their
first contribution in
[https://github.com/mudler/LocalAI/pull/3668](https://redirect.github.com/mudler/LocalAI/pull/3668)
- [@&#8203;shraddhazpy](https://redirect.github.com/shraddhazpy) made
their first contribution in
[https://github.com/mudler/LocalAI/pull/3710](https://redirect.github.com/mudler/LocalAI/pull/3710)
- [@&#8203;jjasghar](https://redirect.github.com/jjasghar) made their
first contribution in
[https://github.com/mudler/LocalAI/pull/3723](https://redirect.github.com/mudler/LocalAI/pull/3723)
- [@&#8203;joshbtn](https://redirect.github.com/joshbtn) made their
first contribution in
[https://github.com/mudler/LocalAI/pull/3777](https://redirect.github.com/mudler/LocalAI/pull/3777)

**Full Changelog**:
https://github.com/mudler/LocalAI/compare/v2.21.1...v2.22.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:eyJjcmVhdGVkSW5WZXIiOiIzOC4xMTkuMCIsInVwZGF0ZWRJblZlciI6IjM4LjExOS4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInVwZGF0ZS9kb2NrZXIvZ2VuZXJhbC9ub24tbWFqb3IiXX0=-->
2024-10-12 20:17:13 +02:00
2024-10-08 12:57:47 +02:00
2024-10-11 00:17:28 +00: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

💻

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

Licence

License


Truecharts, is primarily based on a 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 said 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%