From 3afb54f4d76f23003689ce0ca7f2f04425c11b12 Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Sat, 15 Mar 2025 15:46:30 +0100 Subject: [PATCH] feat(sgx): update OpenWebUI configuration for API settings - Enable Ollama API by setting `ENABLE_OLLAMA_API` to true. - Disable OpenAI API by setting `ENABLE_OPENAI_API` to false. This improves control over API usage and ensures proper configuration. --- systems/x86_64-linux/sgx/openwebui.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/systems/x86_64-linux/sgx/openwebui.nix b/systems/x86_64-linux/sgx/openwebui.nix index fed3e21..3605a1f 100644 --- a/systems/x86_64-linux/sgx/openwebui.nix +++ b/systems/x86_64-linux/sgx/openwebui.nix @@ -8,7 +8,9 @@ ANONYMIZED_TELEMETRY = "False"; DO_NOT_TRACK = "True"; SCARF_NO_ANALYTICS = "True"; + ENABLE_OLLAMA_API = "True"; OLLAMA_API_BASE_URL = "http://m4.local:11434"; + ENABLE_OPENAI_API = "False"; # Disable authentication WEBUI_AUTH = "False"; };