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`](96776405a1)
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=-->
This commit is contained in:
TrueCharts Bot
2024-10-12 20:17:13 +02:00
committed by GitHub
parent 9feb9994fd
commit 68db030c8e
2 changed files with 9 additions and 9 deletions

View File

@@ -6,7 +6,7 @@ annotations:
truecharts.org/min_helm_version: "3.11"
truecharts.org/train: stable
apiVersion: v2
appVersion: 2.21.1
appVersion: 2.22.0
dependencies:
- name: common
version: 25.0.0
@@ -33,4 +33,4 @@ sources:
- https://github.com/truecharts/charts/tree/master/charts/stable/local-ai
- https://hub.docker.com/r/localai/localai
type: application
version: 11.15.0
version: 11.16.0

View File

@@ -1,27 +1,27 @@
image:
repository: docker.io/localai/localai
pullPolicy: IfNotPresent
tag: v2.21.1@sha256:77210d1c106349b765a9336d747327eb5c66f23cec02c0dafd83deb972030e27
tag: v2.22.0@sha256:b815d87ee0fa674e7c7369a667b6f8a802c14b81a0c7dc8d8daa08abe68689bf
ffmpegImage:
repository: docker.io/localai/localai
pullPolicy: IfNotPresent
tag: v2.21.1-ffmpeg-core@sha256:e0d92d06f3d46c173c29e0e94912d0435fa9d36b2d2cc7d2ee7991a2719ffd12
tag: v2.22.0-ffmpeg-core@sha256:d35571dc1758cb06d38b36652c0c65979ac61c653d81e776891afbbe15a58761
cublasCuda12Image:
repository: docker.io/localai/localai
pullPolicy: IfNotPresent
tag: v2.21.1-cublas-cuda12-core@sha256:523cdd0ad3d5ee0f1b264f9c685aaffd7ba3c270c4ff376af7e5d2f004653875
tag: v2.22.0-cublas-cuda12-core@sha256:a1975d2775822b34e3cba37d933a2dc071daedce1909934902b54c60a6d58ab5
cublasCuda12FfmpegImage:
repository: docker.io/localai/localai
pullPolicy: IfNotPresent
tag: v2.21.1-cublas-cuda12-ffmpeg-core@sha256:fd2052ccf90141035dee0a7c8d1e90677bd0bf36d8a67f33c0589570180fa97f
tag: v2.22.0-cublas-cuda12-ffmpeg-core@sha256:7cf125652263e401bd5e346cd6b7eaeb963586c64df9bafdb3f2a7ff49d01b7b
cublasCuda11Image:
repository: docker.io/localai/localai
pullPolicy: IfNotPresent
tag: v2.21.1-cublas-cuda11-core@sha256:210ed4461e454ed339dc0a80c7064b56c937e4963bacd85118fe7c8552ee68b3
tag: v2.22.0-cublas-cuda11-core@sha256:5d5444be1407520553c24766744777944f8d29ff2a7920c30210246e08d07fec
cublasCuda11FfmpegImage:
repository: docker.io/localai/localai
pullPolicy: IfNotPresent
tag: v2.21.1-cublas-cuda11-ffmpeg-core@sha256:0a64deb73e70f79291434e029f3b5b7b3abab63303965662cdef8ce344f95c88
tag: v2.22.0-cublas-cuda11-ffmpeg-core@sha256:7949f7ac88821bb63d180af4a5952273708891683d38e47ab563ed790e02d0fa
allInOneCuda12Image:
repository: docker.io/localai/localai
pullPolicy: IfNotPresent
@@ -33,7 +33,7 @@ allInOneCuda11Image:
allInOneCpuImage:
repository: docker.io/localai/localai
pullPolicy: IfNotPresent
tag: v2.21.1-aio-cpu@sha256:1ddb2469b7cc0d0636a3d2e0e1965a1d3e76344cf112b3974af462bf4348c192
tag: v2.22.0-aio-cpu@sha256:538c0a47aa2839f45d5b63017e44e1eb876b3f215c338f2450011d3ce28b872a
securityContext:
container:
runAsNonRoot: false