From d5b903234df23cd4692f972b340ea690e6c5e382 Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Wed, 10 Sep 2025 12:57:13 +0400 Subject: [PATCH 1/5] chore: PR template Co-Authored-By: Classic298 <27028174+Classic298@users.noreply.github.com> --- .github/pull_request_template.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/pull_request_template.md b/.github/pull_request_template.md index 7f603cb10c..3d8b516ede 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -73,4 +73,4 @@ ### Contributor License Agreement -By submitting this pull request, I confirm that I have read and fully agree to the [Contributor License Agreement (CLA)](/CONTRIBUTOR_LICENSE_AGREEMENT), and I am providing my contributions under its terms. +By submitting this pull request, I confirm that I have read and fully agree to the [Contributor License Agreement (CLA)](https://github.com/open-webui/open-webui/blob/main/CONTRIBUTOR_LICENSE_AGREEMENT), and I am providing my contributions under its terms. \ No newline at end of file From 956cb7beaa743a4d4038ab3b6b8778c9ce538246 Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Wed, 10 Sep 2025 13:49:19 +0400 Subject: [PATCH 2/5] fix: openai connections key --- src/lib/components/admin/Settings/Connections.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib/components/admin/Settings/Connections.svelte b/src/lib/components/admin/Settings/Connections.svelte index 03897accc6..91926dd6a3 100644 --- a/src/lib/components/admin/Settings/Connections.svelte +++ b/src/lib/components/admin/Settings/Connections.svelte @@ -262,7 +262,7 @@ {#each OPENAI_API_BASE_URLS as url, idx} { From d5cb65527eaa4831459a4c7dbf187daa9c0525ae Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Wed, 10 Sep 2025 13:52:34 +0400 Subject: [PATCH 3/5] fix: prompt template --- src/lib/components/chat/MessageInput.svelte | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/lib/components/chat/MessageInput.svelte b/src/lib/components/chat/MessageInput.svelte index dbac52ad59..046085beb3 100644 --- a/src/lib/components/chat/MessageInput.svelte +++ b/src/lib/components/chat/MessageInput.svelte @@ -385,6 +385,9 @@ } await tick(); + text = await inputVariableHandler(text); + await tick(); + const chatInputContainer = document.getElementById('chat-input-container'); if (chatInputContainer) { chatInputContainer.scrollTop = chatInputContainer.scrollHeight; From c51a65173e8425efa4461311448f46a16e3a6cf3 Mon Sep 17 00:00:00 2001 From: Timothy Jaeryang Baek Date: Wed, 10 Sep 2025 13:55:29 +0400 Subject: [PATCH 4/5] enh: folder modal focus title --- .../layout/Sidebar/Folders/FolderModal.svelte | 19 +++++++++++++++++-- 1 file changed, 17 insertions(+), 2 deletions(-) diff --git a/src/lib/components/layout/Sidebar/Folders/FolderModal.svelte b/src/lib/components/layout/Sidebar/Folders/FolderModal.svelte index f6e4a523ca..4b62edb0d5 100644 --- a/src/lib/components/layout/Sidebar/Folders/FolderModal.svelte +++ b/src/lib/components/layout/Sidebar/Folders/FolderModal.svelte @@ -1,5 +1,5 @@