From f7d1fb46e67852438437e8530c06a8da1126841a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Valentin=20Fr=C3=B6hlich?= <85313672+valentinfrlch@users.noreply.github.com> Date: Fri, 7 Feb 2025 08:10:14 +0100 Subject: [PATCH] Add openwebui CONF --- custom_components/llmvision/const.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/custom_components/llmvision/const.py b/custom_components/llmvision/const.py index 7284220..d6c5fa5 100644 --- a/custom_components/llmvision/const.py +++ b/custom_components/llmvision/const.py @@ -26,6 +26,11 @@ CONF_AWS_SECRET_ACCESS_KEY = 'aws_secret_access_key' CONF_AWS_REGION_NAME = 'aws_region_name' CONF_AWS_DEFAULT_MODEL = 'aws_default_model' +CONF_OPENWEBUI_IP_ADDRESS = 'openwebui_ip' +CONF_OPENWEBUI_PORT = 'openwebui_port' +CONF_OPENWEBUI_HTTPS = 'openwebui_https' +CONF_OPENWEBUI_API_KEY = 'openwebui_api_key' +CONF_OPENWEBUI_DEFAULT_MODEL = 'openwebui_default_model' # service call constants MESSAGE = 'message'