Andrew Baek
ead1c1881c
Merge branch 'dev' of https://github.com/andrewbbaek/open-webui into dev
2025-09-26 01:57:38 +09:00
Andrew Baek
3df5826d93
moved sidebar-folder-button from class to id
2025-09-26 01:56:45 +09:00
Tim Jaeryang Baek
cd417ca0ba
Merge pull request #17744 from Classic298/fix-rag-full-context
...
Fix: Prevent RAG queries when all files are in full context
2025-09-25 11:55:41 -05:00
Timothy Jaeryang Baek
4f8f8e0e0b
chore: dep bump
2025-09-25 11:51:04 -05:00
Timothy Jaeryang Baek
05d7d1e562
chore: format
2025-09-25 11:43:10 -05:00
Andrew Baek
08f4a2dff8
Merge branch 'open-webui:dev' into dev
2025-09-26 01:31:20 +09:00
Timothy Jaeryang Baek
ff44fa242d
refac
2025-09-25 11:28:33 -05:00
Andrew Baek
e4f27ab75f
Merge branch 'open-webui:dev' into dev
2025-09-26 01:25:50 +09:00
Andrew Baek
86f024b9d7
added id and class
2025-09-26 01:23:58 +09:00
Timothy Jaeryang Baek
3c7d01163d
refac
2025-09-25 11:02:49 -05:00
google-labs-jules[bot]
4a7e1b93e5
Fix: Prevent RAG queries when all files are in full context
...
This commit fixes an issue where Retrieval-Augmented Generation (RAG)
queries were still being generated even when all attached files were set
to 'full context' mode. This was inefficient as the full content of the
files was already available to the model.
The `chat_completion_files_handler` in `backend/open_webui/utils/middleware.py`
has been updated to:
- Check if all attached files have the `context: 'full'` property.
- Skip the `generate_queries` step if all files are in full context mode.
- Pass a `full_context=True` flag to the `get_sources_from_items`
function to ensure it fetches the entire document content instead of
performing a vector search.
This change ensures that RAG queries are only generated when necessary,
improving the efficiency of the system.
2025-09-25 15:54:58 +00:00
Timothy Jaeryang Baek
98883a68f2
refac
2025-09-25 02:18:10 -05:00
Tim Jaeryang Baek
b8a51de977
Merge pull request #17721 from Classic298/fix-image-download-filename
...
fix: Use generic filename for downloaded images
2025-09-25 02:02:19 -05:00
Timothy Jaeryang Baek
cd7bd0aa20
refac
2025-09-25 02:00:02 -05:00
Timothy Jaeryang Baek
4d16cf6bf3
refac
2025-09-25 01:59:18 -05:00
Timothy Jaeryang Baek
422d38fd11
refac
2025-09-25 01:56:09 -05:00
Timothy Jaeryang Baek
879abd7fee
refac
2025-09-25 01:53:10 -05:00
Timothy Jaeryang Baek
77e971dd9f
feat: oauth2.1 mcp integration
2025-09-25 01:49:16 -05:00
Classic298
4f22a1c5e4
Update translation.json
2025-09-25 07:55:17 +02:00
Classic298
e201dc995c
Update ImagePreview.svelte
2025-09-25 07:54:58 +02:00
Timothy Jaeryang Baek
972be4eda5
enh: oauth2.1 dynamic client registration
2025-09-25 00:28:13 -05:00
Timothy Jaeryang Baek
34d16791a8
refac
2025-09-24 23:27:45 -05:00
Tim Jaeryang Baek
d3b09c6a02
Merge pull request #17223 from itk-dev/feature/session-in-redis
...
feat: Added support for redis as session storage
2025-09-24 23:23:56 -05:00
Timothy Jaeryang Baek
27d61307cd
refac: tools valves
2025-09-24 21:12:25 -05:00
Timothy Jaeryang Baek
685cca5bd5
chore: dep bump
2025-09-24 18:58:17 -05:00
Timothy Jaeryang Baek
bd02a456ab
chore: langchain dep bump
2025-09-24 18:55:33 -05:00
Timothy Jaeryang Baek
e5daec32ba
refac
2025-09-24 17:16:07 -05:00
Timothy Jaeryang Baek
b03529b006
refac
2025-09-24 17:05:37 -05:00
Timothy Jaeryang Baek
612a52d7bb
refac
2025-09-24 16:34:41 -05:00
Timothy Jaeryang Baek
aa6f63a335
enh: search modal actions
2025-09-24 16:29:02 -05:00
Timothy Jaeryang Baek
9f0010e234
enh: channel model @ image support
2025-09-24 16:08:36 -05:00
Timothy Jaeryang Baek
e7061b70e9
refac
2025-09-24 16:01:31 -05:00
Timothy Jaeryang Baek
fe65fe0b97
refac: ollama cloud web search count support
2025-09-24 15:58:56 -05:00
Tim Jaeryang Baek
3d2f7e3143
Merge pull request #17715 from ShirasawaSama/revert-17498-patch-19
...
Revert "feat: Dynamically load CodeEditor.svelte to improve first-screen loading speed (-1MB)"
2025-09-24 15:40:08 -05:00
Timothy Jaeryang Baek
1df5f1f9f6
revert: code editor dynamic import
2025-09-24 15:39:55 -05:00
Timothy Jaeryang Baek
05c46008da
refac
2025-09-24 15:38:09 -05:00
Tim Jaeryang Baek
1493a5fd32
Merge pull request #17722 from Classic298/bugfix/hidden-models-in-notes
...
Fix: Hide hidden models in notes section
2025-09-24 15:37:52 -05:00
Timothy Jaeryang Baek
4b6d34438b
refac
2025-09-24 15:20:31 -05:00
Timothy Jaeryang Baek
e06489d92b
enh: search_ollama_cloud
2025-09-24 15:19:05 -05:00
google-labs-jules[bot]
c32b407f8a
Fix(notes): Hide hidden models in notes section
...
This commit fixes a bug where hidden models were still visible and selectable in the notes section. The following changes were made:
- The model dropdown in the chat section of the note editor is now filtered to exclude hidden models.
- The default model selection logic in the note editor is now filtered to exclude hidden models.
2025-09-24 19:43:07 +00:00
google-labs-jules[bot]
ab30b105e2
fix(image): Use generic filename for downloaded images
...
Previously, when downloading a generated image, the filename was set to the AI's response text. This was not ideal as the response text could be long and contain characters that are not suitable for filenames.
This commit changes the behavior to use a generic, translatable filename for downloaded images. The new filename is 'ai_generated_image' (or its translation), which is more user-friendly and consistent.
2025-09-24 19:39:08 +00:00
Timothy Jaeryang Baek
f27ab14bd8
refac
2025-09-24 12:37:19 -05:00
Timothy Jaeryang Baek
23a51f2d01
refac: robust file upload failed handling
2025-09-24 12:17:01 -05:00
Timothy Jaeryang Baek
05732de898
refac
2025-09-24 11:36:17 -05:00
Tim Jaeryang Baek
316f1d6ff0
Merge pull request #17717 from Classic298/patch-1
...
add youtube
2025-09-24 12:34:37 -04:00
Classic298
b4d8287946
add youtube
2025-09-24 18:31:48 +02:00
Timothy Jaeryang Baek
0dee15ba97
refac/enh: include foldered chats in ref chat input menu
2025-09-24 11:27:19 -05:00
Timothy Jaeryang Baek
0e3b6b3b8f
refac
2025-09-24 11:22:48 -05:00
Timothy Jaeryang Baek
32086b6ecd
refac
2025-09-24 11:20:39 -05:00
Timothy Jaeryang Baek
2a95cbcef7
enh: attach webpage input menu
2025-09-24 11:11:26 -05:00