This PR contains the following updates: | Package | Update | Change | |---|---|---| | [docker.io/localai/localai](https://redirect.github.com/mudler/LocalAI) | minor | `f7c65fe` -> `ef10c1e` | | [docker.io/localai/localai](https://redirect.github.com/mudler/LocalAI) | minor | `5ea947a` -> `1989b7d` | | [docker.io/localai/localai](https://redirect.github.com/mudler/LocalAI) | minor | `1d517db` -> `7b8372d` | | [docker.io/localai/localai](https://redirect.github.com/mudler/LocalAI) | minor | `df04e93` -> `93af01a` | | [docker.io/localai/localai](https://redirect.github.com/mudler/LocalAI) | minor | `07c6e56` -> `d1fce91` | | [docker.io/localai/localai](https://redirect.github.com/mudler/LocalAI) | minor | `ae5e20b` -> `7ef847f` | | [docker.io/localai/localai](https://redirect.github.com/mudler/LocalAI) | minor | `26a3999` -> `401182f` | | [docker.io/localai/localai](https://redirect.github.com/mudler/LocalAI) | minor | `ee97417` -> `08609f9` | | [docker.io/localai/localai](https://redirect.github.com/mudler/LocalAI) | minor | `9941689` -> `695fa92` | --- > [!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> ### [`v2.26.0`](https://redirect.github.com/mudler/LocalAI/releases/tag/v2.26.0) [Compare Source](https://redirect.github.com/mudler/LocalAI/compare/v2.25.0...v2.26.0) <h1 align="center"> <br> <img src="https://github.com/user-attachments/assets/498ac36e-16dd-48f9-b810-131ee4938eb4" style="display: block;margin-left: auto;margin-right: auto;width: 50%;"> </h1> ##### 🦙 LocalAI v2.26.0! Hey everyone - very excited about this release! It contains several cleanups, performance improvements and few breaking changes: old backends that are now superseded have been removed (for example, `vall-e-x`), while new backends have been added to expand the range of model architectures that LocalAI can support. While most of the changes are tested, if you encounter issues with the new backends or migrated ones please file a new issue. We also now have support for Nvidia L4T devices (for example, Nvidia AGX Orin) with specific container images. [See the documentation](https://localai.io/docs/reference/nvidia-l4t/) for more details. ##### ⚠️ Breaking Changes ⚠️ - Several backends have been dropped and replaced for improved performance and compatibility. - `Vall-e-x` and `Openvoice` were deprecated and dropped. - The stablediffusion-NCN backend was replaced with the stablediffusion-ggml implementation. - Deprecated llama-ggml backend has been dropped in favor of GGUF support. <details> <summary> Check all details! </summary> ##### Backends that were dropped: - **Vall-e-x and Openvoice:** These projects went silent, and there are better alternatives now. They have been completely superseded by the CoquiTTS community fork, Kokoro, and OutelTTS. - **Stablediffusion-NCN:** This was the first variant shipped with LocalAI based on the ONNX runtime. It has now been superseded by the stablediffusion-ggml backend, which offers similar capabilities and wider support across more architectures. - **Llama-ggml backend:** This was the pre-GGUF backend, which is now deprecated. Moving forward, LocalAI will support only GGUF models. ##### Notable Backend Changes: - **Mamba** has moved to the `transformers` backend. - **Transformers-Musicgen** has moved to the `transformers` backend. - **Sentencetransformers** has moved to the `transformers` backend. While LocalAI will try to alias to the `transformers` backend automatically when using these backends, there might be incompatibilies with your configuration files. Please open an issue if you face any problem! ##### New Backends: - **Kokoro (TTS):** A new backend for text-to-speech. - **OuteTTS:** A TTS backend with voice cloning capabilities. - **Fast-Whisper:** A backend designed for faster whisper model inference. </details> ##### New Features 🎉 - **Lazy grammars (llama.cpp):** Added grammar triggers for llama.cpp: this allow models trained with specific tokens to enable grammar generation when such tokens are seen: this allows precise JSON generation but also consistent output when the model does not need to answer with a tool. For example, in the config file of the model triggers can be specified as such: ```yaml function: grammar: triggers: word: "<tool_call>" at_start: true ``` - **Function Argument Parsing Using Named Regex:** A new feature that allows parsing function arguments with named regular expressions, simplifying function calls. - **Support for New Backends:** Added Kokoro, OutelTTS, and Fast-Whisper backends. - **Diffusers Update:** Added support for Sana pipelines and image generation option overrides. - **Machine Tag and Inference Timing:** Allows tracking machine performance during inference. - **Tokenization:** Introduced tokenization support for llama.cpp to improve text processing. - **AVX512:** There is now bundled support for CPUs supporting AVX512 instruction set - **Nvidia L4T**: Support for Nvidia devices on arm64, for example Nvidia AGX Orin and alikes. [See the documentation](https://localai.io/docs/reference/nvidia-l4t/). TLDR; You can start container images ready to go with: ```bash docker run -e DEBUG=true \ -p 8080:8080 \ -v $PWD/models:/build/models \ -ti --restart=always --name local-ai \ --runtime nvidia --gpus all quay.io/go-skynet/local-ai:master-nvidia-l4t-arm64-core ``` ##### Bug Fixes 🐛 - Multiple fixes to improve stability, including enabling SYCL support for stablediffusion-ggml and consistent OpenAI stop reason returns. - Improved context shift handling for llama.cpp and fixed gallery store overrides. ##### 🧠 Models: <h1 align="center"> <br> <img src="https://cdn-uploads.huggingface.co/production/uploads/647374aa7ff32a81ac6d35d4/bXvNcxQqQ-wNAnISmx3PS.png" style="display: block;margin-left: auto;margin-right: auto;width: 50%;"> </h1> <p align="center"> <br> <img src="https://cdn-uploads.huggingface.co/production/uploads/647374aa7ff32a81ac6d35d4/Dzbdzn27KEc3K6zNNi070.png" style="display: block;margin-left: auto;margin-right: auto;width: 50%;"> </p> I've fine-tuned a family of models based on o1-cot and function call datasets to work closely with all LocalAI features regarding function calling. The models are tailored to be conversational and execute function calls: - llama3.2-1b version: https://huggingface.co/mudler/LocalAI-functioncall-llama3.2-1b-v0.4 - llama3.2-3b version: https://huggingface.co/mudler/LocalAI-functioncall-llama3.2-3b-v0.5 - phi-4 version: https://huggingface.co/mudler/LocalAI-functioncall-phi-4-v0.3 - qwen2.5 (7b) version: https://huggingface.co/mudler/LocalAI-functioncall-qwen2.5-7b-v0.5 Enjoy! All the models are available in the LocalAI gallery: ```bash local-ai run LocalAI-functioncall-phi-4-v0.3 local-ai run LocalAI-functioncall-llama3.2-1b-v0.4 local-ai run LocalAI-functioncall-llama3.2-3b-v0.5 local-ai run localai-functioncall-qwen2.5-7b-v0.5 ``` ##### Other models Numerous model updates and additions: - New models like nightwing3-10b, rombos-qwen2.5-writer, and negative_llama\_70b. - Updated checksum for model galleries. - Added icons and improved prompt templates for various models. - Expanded model gallery with new additions like DeepSeek-R1, Mistral-small-24b, and more. <!-- Release notes generated using configuration in .github/release.yml at master --> ##### Full changelog 👇 <details> <summary> 👉 Click to expand 👈 </summary> ##### Breaking Changes 🛠 * chore(vall-e-x): Drop backend by @​mudl[https://github.com/mudler/LocalAI/pull/4619](https://redirect.github.com/mudler/LocalAI/pull/4619)l/4619 * feat(transformers): merge musicgen functionalities to a single backend by @​mudl[https://github.com/mudler/LocalAI/pull/4620](https://redirect.github.com/mudler/LocalAI/pull/4620)l/4620 * feat(transformers): merge sentencetransformers backend by @​mudl[https://github.com/mudler/LocalAI/pull/4624](https://redirect.github.com/mudler/LocalAI/pull/4624)l/4624 * chore(stablediffusion-ncn): drop in favor of ggml implementation by @​mudl[https://github.com/mudler/LocalAI/pull/4652](https://redirect.github.com/mudler/LocalAI/pull/4652)l/4652 * feat(transformers): add support to Mamba by @​mudl[https://github.com/mudler/LocalAI/pull/4669](https://redirect.github.com/mudler/LocalAI/pull/4669)l/4669 * chore(openvoice): drop backend by @​mudl[https://github.com/mudler/LocalAI/pull/4673](https://redirect.github.com/mudler/LocalAI/pull/4673)l/4673 * chore: drop embedded models by @​mudl[https://github.com/mudler/LocalAI/pull/4715](https://redirect.github.com/mudler/LocalAI/pull/4715)l/4715 * chore(llama-ggml): drop deprecated backend by @​mudl[https://github.com/mudler/LocalAI/pull/4775](https://redirect.github.com/mudler/LocalAI/pull/4775)l/4775 * fix(llama.cpp): disable mirostat as default by @​mudl[https://github.com/mudler/LocalAI/pull/2911](https://redirect.github.com/mudler/LocalAI/pull/2911)l/2911 ##### Bug fixes 🐛 * fix(stablediffusion-ggml): correctly enable sycl by @​mudl[https://github.com/mudler/LocalAI/pull/4591](https://redirect.github.com/mudler/LocalAI/pull/4591)l/4591 * fix(stablediffusion-ggml): enable oneapi before build by @​mudl[https://github.com/mudler/LocalAI/pull/4593](https://redirect.github.com/mudler/LocalAI/pull/4593)l/4593 * fix(docs): add missing `-core` suffix to sycl images by @​M0Rf[https://github.com/mudler/LocalAI/pull/4630](https://redirect.github.com/mudler/LocalAI/pull/4630)l/4630 * fix(stores): Stores fixes and testing by @​richie[https://github.com/mudler/LocalAI/pull/4663](https://redirect.github.com/mudler/LocalAI/pull/4663)l/4663 * fix(gallery): do not return overrides and additional config by @​mudl[https://github.com/mudler/LocalAI/pull/4768](https://redirect.github.com/mudler/LocalAI/pull/4768)l/4768 * fix(openai): consistently return stop reason by @​mudl[https://github.com/mudler/LocalAI/pull/4771](https://redirect.github.com/mudler/LocalAI/pull/4771)l/4771 * fix(llama.cpp): improve context shift handling by @​mudl[https://github.com/mudler/LocalAI/pull/4820](https://redirect.github.com/mudler/LocalAI/pull/4820)l/4820 ##### Exciting New Features 🎉 * feat(stablediffusion-ggml): respect build type by @​mudl[https://github.com/mudler/LocalAI/pull/4581](https://redirect.github.com/mudler/LocalAI/pull/4581)l/4581 * feat(diffusers): add support for Sana pipelines by @​mudl[https://github.com/mudler/LocalAI/pull/4603](https://redirect.github.com/mudler/LocalAI/pull/4603)l/4603 * feat(tts): Add Kokoro backend by @​mudl[https://github.com/mudler/LocalAI/pull/4616](https://redirect.github.com/mudler/LocalAI/pull/4616)l/4616 * feat: add machine tag and inference timings by @​mintyle[https://github.com/mudler/LocalAI/pull/4577](https://redirect.github.com/mudler/LocalAI/pull/4577)l/4577 * feat(transformers): add support to OuteTTS by @​mudl[https://github.com/mudler/LocalAI/pull/4622](https://redirect.github.com/mudler/LocalAI/pull/4622)l/4622 * Extra-Usage and Machine-Tag docs by @​mintyle[https://github.com/mudler/LocalAI/pull/4627](https://redirect.github.com/mudler/LocalAI/pull/4627)l/4627 * chore: fix some function names in comment by @​petercov[https://github.com/mudler/LocalAI/pull/4665](https://redirect.github.com/mudler/LocalAI/pull/4665)l/4665 * feat(faster-whisper): add backend by @​mudl[https://github.com/mudler/LocalAI/pull/4666](https://redirect.github.com/mudler/LocalAI/pull/4666)l/4666 * chore: detect and enable avx512 builds by @​mudl[https://github.com/mudler/LocalAI/pull/4675](https://redirect.github.com/mudler/LocalAI/pull/4675)l/4675 * chore(downloader): support hf.co and hf:// URIs by @​mudl[https://github.com/mudler/LocalAI/pull/4677](https://redirect.github.com/mudler/LocalAI/pull/4677)l/4677 * feat: function argument parsing using named regex by @​mKenfenheu[https://github.com/mudler/LocalAI/pull/4700](https://redirect.github.com/mudler/LocalAI/pull/4700)l/4700 * feat(llama.cpp): Add support to grammar triggers by @​mudl[https://github.com/mudler/LocalAI/pull/4733](https://redirect.github.com/mudler/LocalAI/pull/4733)l/4733 * feat: tokenization with llama.cpp by @​shraddhaz[https://github.com/mudler/LocalAI/pull/4724](https://redirect.github.com/mudler/LocalAI/pull/4724)l/4724 * feat(diffusers): allow to override image gen options by @​mudl[https://github.com/mudler/LocalAI/pull/4807](https://redirect.github.com/mudler/LocalAI/pull/4807)l/4807 ##### 🧠 Models * chore(model-gallery): ⬆️ update checksum by @​localai-b[https://github.com/mudler/LocalAI/pull/4580](https://redirect.github.com/mudler/LocalAI/pull/4580)l/4580 * chore(model gallery): add nightwing3-10b-v0.1 by @​mudl[https://github.com/mudler/LocalAI/pull/4582](https://redirect.github.com/mudler/LocalAI/pull/4582)l/4582 * chore(model gallery): add qwq-32b-preview-ideawhiz-v1 by @​mudl[https://github.com/mudler/LocalAI/pull/4583](https://redirect.github.com/mudler/LocalAI/pull/4583)l/4583 * chore(model gallery): add rombos-qwen2.5-writer-32b by @​mudl[https://github.com/mudler/LocalAI/pull/4584](https://redirect.github.com/mudler/LocalAI/pull/4584)l/4584 * chore(model gallery): add sky-t1-32b-preview by @​mudl[https://github.com/mudler/LocalAI/pull/4585](https://redirect.github.com/mudler/LocalAI/pull/4585)l/4585 * chore(model gallery): add negative_llama_70b by @​mudl[https://github.com/mudler/LocalAI/pull/4586](https://redirect.github.com/mudler/LocalAI/pull/4586)l/4586 * chore(model gallery): add finemath-llama-3b by @​mudl[https://github.com/mudler/LocalAI/pull/4587](https://redirect.github.com/mudler/LocalAI/pull/4587)l/4587 * chore(model gallery): add LocalAI-functioncall-phi-4-v0.1 by @​mudl[https://github.com/mudler/LocalAI/pull/4588](https://redirect.github.com/mudler/LocalAI/pull/4588)l/4588 * chore(model gallery): add LocalAI-functioncall-phi-4-v0.2 by @​mudl[https://github.com/mudler/LocalAI/pull/4589](https://redirect.github.com/mudler/LocalAI/pull/4589)l/4589 * chore(model gallery): add LocalAI-functioncall-phi-4-v0.3 by @​mudl[https://github.com/mudler/LocalAI/pull/4599](https://redirect.github.com/mudler/LocalAI/pull/4599)l/4599 * chore(model gallery): add negative-anubis-70b-v1 by @​mudl[https://github.com/mudler/LocalAI/pull/4600](https://redirect.github.com/mudler/LocalAI/pull/4600)l/4600 * chore(model gallery): add qwen2.5-72b-rp-ink by @​mudl[https://github.com/mudler/LocalAI/pull/4601](https://redirect.github.com/mudler/LocalAI/pull/4601)l/4601 * chore(model gallery): add steiner-32b-preview by @​mudl[https://github.com/mudler/LocalAI/pull/4602](https://redirect.github.com/mudler/LocalAI/pull/4602)l/4602 * chore(model gallery): add qwerus-7b by @​mudl[https://github.com/mudler/LocalAI/pull/4609](https://redirect.github.com/mudler/LocalAI/pull/4609)l/4609 * chore(model gallery): add l3.3-ms-nevoria-70b by @​mudl[https://github.com/mudler/LocalAI/pull/4610](https://redirect.github.com/mudler/LocalAI/pull/4610)l/4610 * chore(model gallery): add lb-reranker-0.5b-v1.0 by @​mudl[https://github.com/mudler/LocalAI/pull/4611](https://redirect.github.com/mudler/LocalAI/pull/4611)l/4611 * chore(model gallery): add uwu-7b-instruct by @​mudl[https://github.com/mudler/LocalAI/pull/4613](https://redirect.github.com/mudler/LocalAI/pull/4613)l/4613 * chore(model gallery): add drt-o1-14b by @​mudl[https://github.com/mudler/LocalAI/pull/4614](https://redirect.github.com/mudler/LocalAI/pull/4614)l/4614 * chore(model gallery): add vikhr-qwen-2.5-1.5b-instruct by @​mudl[https://github.com/mudler/LocalAI/pull/4615](https://redirect.github.com/mudler/LocalAI/pull/4615)l/4615 * chore: remove deprecated tinydream backend by @​M0Rf[https://github.com/mudler/LocalAI/pull/4631](https://redirect.github.com/mudler/LocalAI/pull/4631)l/4631 * chore(model gallery): add MiniCPM-V-2.6-8b-q4_K_M by @​M0Rf[https://github.com/mudler/LocalAI/pull/4633](https://redirect.github.com/mudler/LocalAI/pull/4633)l/4633 * chore(model gallery): add InternLM3-8b-Q4_K_M by @​M0Rf[https://github.com/mudler/LocalAI/pull/4637](https://redirect.github.com/mudler/LocalAI/pull/4637)l/4637 * fix(model gallery): minicpm-v-2.6 is based on qwen2 by @​M0Rf[https://github.com/mudler/LocalAI/pull/4638](https://redirect.github.com/mudler/LocalAI/pull/4638)l/4638 * chore(model gallery): update icons and add missing ones by @​M0Rf[https://github.com/mudler/LocalAI/pull/4639](https://redirect.github.com/mudler/LocalAI/pull/4639)l/4639 * chore(model gallery): add wayfarer-12b by @​mudl[https://github.com/mudler/LocalAI/pull/4641](https://redirect.github.com/mudler/LocalAI/pull/4641)l/4641 * chore(model gallery): add l3.3-70b-magnum-v4-se by @​mudl[https://github.com/mudler/LocalAI/pull/4642](https://redirect.github.com/mudler/LocalAI/pull/4642)l/4642 * chore(model gallery): add l3.3-prikol-70b-v0.2 by @​mudl[https://github.com/mudler/LocalAI/pull/4643](https://redirect.github.com/mudler/LocalAI/pull/4643)l/4643 * chore(model gallery): remove dead icons and update LLAVA and DeepSeek ones by @​M0Rf[https://github.com/mudler/LocalAI/pull/4645](https://redirect.github.com/mudler/LocalAI/pull/4645)l/4645 * chore(model gallery): add sd-3.5-large-ggml by @​mudl[https://github.com/mudler/LocalAI/pull/4647](https://redirect.github.com/mudler/LocalAI/pull/4647)l/4647 * chore(model gallery): add Deepseek-R1-Distill models by @​M0Rf[https://github.com/mudler/LocalAI/pull/4646](https://redirect.github.com/mudler/LocalAI/pull/4646)l/4646 * chore(model gallery): add deepseek-r1-distill-qwen-7b by @​mudl[https://github.com/mudler/LocalAI/pull/4660](https://redirect.github.com/mudler/LocalAI/pull/4660)l/4660 * chore(model gallery): add sd-1.5-ggml and sd-3.5-medium-ggml by @​mudl[https://github.com/mudler/LocalAI/pull/4664](https://redirect.github.com/mudler/LocalAI/pull/4664)l/4664 * chore(model gallery): add MiniCPM-o-2.6-7.6b by @​M0Rf[https://github.com/mudler/LocalAI/pull/4676](https://redirect.github.com/mudler/LocalAI/pull/4676)l/4676 * chore(model gallery): add DeepSeek R1 14b, 32b and 70b by @​M0Rf[https://github.com/mudler/LocalAI/pull/4679](https://redirect.github.com/mudler/LocalAI/pull/4679)l/4679 * chore(model gallery): add flux.1, stablediffusion and whisper icons by @​M0Rf[https://github.com/mudler/LocalAI/pull/4680](https://redirect.github.com/mudler/LocalAI/pull/4680)l/4680 * chore(model gallery): update deepseek-r1 prompt template by @​M0Rf[https://github.com/mudler/LocalAI/pull/4686](https://redirect.github.com/mudler/LocalAI/pull/4686)l/4686 * chore(model gallery): add lamarck-14b-v0.7 by @​mudl[https://github.com/mudler/LocalAI/pull/4687](https://redirect.github.com/mudler/LocalAI/pull/4687)l/4687 * chore(model gallery): add art-v0-3b by @​mudl[https://github.com/mudler/LocalAI/pull/4688](https://redirect.github.com/mudler/LocalAI/pull/4688)l/4688 * chore(model gallery): add chuluun-qwen2.5-72b-v0.08 by @​mudl[https://github.com/mudler/LocalAI/pull/4689](https://redirect.github.com/mudler/LocalAI/pull/4689)l/4689 * chore(model gallery): add l3.3-nevoria-r1-70b by @​mudl[https://github.com/mudler/LocalAI/pull/4691](https://redirect.github.com/mudler/LocalAI/pull/4691)l/4691 * chore(model gallery): add dumpling-qwen2.5-32b by @​mudl[https://github.com/mudler/LocalAI/pull/4692](https://redirect.github.com/mudler/LocalAI/pull/4692)l/4692 * chore(model gallery): add deepseek-r1-qwen-2.5-32b-ablated by @​mudl[https://github.com/mudler/LocalAI/pull/4693](https://redirect.github.com/mudler/LocalAI/pull/4693)l/4693 * chore(model gallery): add confucius-o1-14b by @​mudl[https://github.com/mudler/LocalAI/pull/4696](https://redirect.github.com/mudler/LocalAI/pull/4696)l/4696 * chore(model gallery): add fuseo1-deepseekr1-qwen2.5-coder-32b-preview-v0.1 by @​mudl[https://github.com/mudler/LocalAI/pull/4697](https://redirect.github.com/mudler/LocalAI/pull/4697)l/4697 * chore(model gallery): add fuseo1-deepseekr1-qwen2.5-instruct-32b-preview by @​mudl[https://github.com/mudler/LocalAI/pull/4698](https://redirect.github.com/mudler/LocalAI/pull/4698)l/4698 * chore(model gallery): add fuseo1-deepseekr1-qwq-32b-preview by @​mudl[https://github.com/mudler/LocalAI/pull/4699](https://redirect.github.com/mudler/LocalAI/pull/4699)l/4699 * chore(model gallery): add specific message templates for llama3.2 based models by @​mKenfenheu[https://github.com/mudler/LocalAI/pull/4707](https://redirect.github.com/mudler/LocalAI/pull/4707)l/4707 * chore(model gallery): add virtuoso-lite by @​mudl[https://github.com/mudler/LocalAI/pull/4718](https://redirect.github.com/mudler/LocalAI/pull/4718)l/4718 * chore(model gallery): add selene-1-mini-llama-3.1-8b by @​mudl[https://github.com/mudler/LocalAI/pull/4719](https://redirect.github.com/mudler/LocalAI/pull/4719)l/4719 * chore(model gallery): add openthinker-7b by @​mudl[https://github.com/mudler/LocalAI/pull/4720](https://redirect.github.com/mudler/LocalAI/pull/4720)l/4720 * chore(model-gallery): ⬆️ update checksum by @​localai-b[https://github.com/mudler/LocalAI/pull/4723](https://redirect.github.com/mudler/LocalAI/pull/4723)l/4723 * chore(model gallery): add mistral-small-24b-instruct-2501 by @​mudl[https://github.com/mudler/LocalAI/pull/4725](https://redirect.github.com/mudler/LocalAI/pull/4725)l/4725 * chore(model gallery): add tinyswallow-1.5b-instruct by @​mudl[https://github.com/mudler/LocalAI/pull/4726](https://redirect.github.com/mudler/LocalAI/pull/4726)l/4726 * chore(model gallery): add taid-llm-1.5b by @​mudl[https://github.com/mudler/LocalAI/pull/4727](https://redirect.github.com/mudler/LocalAI/pull/4727)l/4727 * chore(model gallery): add fuseo1-deekseekr1-qwq-skyt1-32b-preview by @​mudl[https://github.com/mudler/LocalAI/pull/4731](https://redirect.github.com/mudler/LocalAI/pull/4731)l/4731 * chore(model gallery): add steelskull_l3.3-damascus-r1 by @​mudl[https://github.com/mudler/LocalAI/pull/4737](https://redirect.github.com/mudler/LocalAI/pull/4737)l/4737 * chore(model gallery): add thedrummer_gemmasutra-pro-27b-v1.1 by @​mudl[https://github.com/mudler/LocalAI/pull/4738](https://redirect.github.com/mudler/LocalAI/pull/4738)l/4738 * chore(model gallery): add uncensoredai_uncensoredlm-deepseek-r1-distill-qwen-14b by @​mudl[https://github.com/mudler/LocalAI/pull/4739](https://redirect.github.com/mudler/LocalAI/pull/4739)l/4739 * chore(model gallery): add LocalAI-functioncall-llama3.2-1b-v0.4 by @​mudl[https://github.com/mudler/LocalAI/pull/4740](https://redirect.github.com/mudler/LocalAI/pull/4740)l/4740 * chore(model gallery): add fblgit_miniclaus-qw1.5b-unamgs-grpo by @​mudl[https://github.com/mudler/LocalAI/pull/4758](https://redirect.github.com/mudler/LocalAI/pull/4758)l/4758 * chore(model gallery): add nohobby_l3.3-prikol-70b-v0.4 by @​mudl[https://github.com/mudler/LocalAI/pull/4759](https://redirect.github.com/mudler/LocalAI/pull/4759)l/4759 * chore(model gallery): add suayptalha_maestro-10b by @​mudl[https://github.com/mudler/LocalAI/pull/4760](https://redirect.github.com/mudler/LocalAI/pull/4760)l/4760 * chore(model gallery): add agi-0_art-skynet-3b by @​mudl[https://github.com/mudler/LocalAI/pull/4763](https://redirect.github.com/mudler/LocalAI/pull/4763)l/4763 * chore(model gallery): add rubenroy_gilgamesh-72b by @​mudl[https://github.com/mudler/LocalAI/pull/4764](https://redirect.github.com/mudler/LocalAI/pull/4764)l/4764 * chore(model gallery): add krutrim-ai-labs_krutrim-2-instruct by @​mudl[https://github.com/mudler/LocalAI/pull/4765](https://redirect.github.com/mudler/LocalAI/pull/4765)l/4765 * chore(model gallery): add LocalAI-functioncall-llama3.2-3b-v0.5 by @​mudl[https://github.com/mudler/LocalAI/pull/4766](https://redirect.github.com/mudler/LocalAI/pull/4766)l/4766 * chore(model gallery): add arliai_llama-3.3-70b-arliai-rpmax-v1.4 by @​mudl[https://github.com/mudler/LocalAI/pull/4772](https://redirect.github.com/mudler/LocalAI/pull/4772)l/4772 * chore(model gallery): add tiger-lab_qwen2.5-32b-instruct-cft by @​mudl[https://github.com/mudler/LocalAI/pull/4773](https://redirect.github.com/mudler/LocalAI/pull/4773)l/4773 * chore(model gallery): add black-ink-guild_pernicious_prophecy_70b by @​mudl[https://github.com/mudler/LocalAI/pull/4774](https://redirect.github.com/mudler/LocalAI/pull/4774)l/4774 * chore(model gallery): add nohobby_l3.3-prikol-70b-v0.5 by @​mudl[https://github.com/mudler/LocalAI/pull/4777](https://redirect.github.com/mudler/LocalAI/pull/4777)l/4777 * chore(model gallery): add cognitivecomputations_dolphin3.0-r1-mistral-24b by @​mudl[https://github.com/mudler/LocalAI/pull/4778](https://redirect.github.com/mudler/LocalAI/pull/4778)l/4778 * chore(model gallery): add cognitivecomputations_dolphin3.0-mistral-24b by @​mudl[https://github.com/mudler/LocalAI/pull/4779](https://redirect.github.com/mudler/LocalAI/pull/4779)l/4779 * chore(model gallery): add sicariussicariistuff_redemption_wind_24b by @​mudl[https://github.com/mudler/LocalAI/pull/4781](https://redirect.github.com/mudler/LocalAI/pull/4781)l/4781 * chore(model gallery): add huihui-ai_deepseek-r1-distill-llama-70b-abliterated by @​mudl[https://github.com/mudler/LocalAI/pull/4790](https://redirect.github.com/mudler/LocalAI/pull/4790)l/4790 * chore(model gallery): add subtleone_qwen2.5-32b-erudite-writer by @​mudl[https://github.com/mudler/LocalAI/pull/4792](https://redirect.github.com/mudler/LocalAI/pull/4792)l/4792 * chore(model gallery): add ilsp_llama-krikri-8b-instruct by @​mudl[https://github.com/mudler/LocalAI/pull/4795](https://redirect.github.com/mudler/LocalAI/pull/4795)l/4795 * feat: Centralized Request Processing middleware by @​dave-gray1[https://github.com/mudler/LocalAI/pull/3847](https://redirect.github.com/mudler/LocalAI/pull/3847)l/3847 * chore(model gallery): add localai-functioncall-qwen2.5-7b-v0.5 by @​mudl[https://github.com/mudler/LocalAI/pull/4796](https://redirect.github.com/mudler/LocalAI/pull/4796)l/4796 * chore(model gallery): add agentica-org_deepscaler-1.5b-preview by @​mudl[https://github.com/mudler/LocalAI/pull/4804](https://redirect.github.com/mudler/LocalAI/pull/4804)l/4804 * chore(model gallery): add simplescaling_s1.1-32b by @​mudl[https://github.com/mudler/LocalAI/pull/4812](https://redirect.github.com/mudler/LocalAI/pull/4812)l/4812 * chore(model gallery): add theskullery_l3.3-exp-unnamed-model-70b-v0.5 by @​mudl[https://github.com/mudler/LocalAI/pull/4813](https://redirect.github.com/mudler/LocalAI/pull/4813)l/4813 * chore(model gallery): add nvidia_aceinstruct-1.5b by @​mudl[https://github.com/mudler/LocalAI/pull/4819](https://redirect.github.com/mudler/LocalAI/pull/4819)l/4819 * chore(model gallery): add nvidia_aceinstruct-7b by @​mudl[https://github.com/mudler/LocalAI/pull/4821](https://redirect.github.com/mudler/LocalAI/pull/4821)l/4821 * chore(model gallery): add nvidia_aceinstruct-72b by @​mudl[https://github.com/mudler/LocalAI/pull/4822](https://redirect.github.com/mudler/LocalAI/pull/4822)l/4822 * chore(model gallery): add sicariussicariistuff_phi-lthy4 by @​mudl[https://github.com/mudler/LocalAI/pull/4826](https://redirect.github.com/mudler/LocalAI/pull/4826)l/4826 * chore(model gallery): add open-thoughts_openthinker-32b by @​mudl[https://github.com/mudler/LocalAI/pull/4827](https://redirect.github.com/mudler/LocalAI/pull/4827)l/4827 * chore(model gallery): add nousresearch_deephermes-3-llama-3-8b-preview by @​mudl[https://github.com/mudler/LocalAI/pull/4828](https://redirect.github.com/mudler/LocalAI/pull/4828)l/4828 * chore(model gallery): add rombo-org_rombo-llm-v3.0-qwen-32b by @​mudl[https://github.com/mudler/LocalAI/pull/4830](https://redirect.github.com/mudler/LocalAI/pull/4830)l/4830 * chore(model gallery): add pygmalionai_eleusis-12b by @​mudl[https://github.com/mudler/LocalAI/pull/4832](https://redirect.github.com/mudler/LocalAI/pull/4832)l/4832 * chore(model gallery): add davidbrowne17_llamathink-8b-instruct by @​mudl[https://github.com/mudler/LocalAI/pull/4833](https://redirect.github.com/mudler/LocalAI/pull/4833)l/4833 ##### 📖 Documentation and examples * docs: update advanced-usage.md to reflect changes in #​4700 by @​mKen[https://github.com/mudler/LocalAI/pull/4709](https://redirect.github.com/mudler/LocalAI/pull/4709)AI/pull/4709 ##### 👒 Dependencies * chore: ⬆️ Update ggerganov/llama.cpp to `c05e8c9934f94fde49bc1bc9dc51eed282605150` by @​localai-b[https://github.com/mudler/LocalAI/pull/4579](https://redirect.github.com/mudler/LocalAI/pull/4579)l/4579 * chore(deps): bump llama.cpp to '924518e2e5726e81f3aeb2518fb85963a500e… by @​mudl[https://github.com/mudler/LocalAI/pull/4592](https://redirect.github.com/mudler/LocalAI/pull/4592)l/4592 * chore(deps): Bump securego/gosec from 2.21.4 to 2.22.0 by @​dependab[https://github.com/mudler/LocalAI/pull/4594](https://redirect.github.com/mudler/LocalAI/pull/4594)l/4594 * chore: ⬆️ Update ggerganov/llama.cpp to `504af20ee4eae72080a56d59d744f6774f7901ce` by @​localai-b[https://github.com/mudler/LocalAI/pull/4597](https://redirect.github.com/mudler/LocalAI/pull/4597)l/4597 * chore: ⬆️ Update ggerganov/llama.cpp to `b4d92a59a20eea400d8dd30844a339b76210daa0` by @​localai-b[https://github.com/mudler/LocalAI/pull/4606](https://redirect.github.com/mudler/LocalAI/pull/4606)l/4606 * chore: ⬆️ Update ggerganov/llama.cpp to `adc5dd92e8aea98f5e7ac84f6e1bc15de35130b5` by @​localai-b[https://github.com/mudler/LocalAI/pull/4612](https://redirect.github.com/mudler/LocalAI/pull/4612)l/4612 * chore: ⬆️ Update ggerganov/llama.cpp to `4dbc8b9cb71876e005724f4e8f73a3544646bcf5` by @​localai-b[https://github.com/mudler/LocalAI/pull/4618](https://redirect.github.com/mudler/LocalAI/pull/4618)l/4618 * chore(deps): Bump scipy from 1.14.0 to 1.15.1 in /backend/python/transformers by @​dependab[https://github.com/mudler/LocalAI/pull/4621](https://redirect.github.com/mudler/LocalAI/pull/4621)l/4621 * chore(llama.cpp): update dependency by @​mudl[https://github.com/mudler/LocalAI/pull/4628](https://redirect.github.com/mudler/LocalAI/pull/4628)l/4628 * chore: ⬆️ Update leejet/stable-diffusion.cpp to `5eb15ef4d022bef4a391de4f5f6556e81fbb5024` by @​localai-b[https://github.com/mudler/LocalAI/pull/4636](https://redirect.github.com/mudler/LocalAI/pull/4636)l/4636 * chore: ⬆️ Update ggerganov/llama.cpp to `a1649cc13f89946322358f92ea268ae1b7b5096c` by @​localai-b[https://github.com/mudler/LocalAI/pull/4635](https://redirect.github.com/mudler/LocalAI/pull/4635)l/4635 * chore: ⬆️ Update ggerganov/llama.cpp to `92bc493917d43b83e592349e138b54c90b1c3ea7` by @​localai-b[https://github.com/mudler/LocalAI/pull/4640](https://redirect.github.com/mudler/LocalAI/pull/4640)l/4640 * chore(deps): Bump docs/themes/hugo-theme-relearn from `80e448e` to `8dad5ee` by @​dependab[https://github.com/mudler/LocalAI/pull/4656](https://redirect.github.com/mudler/LocalAI/pull/4656)l/4656 * chore: ⬆️ Update ggerganov/llama.cpp to `aea8ddd5165d525a449e2fc3839db77a71f4a318` by @​localai-b[https://github.com/mudler/LocalAI/pull/4657](https://redirect.github.com/mudler/LocalAI/pull/4657)l/4657 * chore: ⬆️ Update ggerganov/llama.cpp to `6171c9d25820ccf676b243c172868819d882848f` by @​localai-b[https://github.com/mudler/LocalAI/pull/4661](https://redirect.github.com/mudler/LocalAI/pull/4661)l/4661 * chore: ⬆️ Update ggerganov/llama.cpp to `6152129d05870cb38162c422c6ba80434e021e9f` by @​localai-b[https://github.com/mudler/LocalAI/pull/4668](https://redirect.github.com/mudler/LocalAI/pull/4668)l/4668 * chore(parler-tts): drop backend by @​mudl[https://github.com/mudler/LocalAI/pull/4672](https://redirect.github.com/mudler/LocalAI/pull/4672)l/4672 * chore: ⬆️ Update ggerganov/llama.cpp to `c5d9effb49649db80a52caf5c0626de6f342f526` by @​localai-b[https://github.com/mudler/LocalAI/pull/4685](https://redirect.github.com/mudler/LocalAI/pull/4685)l/4685 * chore: ⬆️ Update ggerganov/llama.cpp to `26771a1491f3a4c3d5b99c4c267b81aca9a7dfa0` by @​localai-b[https://github.com/mudler/LocalAI/pull/4690](https://redirect.github.com/mudler/LocalAI/pull/4690)l/4690 * chore: ⬆️ Update ggerganov/llama.cpp to `178a7eb952d211b8d4232d5e50ae1b64519172a9` by @​localai-b[https://github.com/mudler/LocalAI/pull/4694](https://redirect.github.com/mudler/LocalAI/pull/4694)l/4694 * chore(deps): Bump sentence-transformers from 3.3.1 to 3.4.0 in /backend/python/transformers by @​dependab[https://github.com/mudler/LocalAI/pull/4702](https://redirect.github.com/mudler/LocalAI/pull/4702)l/4702 * chore(deps): Bump docs/themes/hugo-theme-relearn from `8dad5ee` to `5bcb9fe` by @​dependab[https://github.com/mudler/LocalAI/pull/4704](https://redirect.github.com/mudler/LocalAI/pull/4704)l/4704 * chore: ⬆️ Update ggerganov/llama.cpp to `a4417ddda98fd0558fb4d802253e68a933704b59` by @​localai-b[https://github.com/mudler/LocalAI/pull/4705](https://redirect.github.com/mudler/LocalAI/pull/4705)l/4705 * chore(deps): Bump dependabot/fetch-metadata from 2.2.0 to 2.3.0 by @​dependab[https://github.com/mudler/LocalAI/pull/4701](https://redirect.github.com/mudler/LocalAI/pull/4701)l/4701 * chore: ⬆️ Update ggerganov/llama.cpp to `cae9fb4361138b937464524eed907328731b81f6` by @​localai-b[https://github.com/mudler/LocalAI/pull/4711](https://redirect.github.com/mudler/LocalAI/pull/4711)l/4711 * chore: ⬆️ Update ggerganov/llama.cpp to `eb7cf15a808d4d7a71eef89cc6a9b96fe82989dc` by @​localai-b[https://github.com/mudler/LocalAI/pull/4717](https://redirect.github.com/mudler/LocalAI/pull/4717)l/4717 * chore: ⬆️ Update ggerganov/llama.cpp to `8b576b6c55bc4e6be898b47522f0ef402b93ef62` by @​localai-b[https://github.com/mudler/LocalAI/pull/4722](https://redirect.github.com/mudler/LocalAI/pull/4722)l/4722 * chore: ⬆️ Update ggerganov/llama.cpp to `aa6fb1321333fae8853d0cdc26bcb5d438e650a1` by @​localai-b[https://github.com/mudler/LocalAI/pull/4728](https://redirect.github.com/mudler/LocalAI/pull/4728)l/4728 * chore: ⬆️ Update ggerganov/llama.cpp to `53debe6f3c9cca87e9520a83ee8c14d88977afa4` by @​localai-b[https://github.com/mudler/LocalAI/pull/4732](https://redirect.github.com/mudler/LocalAI/pull/4732)l/4732 * chore: ⬆️ Update ggerganov/llama.cpp to `90f9b88afb6447d3929843a2aa98c0f11074762d` by @​localai-b[https://github.com/mudler/LocalAI/pull/4736](https://redirect.github.com/mudler/LocalAI/pull/4736)l/4736 * chore(deps): Bump GrantBirki/git-diff-action from 2.7.0 to 2.8.0 by @​dependab[https://github.com/mudler/LocalAI/pull/4746](https://redirect.github.com/mudler/LocalAI/pull/4746)l/4746 * chore: ⬆️ Update ggerganov/llama.cpp to `5598f475be3e31430fbe17ebb85654ec90dc201e` by @​localai-b[https://github.com/mudler/LocalAI/pull/4757](https://redirect.github.com/mudler/LocalAI/pull/4757)l/4757 * chore(deps): Bump sentence-transformers from 3.4.0 to 3.4.1 in /backend/python/transformers by @​dependab[https://github.com/mudler/LocalAI/pull/4748](https://redirect.github.com/mudler/LocalAI/pull/4748)l/4748 * chore(deps): Bump docs/themes/hugo-theme-relearn from `5bcb9fe` to `66bc366` by @​dependab[https://github.com/mudler/LocalAI/pull/4750](https://redirect.github.com/mudler/LocalAI/pull/4750)l/4750 * chore: ⬆️ Update ggerganov/llama.cpp to `3ec9fd4b77b6aca03a3c2bf678eae3f9517d6904` by @​localai-b[https://github.com/mudler/LocalAI/pull/4762](https://redirect.github.com/mudler/LocalAI/pull/4762)l/4762 * chore: ⬆️ Update leejet/stable-diffusion.cpp to `d46ed5e184b97c2018dc2e8105925bdb8775e02c` by @​localai-b[https://github.com/mudler/LocalAI/pull/4769](https://redirect.github.com/mudler/LocalAI/pull/4769)l/4769 * chore: ⬆️ Update ggerganov/llama.cpp to `d774ab3acc4fee41fbed6dbfc192b57d5f79f34b` by @​localai-b[https://github.com/mudler/LocalAI/pull/4770](https://redirect.github.com/mudler/LocalAI/pull/4770)l/4770 * chore: ⬆️ Update ggerganov/llama.cpp to `8a59053f63fffc24e730cd3ea067760abfe4a919` by @​localai-b[https://github.com/mudler/LocalAI/pull/4776](https://redirect.github.com/mudler/LocalAI/pull/4776)l/4776 * chore: ⬆️ Update ggerganov/llama.cpp to `d2fe216fb2fb7ca8627618c9ea3a2e7886325780` by @​localai-b[https://github.com/mudler/LocalAI/pull/4780](https://redirect.github.com/mudler/LocalAI/pull/4780)l/4780 * chore: ⬆️ Update ggerganov/llama.cpp to `e6e658319952f7ad269dc11275b9edddc721fc6d` by @​localai-b[https://github.com/mudler/LocalAI/pull/4787](https://redirect.github.com/mudler/LocalAI/pull/4787)l/4787 * chore: ⬆️ Update ggerganov/llama.cpp to `19d3c8293b1f61acbe2dab1d49a17950fd788a4a` by @​localai-b[https://github.com/mudler/LocalAI/pull/4793](https://redirect.github.com/mudler/LocalAI/pull/4793)l/4793 * chore(deps): Bump docs/themes/lotusdocs from `f5785a2` to `975da91` by @​dependab[https://github.com/mudler/LocalAI/pull/4801](https://redirect.github.com/mudler/LocalAI/pull/4801)l/4801 * chore: ⬆️ Update ggerganov/llama.cpp to `19b392d58dc08c366d0b29bd3b9c6991fa4e1662` by @​localai-b[https://github.com/mudler/LocalAI/pull/4803](https://redirect.github.com/mudler/LocalAI/pull/4803)l/4803 * chore: ⬆️ Update ggerganov/llama.cpp to `90e4dba461b07e635fd1daf3b491c978c7dd0013` by @​localai-b[https://github.com/mudler/LocalAI/pull/4810](https://redirect.github.com/mudler/LocalAI/pull/4810)l/4810 * chore: ⬆️ Update ggerganov/llama.cpp to `0fb77f821f6e70ad8b8247a97d1022f0fef78991` by @​localai-b[https://github.com/mudler/LocalAI/pull/4814](https://redirect.github.com/mudler/LocalAI/pull/4814)l/4814 * chore: ⬆️ Update ggerganov/llama.cpp to `8a8c4ceb6050bd9392609114ca56ae6d26f5b8f5` by @​localai-b[https://github.com/mudler/LocalAI/pull/4825](https://redirect.github.com/mudler/LocalAI/pull/4825)l/4825 * chore: ⬆️ Update ggerganov/llama.cpp to `300907b2110cc17b4337334dc397e05de2d8f5e0` by @​localai-b[https://github.com/mudler/LocalAI/pull/4829](https://redirect.github.com/mudler/LocalAI/pull/4829)l/4829 ##### Other Changes * docs: ⬆️ update docs version mudler/LocalAI by @​localai-b[https://github.com/mudler/LocalAI/pull/4578](https://redirect.github.com/mudler/LocalAI/pull/4578)l/4578 * chore(stablediffusion-ggml): disable sycl optimizations by @​mudl[https://github.com/mudler/LocalAI/pull/4598](https://redirect.github.com/mudler/LocalAI/pull/4598)l/4598 * chore: alias transformers-musicgen to transformers by @​mudl[https://github.com/mudler/LocalAI/pull/4623](https://redirect.github.com/mudler/LocalAI/pull/4623)l/4623 * feat(swagger): update swagger by @​localai-b[https://github.com/mudler/LocalAI/pull/4625](https://redirect.github.com/mudler/LocalAI/pull/4625)l/4625 * feat(swagger): update swagger by @​localai-b[https://github.com/mudler/LocalAI/pull/4667](https://redirect.github.com/mudler/LocalAI/pull/4667)l/4667 * chore(refactor): group cpu cap detection by @​mudl[https://github.com/mudler/LocalAI/pull/4674](https://redirect.github.com/mudler/LocalAI/pull/4674)l/4674 * chore(deps): bump grpcio to 1.70.0 by @​mudl[https://github.com/mudler/LocalAI/pull/4682](https://redirect.github.com/mudler/LocalAI/pull/4682)l/4682 * refactor: function argument parsing using named regex by @​mKenfenheu[https://github.com/mudler/LocalAI/pull/4708](https://redirect.github.com/mudler/LocalAI/pull/4708)l/4708 * fix(tests): pin to branch for config used in tests by @​mudl[https://github.com/mudler/LocalAI/pull/4721](https://redirect.github.com/mudler/LocalAI/pull/4721)l/4721 * feat(swagger): update swagger by @​localai-b[https://github.com/mudler/LocalAI/pull/4735](https://redirect.github.com/mudler/LocalAI/pull/4735)l/4735 * chore: migrate bruno request files to examples repo by @​dave-gray1[https://github.com/mudler/LocalAI/pull/4788](https://redirect.github.com/mudler/LocalAI/pull/4788)l/4788 * chore(tests): decrease parallelism for gRPC builds by @​mudl[https://github.com/mudler/LocalAI/pull/4797](https://redirect.github.com/mudler/LocalAI/pull/4797)l/4797 * chore(grpcio): bump to 1.70 by @​mudl[https://github.com/mudler/LocalAI/pull/4798](https://redirect.github.com/mudler/LocalAI/pull/4798)l/4798 * chore(grpcio): reduce parallelism by @​mudl[https://github.com/mudler/LocalAI/pull/4799](https://redirect.github.com/mudler/LocalAI/pull/4799)l/4799 * chore(swagger): update by @​mudl[https://github.com/mudler/LocalAI/pull/4805](https://redirect.github.com/mudler/LocalAI/pull/4805)l/4805 * Revert "chore(deps): Bump docs/themes/lotusdocs from `f5785a2` to `975da91`" by @​mudl[https://github.com/mudler/LocalAI/pull/4808](https://redirect.github.com/mudler/LocalAI/pull/4808)l/4808 * feat(swagger): update swagger by @​localai-b[https://github.com/mudler/LocalAI/pull/4809](https://redirect.github.com/mudler/LocalAI/pull/4809)l/4809 </details> ##### New Contributors * @​petercover made their first contributi[https://github.com/mudler/LocalAI/pull/4665](https://redirect.github.com/mudler/LocalAI/pull/4665)l/4665 * @​mKenfenheuer made their first contributi[https://github.com/mudler/LocalAI/pull/4700](https://redirect.github.com/mudler/LocalAI/pull/4700)l/4700 **Full Changelog**: https://github.com/mudler/LocalAI/compare/v2.25.0...v2.26.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:eyJjcmVhdGVkSW5WZXIiOiIzOS4xNjQuMCIsInVwZGF0ZWRJblZlciI6IjM5LjE2NC4wIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImF1dG9tZXJnZSIsInJlbm92YXRlL2NvbnRhaW5lciIsInR5cGUvbWlub3IiXX0=-->
37 lines
997 B
YAML
37 lines
997 B
YAML
annotations:
|
|
max_scale_version: 24.04.1
|
|
min_scale_version: 24.04.0
|
|
truecharts.org/category: ai
|
|
truecharts.org/max_helm_version: "3.15"
|
|
truecharts.org/min_helm_version: "3.11"
|
|
truecharts.org/train: stable
|
|
apiVersion: v2
|
|
appVersion: 2.26.0
|
|
dependencies:
|
|
- name: common
|
|
version: 25.4.10
|
|
repository: oci://tccr.io/truecharts
|
|
condition: ""
|
|
alias: ""
|
|
tags: []
|
|
import-values: []
|
|
deprecated: false
|
|
description: Self-hosted, community-driven, local OpenAI-compatible API.
|
|
home: https://truecharts.org/charts/stable/local-ai
|
|
icon: https://truecharts.org/img/hotlink-ok/chart-icons/local-ai.webp
|
|
keywords:
|
|
- local-ai
|
|
- ai
|
|
kubeVersion: '>=1.24.0-0'
|
|
maintainers:
|
|
- name: TrueCharts
|
|
email: info@truecharts.org
|
|
url: https://truecharts.org
|
|
name: local-ai
|
|
sources:
|
|
- https://github.com/go-skynet/LocalAI
|
|
- https://github.com/truecharts/charts/tree/master/charts/stable/local-ai
|
|
- https://hub.docker.com/r/localai/localai
|
|
type: application
|
|
version: 11.56.0
|