We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 440b640 commit d933991Copy full SHA for d933991
1 file changed
backend/open_webui/utils/tools.py
@@ -439,7 +439,7 @@ def is_builtin_tool_enabled(category: str) -> bool:
439
builtin_functions.extend([search_chats, view_chat])
440
441
# Add memory tools if builtin category enabled AND enabled for this chat
442
- if is_builtin_tool_enabled('memory') and features.get('memory'):
+ if is_builtin_tool_enabled('memory') and (features.get('memory') or get_model_capability('memory', False)):
443
builtin_functions.extend(
444
[
445
search_memories,
0 commit comments