mirror of
https://github.com/open-webui/open-webui.git
synced 2026-05-07 03:18:23 -05:00
[GH-ISSUE #14109] issue: notes enhancement loads indefinitely #55809
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @cloph-dsp on GitHub (May 20, 2025).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/14109
Check Existing Issues
Installation Method
Git Clone
Open WebUI Version
0.6.10
Ollama Version (if applicable)
No response
Operating System
Debian
Browser (if applicable)
No response
Confirmation
README.md.Expected Behavior
Notes should be enhanced.
Actual Behavior
Whenever I click the "enhance" button under "notes" it just loads indefinitely, not changing anything. I've tried different models, doesn't seem to be related to model size. Not using docker, running in venv.
Steps to Reproduce
Logs & Screenshots
Logs analysis:
"
It seems the OpenWebUI process encountered a Python AttributeError in the file open_webui/utils/filter.py between lines 118–122, inside the process_filter_functions method.
Issue:
A handler function was called with **params, but within that handler (executed dynamically at line 31 of a provided string), it attempted to call .get on a bytes object — which raised:
AttributeError: 'bytes' object has no attribute 'get'"
Additional Information
@cloph-dsp commented on GitHub (May 21, 2025):
I’ve identified the issue: it’s an incompatibility between global filters and notes. Since notes don’t use filter functions, applying global filters causes conflicts. I rely on global filters to avoid setting them per model, but this creates a problem here. It would be great if the logic could exclude filters — including global ones — when dealing with notes to prevent this error.
@tjbck commented on GitHub (May 22, 2025):
What filter are you using? This should not and does not happen unless you have broken Filter Function.