Sihyeon Jang
6ae6cc9741
perf: optimize get_notes_by_user_id to reduce database queries
...
- Replace inefficient memory-based filtering with database-level filtering
- Add proper access control conditions to SQL query
- Reduce memory usage by filtering at database level instead of loading all notes
- Maintain access control validation with post-filtering for complex cases
This change significantly improves performance for users with many notes
by reducing the number of database queries and memory usage.
Signed-off-by: Sihyeon Jang <sihyeon.jang@navercorp.com>
2025-09-20 06:33:24 +09:00
Timothy Jaeryang Baek
e4c4ba0979
fix: oauth token
2025-09-19 00:10:48 -05:00
Timothy Jaeryang Baek
60f62c2f59
refac
2025-09-17 11:28:04 -05:00
Timothy Jaeryang Baek
c01255570b
chore: format
2025-09-17 11:11:46 -05:00
Timothy Jaeryang Baek
caf0a1fbb6
feat: Allow Azure OpenAI to authenticate using DefaultAzureCredential
...
Co-Authored-By: Selene Blok <20491756+selenecodes@users.noreply.github.com>
2025-09-17 11:04:47 -05:00
Timothy Jaeryang Baek
c96252f7fe
refac/fix: WHISPER_LANGUAGE
2025-09-17 10:46:11 -05:00
Timothy Jaeryang Baek
4fe97d8794
feat: channel/thread @ model
2025-09-17 00:49:44 -05:00
Timothy Jaeryang Baek
1077b2ac8b
fix: send notification
2025-09-16 22:53:54 -05:00
Timothy Jaeryang Baek
bbd1d2b58c
enh: channel suggestions
2025-09-16 21:41:47 -05:00
Timothy Jaeryang Baek
f0856bcb46
refac
2025-09-16 16:15:52 -05:00
Timothy Jaeryang Baek
e66e0526ed
refac/enh: function valves validation
2025-09-16 12:00:59 -05:00
Timothy Jaeryang Baek
76d358bd6c
refac
2025-09-16 10:40:15 -05:00
Timothy Jaeryang Baek
c03ca7270e
refac/feat: note/knowledge/chat select input menu
2025-09-14 09:54:06 +02:00
Timothy Jaeryang Baek
9a55547827
refac/enh: model default filter/feature
2025-09-13 01:23:27 +04:00
Timothy Jaeryang Baek
051b6daa82
refac/fix: large file upload
2025-09-11 22:29:02 +04:00
Timothy Jaeryang Baek
6c0a5fa91c
refac
2025-09-11 21:56:59 +04:00
Timothy Jaeryang Baek
edc056351d
refac
2025-09-11 21:38:01 +04:00
Timothy Jaeryang Baek
2185fc61c0
refac
2025-09-11 21:29:56 +04:00
Timothy Jaeryang Baek
8339f59cdf
fix: openai audio revert
2025-09-10 14:02:19 +04:00
Classic298
f79a061113
Merge branch 'open-webui:main' into universal_file_deletion
2025-09-09 17:12:21 +02:00
Timothy Jaeryang Baek
485392fe63
chore: format
2025-09-09 18:19:31 +04:00
Timothy Jaeryang Baek
32cb9df3c4
refac/enh: knowledge ac backend validation
2025-09-09 18:08:31 +04:00
Tim Jaeryang Baek
71fd483fba
Merge pull request #17276 from Elettrotecnica/extend-docling-configuration
...
feat: Extend docling configuration options
2025-09-09 18:04:30 +04:00
Timothy Jaeryang Baek
d0f338bb99
refac/enh: ability to export/sync function valves
2025-09-09 17:48:41 +04:00
Antonio Pisano
daa2a036f8
Extend docling configuration options to include:
...
* do_ocr
* force_ocr
* pdf_backend
* table_mode
* pipeline
as per https://github.com/docling-project/docling-serve/blob/main/docs/usage.md
See https://github.com/open-webui/open-webui/issues/17148
2025-09-08 18:51:33 +02:00
Timothy Jaeryang Baek
6f6412dd16
refac
2025-09-08 19:53:44 +04:00
Timothy Jaeryang Baek
2b2d123531
refac: oauth auth type in openai connection
2025-09-08 19:42:50 +04:00
Timothy Jaeryang Baek
b5bb6ae177
refac
2025-09-08 18:50:23 +04:00
Timothy Jaeryang Baek
fc11e4384f
refac
2025-09-08 18:17:11 +04:00
Timothy Jaeryang Baek
217f4daef0
feat: server-side OAuth token management system
...
Co-Authored-By: Classic298 <27028174+Classic298@users.noreply.github.com>
2025-09-08 18:05:43 +04:00
Timothy Jaeryang Baek
6d38ac41b6
refac
2025-09-08 14:36:00 +04:00
Timothy Jaeryang Baek
91755309ce
refac
2025-09-08 14:18:25 +04:00
Timothy Jaeryang Baek
0a85dd4bca
refac: web search link display
2025-09-07 03:00:28 +04:00
Timothy Jaeryang Baek
c9282135c4
refac
2025-09-07 02:02:21 +04:00
Timothy Jaeryang Baek
40e40d1ddd
enh/sec: verify folder data integrity
...
#17182
2025-09-07 01:04:56 +04:00
Timothy Jaeryang Baek
9aac148908
fix: knowledge update backend issue
2025-09-06 23:44:29 +04:00
Timothy Jaeryang Baek
b70c0f36c0
enh: emoji folder icon
2025-09-04 02:50:50 +04:00
Tim Jaeryang Baek
048f30aa97
Merge pull request #17158 from sihyeonn/fix/sh-cache
...
perf: fix cache key generation for model list caching
2025-09-03 16:18:33 +04:00
Tim Jaeryang Baek
357a53eb6f
Merge pull request #17147 from anfuerer/dev
...
feat: Azure OpenAI image generation support
2025-09-03 14:12:48 +04:00
Sihyeon Jang
0503fbd2e3
perf: fix N+1 query issue in tools access control checking
...
- Pre-fetch user group IDs once per request in get_tools endpoint
- Pass user_group_ids to has_access to avoid repeated group queries
- Optimize access control validation from 1+N to 1+1 query pattern
- Reduce database load when checking multiple tools access permissions
Signed-off-by: Sihyeon Jang <sihyeon.jang@navercorp.com>
2025-09-03 05:49:53 +09:00
Sihyeon Jang
3ccbb46938
perf: fix cache key generation for model list caching
...
- Replace Request object with user.id in cache key for get_all_models
- Request objects are new instances per HTTP request, preventing cache hits
- Cache keys now use user.id ensuring proper cache functionality
- Affects both Ollama and OpenAI model list endpoints
Signed-off-by: Sihyeon Jang <sihyeon.jang@navercorp.com>
2025-09-03 05:17:41 +09:00
Timothy Jaeryang Baek
22c4ef4fb0
enh: delete_file query param
2025-09-02 21:32:07 +04:00
Andreas Fuerer
df0d29c81c
style: fix formatting issues
2025-09-02 19:16:02 +02:00
Andreas Fuerer
bc6afc9057
feature: Azure OpenAI image generation support
...
The image generation API used on Azure OpenAI requires to specify the API
version by appending an `api-version` query parameter to the endpoint URL.
Added the environment variable `IMAGES_OPENAI_API_VERSION` with
configuration functionality in the administration UI.
2025-09-02 15:51:45 +02:00
Adam
39ae9167ee
removed test code.
2025-08-30 20:31:13 -04:00
Adam
20b6902b9f
whitespace
2025-08-30 20:30:34 -04:00
Adam
08b958cfc9
re-add used var
2025-08-30 20:29:16 -04:00
Adam
c62f30e22c
remove whitespace
2025-08-30 20:12:46 -04:00
Adam
562710fe33
join the url instead of concatenating a string in case the user adds a slash to the end of their configured url.
2025-08-30 20:05:53 -04:00
Timothy Jaeryang Baek
12bd04d24d
refac/enh
2025-08-28 03:24:26 +04:00
Timothy Jaeryang Baek
31485835a7
enh: query caching
...
Co-Authored-By: Jacob Leksan <63938553+jmleksan@users.noreply.github.com>
2025-08-27 03:07:21 +04:00
Timothy Jaeryang Baek
07357afcf6
refac
...
Co-Authored-By: _00_ <131402327+rgaricano@users.noreply.github.com>
2025-08-26 16:54:36 +04:00
Timothy Jaeryang Baek
803b2e35be
enh: delete_message, continue_response, regenerate_response, rate_response user permissions
...
Co-Authored-By: G30 <50341825+silentoplayz@users.noreply.github.com>
2025-08-26 15:05:35 +04:00
Timothy Jaeryang Baek
c61698efcf
enh: process_in_background query param for file upload endpoint
2025-08-25 18:18:52 +04:00
Timothy Jaeryang Baek
0ea421ea20
refac
2025-08-25 01:12:14 +04:00
Classic298
f263e750cf
Merge branch 'open-webui:main' into universal_file_deletion
2025-08-22 19:35:06 +02:00
Classic298
8156d0a30e
Update prune.py
2025-08-22 19:33:17 +02:00
Classic298
8231588eb4
pgvector
2025-08-22 19:17:52 +02:00
Classic298
46288924a2
Update prune.py
2025-08-22 18:29:26 +02:00
Classic298
155f53b867
Update prune.py
2025-08-22 18:17:24 +02:00
Classic298
bfa2eb631d
Update prune.py
2025-08-22 17:37:02 +02:00
Classic298
b5d93ae3db
Update prune.py
2025-08-22 17:02:36 +02:00
Classic298
4c7e6bd752
Update prune.py
2025-08-22 16:43:06 +02:00
Classic298
262848d647
Update prune.py
2025-08-22 16:39:47 +02:00
Classic298
2681fd268b
Update prune.py
2025-08-22 16:33:02 +02:00
Classic298
28f0079193
Update prune.py
2025-08-22 16:16:59 +02:00
Classic298
74bfead38b
Update prune.py
2025-08-22 15:42:56 +02:00
Timothy Jaeryang Baek
37a3de0703
fix
2025-08-22 17:19:57 +04:00
Timothy Jaeryang Baek
72b25ab78b
fix: image generation
2025-08-22 16:58:25 +04:00
Timothy Jaeryang Baek
88a5b5ff4c
fix: image gen
2025-08-22 13:25:23 +04:00
Classic298
596f02c2e9
Merge branch 'open-webui:main' into universal_file_deletion
2025-08-21 21:40:12 +02:00
Tim Jaeryang Baek
5a66f69460
Merge pull request #16779 from mahenning/fix--clean-unload-embed/reranker-models
...
Fix: Free VRAM memory when updating embedding / reranking models
2025-08-21 21:38:37 +04:00
Marko Henning
f2e78d7940
More formatting
2025-08-21 13:42:03 +02:00
Marko Henning
c821c3ecb0
Formatting
2025-08-21 13:40:56 +02:00
Marko Henning
b3de3295d6
Chage torch import to conditional import
2025-08-21 13:19:24 +02:00
Timothy Jaeryang Baek
e6da38464b
refac: ENABLE_ADMIN_WORKSPACE_CONTENT_ACCESS renamed to BYPASS_ADMIN_ACCESS_CONTROL
2025-08-21 13:08:22 +04:00
Marko Henning
6663fc3a6c
Unloads only if internal models are used.
2025-08-21 10:49:03 +02:00
Timothy Jaeryang Baek
094a16ab49
refac
2025-08-21 03:38:26 +04:00
Timothy Jaeryang Baek
86011e40be
refac: account details
2025-08-21 02:39:25 +04:00
Timothy Jaeryang Baek
4451f86eb0
refac
2025-08-21 01:22:32 +04:00
Timothy Jaeryang Baek
1f91e5d3c6
fix: multi-ollama mounted display issue
2025-08-21 00:03:38 +04:00
Timothy Jaeryang Baek
ba972ecd52
refac
2025-08-20 21:05:04 +04:00
Marko Henning
cd02ff2e07
Fix if checks
2025-08-20 14:07:13 +02:00
Marko Henning
39fe385017
Correctly unloads embedding/reranker models
2025-08-20 13:30:45 +02:00
Timothy Jaeryang Baek
5e1f4fa0ff
feat: async file upload
2025-08-20 00:36:13 +04:00
Timothy Jaeryang Baek
8eb5807c5f
refac: images generation endpoint size field
2025-08-19 23:14:41 +04:00
Timothy Jaeryang Baek
575db66295
feat: save temporary chats
2025-08-19 02:37:18 +04:00
Timothy Jaeryang Baek
f592748011
refac: tool server redis cache
2025-08-18 20:53:46 +04:00
Timothy Jaeryang Baek
8a157578f4
enh/refac: ability to specify external tool server id
2025-08-18 20:38:55 +04:00
Timothy Jaeryang Baek
f97f21bf3a
refac/fix: rename WEB_SEARCH_CONCURRENT_REQUESTS to WEB_LOADER_CONCURRENT_REQUESTS
2025-08-18 20:06:36 +04:00
Timothy Jaeryang Baek
6d0f757848
refac: openai model list
2025-08-18 19:45:26 +04:00
Timothy Jaeryang Baek
f23eb2a31c
refac: audio lang fallback logic
2025-08-17 04:33:42 +04:00
Timothy Jaeryang Baek
35e8c77025
refac/fix
2025-08-17 03:21:14 +04:00
Timothy Jaeryang Baek
f1c28455ad
refac: async webhook request
2025-08-15 00:07:02 +04:00
Timothy Jaeryang Baek
057533f9cc
refac
2025-08-14 16:56:08 +04:00
Classic298
adda47ab04
move import
2025-08-12 22:06:10 +02:00
Classic298
482030ff69
Update prune.py
2025-08-12 14:56:44 +02:00
Classic298
34c9a8825c
Update prune.py
2025-08-12 14:54:54 +02:00
Classic298
709c852917
Update prune.py
2025-08-12 13:20:16 +02:00
Classic298
028a2e5984
Update prune.py
2025-08-12 12:47:19 +02:00
Classic298
d8c4dd6f79
Fix admin model access ( #17 )
...
* Update models.py
* Update models.py
* Update models.py
* Update ollama.py
* Update openai.py
* Update models.py
* Update openai.py
* Update ollama.py
2025-08-11 23:23:44 +02:00
Classic298
d454e6a033
Feat/prune orphaned data ( #16 )
...
* feat: Add prune orphaned data functionality
* feat: Add prune orphaned data functionality
* feat: Add prune orphaned data functionality
* fix: Restyle PruneDataDialog modal
* feat: Add comprehensive prune orphaned data functionality and fix circular import
* feat: Add comprehensive prune orphaned data functionality and fix circular import
* feat: Add comprehensive prune orphaned data functionality and fix database size issues
* feat: Add comprehensive prune orphaned data functionality and fix database size issues
* feat: Add comprehensive prune orphaned data functionality and fix database size issues
* Update prune.py
* Update prune.py
* Update prune.py
* Update prune.py
* Update prune.py
* Update prune.py
* Update prune.py
* Update prune.py
* Update prune.py
* Update prune.py
* Update prune.py
* Update prune.py
* Update prune.py
* Update folders.py
* Update prune.py
* Update prune.py
* Update prune.py
* Update prune.py
* Update prune.py
* Update prune.py
* Update prune.py
* Update prune.py
* Update prune.py
* Update prune.py
* Update prune.py
* Update prune.py
* Update prune.py
* Update prune.py
* Update prune.py
* Update prune.py
* Update prune.py
* Update prune.py
* Update prune.py
* Update prune.py
* Update prune.py
* Update prune.py
* Update prune.py
* Delete backend/open_webui/test/test_prune.py
* Update prune.ts
* Update PruneDataDialog.svelte
* Update prune.py
* Update PruneDataDialog.svelte
* Update PruneDataDialog.svelte
* Update PruneDataDialog.svelte
* Update PruneDataDialog.svelte
* Update PruneDataDialog.svelte
* Update PruneDataDialog.svelte
* Update prune.py
* Update PruneDataDialog.svelte
* Update prune.ts
* Update Database.svelte
* Update prune.py
* Update PruneDataDialog.svelte
* Update PruneDataDialog.svelte
* Update prune.py
* Update prune.py
* Update PruneDataDialog.svelte
* Update PruneDataDialog.svelte
* Update PruneDataDialog.svelte
* Update PruneDataDialog.svelte
* Update PruneDataDialog.svelte
* Update PruneDataDialog.svelte
* Update PruneDataDialog.svelte
* Update PruneDataDialog.svelte
* Update PruneDataDialog.svelte
* Update Database.svelte
* Update prune.py
* Update prune.ts
* Update PruneDataDialog.svelte
* Update PruneDataDialog.svelte
* Update PruneDataDialog.svelte
* Update PruneDataDialog.svelte
* Update PruneDataDialog.svelte
* Update PruneDataDialog.svelte
* Update PruneDataDialog.svelte
* Update PruneDataDialog.svelte
* Update PruneDataDialog.svelte
* Update PruneDataDialog.svelte
* Update PruneDataDialog.svelte
* Update PruneDataDialog.svelte
* Update PruneDataDialog.svelte
* Update PruneDataDialog.svelte
* Update PruneDataDialog.svelte
* Update PruneDataDialog.svelte
* Update prune.py
* Update prune.ts
* Update PruneDataDialog.svelte
* Update files.py
* Update prompts.py
* Update notes.py
* Update models.py
* Update access_control.py
* Update PruneDataDialog.svelte
* Update PruneDataDialog.svelte
---------
Co-authored-by: google-labs-jules[bot] <161369871+google-labs-jules[bot]@users.noreply.github.com>
2025-08-10 23:40:01 +02:00
Timothy Jaeryang Baek
77dcfb5062
chore: format
2025-08-10 16:54:49 +04:00
Athanasios Oikonomou
dc453efa5c
feat: Display assigned user groups in Admin Panel
...
Description:
This PR adds the ability to view a user’s assigned groups in the Admin Panel when editing a user.
Backend Changes:
Added a new endpoint:
GET /api/v1/users/{user_id}/groups
Returns the list of groups assigned to a specific user.
Requires admin privileges.
Frontend Changes:
Implemented getUserGroupsById API function to call the new backend endpoint, in lib/apis/users.
Updated EditUserModal.svelte to:
Load user groups asynchronously when the modal is opened.
Display the groups inline in the form before the Save button.
Show a loading state while fetching, and a “No groups assigned” message if none exist.
Result:
Admins can now see which groups a user belongs to directly from the edit user modal,
improving visibility and reducing the need to navigate away for group membership checks.
2025-08-10 14:49:01 +03:00
Timothy Jaeryang Baek
6497b46a78
refac
2025-08-10 01:44:33 +04:00
Timothy Jaeryang Baek
caf8482fba
refac
2025-08-09 21:34:47 +04:00
Timothy Jaeryang Baek
4b41cd1891
chore: format
2025-08-09 02:05:07 +04:00
Tim Jaeryang Baek
17084f629c
Merge pull request #16385 from gaby/2025-08-08-13-38-31
...
feat: Propagate upstream OpenAI router errors
2025-08-09 00:58:14 +04:00
Timothy Jaeryang Baek
e8cb57750b
refac/fix: serply
2025-08-09 00:37:37 +04:00
Timothy Jaeryang Baek
736b29ddca
refac
2025-08-09 00:33:41 +04:00
Tim Jaeryang Baek
9fbc76f4bb
Merge pull request #16397 from 17jmumford/add_gpt_5_max_token_handling
...
fix: added gpt-5 to reasoning model payload handler
2025-08-09 00:22:30 +04:00
Jeremy Mumford
c69f2cc776
updated comments
2025-08-08 14:20:14 -06:00
Jeremy Mumford
0c40d93da4
renamed and added gpt-5 to reflect OpenAI updates
2025-08-08 14:16:28 -06:00
Andrew Baek
451b614f4d
refac: oidc provider url validation
2025-08-09 00:15:19 +04:00
Juan Calderon-Perez
5d7e8c8e5f
Format openai router
2025-08-08 10:04:02 -04:00
Juan Calderon-Perez
2ae7584686
feat: forward upstream OpenAI errors
2025-08-08 09:38:34 -04:00
Tim Jaeryang Baek
1ba8c3389e
Merge pull request #16284 from silentoplayz/fix-clone-chat-tags
...
fix: also clone the chat's tags, folder stats, and pinned status when cloning a chat
2025-08-06 14:33:04 +04:00
Timothy Jaeryang Baek
5d4199bf52
chore: format
2025-08-06 14:27:58 +04:00
Timothy Jaeryang Baek
428db553e2
refac
2025-08-06 14:27:07 +04:00
Timothy Jaeryang Baek
7fffecd168
refac
2025-08-06 14:26:22 +04:00
Tim Jaeryang Baek
f0e1c3f540
Merge pull request #15694 from dieu-bis/feat/scim-2.0-support
...
FEAT: Add SCIM 2.0 support for automated user provisioning
2025-08-06 14:22:48 +04:00
Timothy Jaeryang Baek
55ad48d1c3
feat: ENABLE_ADMIN_WORKSPACE_CONTENT_ACCESS
...
Co-Authored-By: Classic298 <27028174+Classic298@users.noreply.github.com>
2025-08-06 01:44:52 +04:00
silentoplayz
7c4550fa92
fix: cloned chat metadata not taken into consideration
2025-08-05 16:21:03 -04:00
Timothy Jaeryang Baek
f24b76d9a3
refac: has_users
...
Co-Authored-By: pickle-dice <159401444+hassan-ajek@users.noreply.github.com>
2025-08-05 22:15:22 +04:00
silentoplayz
bd570b7e2e
fix: chat metadata wasn't being taken into consideration when cloning a chat
...
fix: chat metadata wasn't being taken into consideration when cloning a chat
2025-08-05 13:43:29 -04:00
Tim Jaeryang Baek
5db60ca34f
Merge pull request #15903 from Hisma/marker-api-update
...
feat: Add configurable API URL (for self-hosting) and additional_config parameter for Datalab Marker API
2025-08-04 15:21:03 +04:00
Timothy Jaeryang Baek
708e0ed05e
refac/enh: chat controls permissions
2025-07-31 18:58:58 +04:00
Timothy Jaeryang Baek
6a17ba5b7a
refac: metadata handling in vectordb
2025-07-31 17:45:06 +04:00
Timothy Jaeryang Baek
6b34b2c946
refac
2025-07-31 16:47:02 +04:00
Tim Jaeryang Baek
1f22e1d84c
Merge pull request #16096 from gkkachi/dev
...
fix: properly handle full URLs in form_data.path
2025-07-31 16:45:48 +04:00
Timothy Jaeryang Baek
d3547f0f54
refac: error handling
2025-07-31 16:17:33 +04:00
Konosuke Kachi
0a8f482264
fix: properly handle full URLs in form_data.path
2025-07-28 23:34:23 +09:00
Timothy Jaeryang Baek
bcfb4d1e43
refac
2025-07-28 13:12:38 +04:00
Timothy Jaeryang Baek
c1e4139e5c
feat: model sync endpoint
2025-07-28 13:06:05 +04:00
Timothy Jaeryang Baek
49a6211d36
refac
2025-07-28 11:31:06 +04:00
Timothy Jaeryang Baek
df7b5ec907
enh/refac: function sync endpoint
2025-07-24 23:44:43 +04:00
_00_
ab8e54dd29
Update audio.py Fix Format error
...
Fix Format error
2025-07-23 08:49:00 +02:00
_00_
51758c429b
Update audio.py - fix FORMAT error
...
Fix FORMAT error
2025-07-23 08:45:10 +02:00
Hisma
a99e20cc3d
add format_lines
2025-07-22 21:06:29 -04:00
Hisma
f31cc07a9d
feat: update marker api
2025-07-22 20:49:28 -04:00
_00_
0613563644
FIX: STT default whisper trascription language
...
FIX: STT default whisper trascription language
Fix the transcripcion language used by default whisper, setting as WHISPER_LANGUAGE if it is setted in env var, even if a language is detected in the file's metadata.
It is understood that if a language is set as an environment variable for transcriptions, this should be the preferred one and the one that should be used for that purpose.
It would be advisable to add this variable as configurable in UI
2025-07-22 16:47:06 +02:00
expruc
1ff2ad0c08
ci fix
2025-07-21 22:17:08 +03:00
expruc
14c6f8bf80
added a check for admins to avoid 404 errors on feedbacks get and post
2025-07-21 21:18:37 +03:00
Timothy Jaeryang Baek
24805ca79e
refac/fix: channel messages
2025-07-20 15:17:17 +04:00
Timothy Jaeryang Baek
40ebf8cd62
refac: memory handling
2025-07-20 15:00:24 +04:00
Timothy Jaeryang Baek
1159f3a781
enh: add folder modal
2025-07-19 19:46:35 +04:00
Timothy Jaeryang Baek
37c2fb0aa8
enh: folders
2025-07-19 14:29:08 +04:00
expruc
30a079cba8
added handler for deleting files from vdb upon files deletion
2025-07-18 18:40:29 +03:00
Timothy Jaeryang Baek
671f577264
feat/enh: forward chat id in header
2025-07-18 15:03:46 +04:00
Tim Jaeryang Baek
6bb5248812
Merge pull request #15789 from azurewtl/hotfix-web-config-clean-reranker
...
- fix: keep reranker_model config been removed by web search config
2025-07-18 13:00:40 +04:00