diff --git a/custom_components/llmvision/config_flow.py b/custom_components/llmvision/config_flow.py index 7c1a740..13b4717 100644 --- a/custom_components/llmvision/config_flow.py +++ b/custom_components/llmvision/config_flow.py @@ -199,7 +199,7 @@ async def async_step_openwebui(self, user_input=None): vol.Required(CONF_OPENWEBUI_API_KEY): str, vol.Required(CONF_OPENWEBUI_DEFAULT_MODEL, default="minicpm-v"): str, vol.Required(CONF_OPENWEBUI_IP_ADDRESS): str, - vol.Required(CONF_OPENWEBUI_PORT, default=11434): int, + vol.Required(CONF_OPENWEBUI_PORT, default=3000): int, vol.Required(CONF_OPENWEBUI_HTTPS, default=False): bool, }) diff --git a/custom_components/llmvision/strings.json b/custom_components/llmvision/strings.json index 3f440b7..ec88075 100644 --- a/custom_components/llmvision/strings.json +++ b/custom_components/llmvision/strings.json @@ -94,8 +94,8 @@ "openwebui_api_key": "API Key (JWT token)", "openwebui_ip": "IP Address", "openwebui_port": "Port", - "openwebui_https": "Whether to use HTTPS", - "openwebui_default_model": "The default model to use" + "openwebui_https": "Use HTTPS", + "openwebui_default_model": "Default model" } } }, diff --git a/custom_components/llmvision/translations/de.json b/custom_components/llmvision/translations/de.json index e3a4ade..acdedbb 100644 --- a/custom_components/llmvision/translations/de.json +++ b/custom_components/llmvision/translations/de.json @@ -94,7 +94,7 @@ "openwebui_api_key": "API Key (JWT token)", "openwebui_ip": "IP Addresse", "openwebui_port": "Port", - "openwebui_https": "HTTPS", + "openwebui_https": "HTTPS verwenden", "openwebui_default_model": "Standardmodell" } } diff --git a/custom_components/llmvision/translations/en.json b/custom_components/llmvision/translations/en.json index 0ab7e2c..5742ab8 100644 --- a/custom_components/llmvision/translations/en.json +++ b/custom_components/llmvision/translations/en.json @@ -94,8 +94,8 @@ "openwebui_api_key": "API Key (JWT token)", "openwebui_ip": "IP Address", "openwebui_port": "Port", - "openwebui_https": "Whether to use HTTPS", - "openwebui_default_model": "The default model to use" + "openwebui_https": "Use HTTPS", + "openwebui_default_model": "Default model" } } },