From fc056b1397129821142d22e2f70e8b6f92010a65 Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Sat, 8 Mar 2025 18:06:08 +0000 Subject: [PATCH 1/5] Update bug_report.yaml --- .github/ISSUE_TEMPLATE/bug_report.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml index 171a82ca8..d69a64263 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -27,6 +27,8 @@ body: options: - label: I have searched the existing issues and discussions. required: true + - label: I am using the latest version of Open WebUI. + required: true - type: dropdown id: installation-method From 165e861a1d533f08b5fbb7cf6f933a9542f2c89c Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Sat, 8 Mar 2025 18:08:51 +0000 Subject: [PATCH 2/5] Create config.yaml --- .github/ISSUE_TEMPLATE/config.yaml | 1 + 1 file changed, 1 insertion(+) create mode 100644 .github/ISSUE_TEMPLATE/config.yaml diff --git a/.github/ISSUE_TEMPLATE/config.yaml b/.github/ISSUE_TEMPLATE/config.yaml new file mode 100644 index 000000000..3ba13e0ce --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yaml @@ -0,0 +1 @@ +blank_issues_enabled: false From c1d2e0d999a963b90b0b5d6d73b9f7dd500313d4 Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Sat, 8 Mar 2025 18:10:34 +0000 Subject: [PATCH 3/5] refac --- .github/ISSUE_TEMPLATE/{config.yaml => config.yml} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .github/ISSUE_TEMPLATE/{config.yaml => config.yml} (100%) diff --git a/.github/ISSUE_TEMPLATE/config.yaml b/.github/ISSUE_TEMPLATE/config.yml similarity index 100% rename from .github/ISSUE_TEMPLATE/config.yaml rename to .github/ISSUE_TEMPLATE/config.yml From a75f82755d48aa4e84c010875df525971e7ce3ea Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Sat, 8 Mar 2025 18:13:28 +0000 Subject: [PATCH 4/5] Update bug_report.yaml --- .github/ISSUE_TEMPLATE/bug_report.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml index d69a64263..feecd16c7 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -85,9 +85,9 @@ body: required: true - label: I am using the latest version of **both** Open WebUI and Ollama. required: true - - label: I have checked the browser console logs. + - label: I have included the browser console logs. required: true - - label: I have checked the Docker container logs. + - label: I have included the Docker container logs. required: true - label: I have listed steps to reproduce the bug in detail. required: true @@ -112,7 +112,7 @@ body: id: reproduction-steps attributes: label: Steps to Reproduce - description: Provide step-by-step instructions to reproduce the issue. + description: Providing clear, step-by-step instructions helps us reproduce and fix the issue faster. If we can't reproduce it, we can't fix it. placeholder: | 1. Go to '...' 2. Click on '...' From 084e2caf6f93e942636501d9fe59c113800cc18d Mon Sep 17 00:00:00 2001 From: Tristan H <108023962+captn-hook@users.noreply.github.com> Date: Sat, 8 Mar 2025 15:43:49 -0800 Subject: [PATCH 5/5] Update config.py to correctly handle environment strings As seen in line 1536 just above this, strings need to be converted to bools in order to work. --- backend/open_webui/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/open_webui/config.py b/backend/open_webui/config.py index ec53a5f3d..2f45378e1 100644 --- a/backend/open_webui/config.py +++ b/backend/open_webui/config.py @@ -1579,8 +1579,8 @@ QDRANT_API_KEY = os.environ.get("QDRANT_API_KEY", None) # OpenSearch OPENSEARCH_URI = os.environ.get("OPENSEARCH_URI", "https://localhost:9200") -OPENSEARCH_SSL = os.environ.get("OPENSEARCH_SSL", True) -OPENSEARCH_CERT_VERIFY = os.environ.get("OPENSEARCH_CERT_VERIFY", False) +OPENSEARCH_SSL = os.environ.get("OPENSEARCH_SSL", "true").lower() == "true" +OPENSEARCH_CERT_VERIFY = os.environ.get("OPENSEARCH_CERT_VERIFY", "false").lower() == "true" OPENSEARCH_USERNAME = os.environ.get("OPENSEARCH_USERNAME", None) OPENSEARCH_PASSWORD = os.environ.get("OPENSEARCH_PASSWORD", None)