From 49d026a2292871842a83e7f4823df36c7c2e7041 Mon Sep 17 00:00:00 2001 From: Ettore Di Giacinto Date: Thu, 19 Jun 2025 19:47:09 +0200 Subject: [PATCH] Update backends.md Signed-off-by: Ettore Di Giacinto --- docs/content/docs/features/backends.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/content/docs/features/backends.md b/docs/content/docs/features/backends.md index 2a9015c4..83b4cc1d 100644 --- a/docs/content/docs/features/backends.md +++ b/docs/content/docs/features/backends.md @@ -91,6 +91,13 @@ Your backend container should: 5. Have a top level `run.sh` file that will be used to run the backend 6. Pushed to a registry so can be used in a gallery +### Getting started + +For getting started, see the available backends in LocalAI here: https://github.com/mudler/LocalAI/tree/master/backend . + +- For Python based backends there is a template that can be used as starting point: https://github.com/mudler/LocalAI/tree/master/backend/python/common/template . +- For Golang based backends, you can see the `bark-cpp` backend as an example: https://github.com/mudler/LocalAI/tree/master/backend/go/bark +- For C++ based backends, you can see the `llama-cpp` backend as an example: https://github.com/mudler/LocalAI/tree/master/backend/cpp/llama ### Publishing Your Backend @@ -116,4 +123,4 @@ LocalAI supports various types of backends: - **LLM Backends**: For running language models - **Diffusion Backends**: For image generation - **TTS Backends**: For text-to-speech conversion -- **Whisper Backends**: For speech-to-text conversion \ No newline at end of file +- **Whisper Backends**: For speech-to-text conversion