From 973c18edb2536a08b573eadc6d9641100637eca6 Mon Sep 17 00:00:00 2001 From: ibizaman Date: Thu, 25 Jun 2026 08:55:00 +0200 Subject: [PATCH] open-webui: more consistent example --- modules/services/open-webui.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/services/open-webui.nix b/modules/services/open-webui.nix index 4b26a87..370c27e 100644 --- a/modules/services/open-webui.nix +++ b/modules/services/open-webui.nix @@ -59,12 +59,12 @@ in WEBUI_NAME = "SelfHostBlocks"; OLLAMA_BASE_URL = "http://127.0.0.1:''${toString config.services.ollama.port}"; + RAG_EMBEDDING_ENGINE = "ollama"; RAG_EMBEDDING_MODEL = "nomic-embed-text:v1.5"; ENABLE_OPENAI_API = "True"; OPENAI_API_BASE_URL = "http://127.0.0.1:''${toString config.services.llama-cpp.port}"; ENABLE_WEB_SEARCH = "True"; - RAG_EMBEDDING_ENGINE = "openai"; } ''; };