mirror of
https://github.com/open-webui/open-webui.git
synced 2026-05-08 04:16:03 -05:00
[GH-ISSUE #23716] feat: add tags for notes #35581
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 @silenceroom on GitHub (Apr 14, 2026).
Original GitHub issue: https://github.com/open-webui/open-webui/issues/23716
Check Existing Issues
Verify Feature Scope
Problem Description
Add tag functionality to the Notes module, allowing users to organize and filter notes using custom tags (similar to existing Prompts/Models modules).
Currently, users can only organize Notes by date. Adding tags would provide:
Desired Solution you'd like
Proposed Implementation
1. Database Changes
tagsJSON column tonotetable2. Backend API
NoteModel.tags: Optional[list[str]]NoteForm.tags: Optional[list[str]]NoteUpdateForm.tags: Optional[list[str]]3. Frontend Changes
Notes.svelte: TagSelector dropdown for filteringNoteEditor.svelte: Tags input row below title (editable tags)utils.ts: createNoteHandler supports tags parameter4. UI/UX
Alternatives Considered
No response
Additional Context
No response
@Classic298 commented on GitHub (Apr 14, 2026):
https://github.com/open-webui/open-webui/issues/13464