From 98f28bf583af1629fbe1ff254ea69584d63e0cd5 Mon Sep 17 00:00:00 2001 From: Richard Palethorpe Date: Thu, 8 Jan 2026 20:39:25 +0000 Subject: [PATCH] chore(docs): Add Crush and VoxInput to the integrations (#7924) * chore(docs): Add Crush and VoxInput to the integrations Signed-off-by: Richard Palethorpe * Apply suggestion from @mudler Signed-off-by: Ettore Di Giacinto --------- Signed-off-by: Richard Palethorpe Signed-off-by: Ettore Di Giacinto Co-authored-by: Ettore Di Giacinto --- docs/content/integrations.md | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/docs/content/integrations.md b/docs/content/integrations.md index e270e60d1..4851267de 100644 --- a/docs/content/integrations.md +++ b/docs/content/integrations.md @@ -32,6 +32,7 @@ The list below is a list of software that integrates with LocalAI. - [GPTLocalhost (Word Add-in)](https://gptlocalhost.com/demo#LocalAI) - run LocalAI in Microsoft Word locally - use LocalAI from Nextcloud with the [integration plugin](https://apps.nextcloud.com/apps/integration_openai) and [AI assistant](https://apps.nextcloud.com/apps/assistant) - [Langchain](https://docs.langchain.com/oss/python/integrations/providers/localai) integration package [pypi](https://pypi.org/project/langchain-localai/) +- [VoxInput](https://github.com/richiejp/VoxInput) - Use voice to control your desktop Feel free to open up a Pull request (by clicking at the "Edit page" below) to get a page for your project made or if you see a error on one of the pages! @@ -105,6 +106,36 @@ This section provides step-by-step instructions for configuring specific softwar After saving the configuration file, restart OpenCode for the changes to take effect. +### Charm Crush + +You can ask [Charm Crush](https://charm.land/crush) to generate your config by giving it this documentation's URL and your LocalAI instance URL. The configuration will look something like the following and goes in `~/.config/crush/crush.json`: +```json +{ + "$schema": "https://charm.land/crush.json", + "providers": { + "localai": { + "name": "LocalAI", + "base_url": "http://localai.lan:8081/v1", + "type": "openai-compat", + "models": [ + { + "id": "qwen3-coder-480b-a35b-instruct", + "name": "Qwen 3 Coder 480b", + "context_window": 256000 + }, + { + "id": "qwen3-30b-a3b", + "name": "Qwen 3 30b a3b", + "context_window": 32000 + } + ] + } + } +} +``` + +A list of models can be fetched with `https:///v1/models` by crush itself and appropriate models added to the provider list. Crush does not appear to be optimized for smaller models. + ### GitHub Actions You can use LocalAI in GitHub Actions workflows to perform AI-powered tasks like code review, diff summarization, or automated analysis. The [LocalAI GitHub Action](https://github.com/mudler/localai-github-action) makes it easy to spin up a LocalAI instance in your CI/CD pipeline.