[PR #13459] [MERGED] feat: notes #23204

Closed
opened 2026-04-20 04:41:49 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/13459
Author: @tjbck
Created: 5/3/2025
Status: Merged
Merged: 5/3/2025
Merged by: @tjbck

Base: devHead: notes


📝 Commits (6)

📊 Changes

28 files changed (+1329 additions, -211 deletions)

View changed files

📝 backend/open_webui/main.py (+3 -0)
backend/open_webui/migrations/versions/9f0c9cd09105_add_note_table.py (+33 -0)
backend/open_webui/models/notes.py (+135 -0)
backend/open_webui/routers/notes.py (+159 -0)
src/lib/apis/notes/index.ts (+187 -0)
📝 src/lib/components/admin/Functions.svelte (+1 -1)
📝 src/lib/components/channel/Channel.svelte (+1 -1)
📝 src/lib/components/channel/MessageInput.svelte (+3 -3)
📝 src/lib/components/chat/Chat.svelte (+1 -1)
📝 src/lib/components/chat/MessageInput.svelte (+3 -3)
📝 src/lib/components/chat/MessageInput/VoiceRecording.svelte (+95 -78)
📝 src/lib/components/chat/Navbar.svelte (+2 -2)
📝 src/lib/components/common/RichTextInput.svelte (+85 -77)
src/lib/components/icons/Calendar.svelte (+19 -0)
src/lib/components/icons/CalendarSolid.svelte (+11 -0)
src/lib/components/icons/Users.svelte (+19 -0)
📝 src/lib/components/layout/Sidebar/ChatItem.svelte (+36 -31)
src/lib/components/notes/NoteEditor.svelte (+220 -0)
src/lib/components/notes/Notes.svelte (+250 -0)
📝 src/lib/components/playground/Notes.svelte (+3 -3)

...and 8 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/open-webui/open-webui/pull/13459 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 5/3/2025 **Status:** ✅ Merged **Merged:** 5/3/2025 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `dev` ← **Head:** `notes` --- ### 📝 Commits (6) - [`7fee84c`](https://github.com/open-webui/open-webui/commit/7fee84c06e665b895fc1193f3d5f06c2edbff400) feat: notes - [`7de6112`](https://github.com/open-webui/open-webui/commit/7de6112c5b7b9c6c2c71f8fb4dd00d9b941aaae7) feat: note list ui - [`a74297e`](https://github.com/open-webui/open-webui/commit/a74297ed47fe1b31fa637d336cbf164a9aa76c04) refac: styling - [`52d32e8`](https://github.com/open-webui/open-webui/commit/52d32e8bf222593918b6c707f13897ba23889917) refac: styling - [`1d82a1c`](https://github.com/open-webui/open-webui/commit/1d82a1c8c4792ca757eab517d2ab916f9a7594c9) feat: note editor - [`4acd278`](https://github.com/open-webui/open-webui/commit/4acd278624f0005d5dd83a8b7b466ebbb34b72d6) refac ### 📊 Changes **28 files changed** (+1329 additions, -211 deletions) <details> <summary>View changed files</summary> 📝 `backend/open_webui/main.py` (+3 -0) ➕ `backend/open_webui/migrations/versions/9f0c9cd09105_add_note_table.py` (+33 -0) ➕ `backend/open_webui/models/notes.py` (+135 -0) ➕ `backend/open_webui/routers/notes.py` (+159 -0) ➕ `src/lib/apis/notes/index.ts` (+187 -0) 📝 `src/lib/components/admin/Functions.svelte` (+1 -1) 📝 `src/lib/components/channel/Channel.svelte` (+1 -1) 📝 `src/lib/components/channel/MessageInput.svelte` (+3 -3) 📝 `src/lib/components/chat/Chat.svelte` (+1 -1) 📝 `src/lib/components/chat/MessageInput.svelte` (+3 -3) 📝 `src/lib/components/chat/MessageInput/VoiceRecording.svelte` (+95 -78) 📝 `src/lib/components/chat/Navbar.svelte` (+2 -2) 📝 `src/lib/components/common/RichTextInput.svelte` (+85 -77) ➕ `src/lib/components/icons/Calendar.svelte` (+19 -0) ➕ `src/lib/components/icons/CalendarSolid.svelte` (+11 -0) ➕ `src/lib/components/icons/Users.svelte` (+19 -0) 📝 `src/lib/components/layout/Sidebar/ChatItem.svelte` (+36 -31) ➕ `src/lib/components/notes/NoteEditor.svelte` (+220 -0) ➕ `src/lib/components/notes/Notes.svelte` (+250 -0) 📝 `src/lib/components/playground/Notes.svelte` (+3 -3) _...and 8 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-20 04:41:49 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/open-webui#23204