[PR #215] [MERGED] WIP: chat enhancements #59073

Closed
opened 2026-05-06 00:52:25 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/215
Author: @tjbck
Created: 12/14/2023
Status: Merged
Merged: 12/19/2023
Merged by: @tjbck

Base: mainHead: share-chat


📝 Commits (10+)

  • c9d8645 feat: share button added
  • 8437e71 Merge branch 'main' into share-chat
  • 1cbcb0b Merge branch 'main' into share-chat
  • 425d022 feat: image clipboard paste input support
  • e93d465 chore: audit fix
  • ffaa1b1 feat: show verbose info
  • e34b452 feat: response notification
  • 4622a89 chore: version update
  • c87a80f feat: chat share
  • d10e367 feat: improved backend error message

📊 Changes

15 files changed (+653 additions, -108 deletions)

View changed files

📝 Dockerfile (+0 -1)
📝 backend/apps/ollama/main.py (+23 -6)
📝 backend/config.py (+2 -2)
📝 package-lock.json (+37 -6)
📝 package.json (+2 -1)
📝 src/lib/components/chat/MessageInput.svelte (+25 -1)
📝 src/lib/components/chat/Messages.svelte (+57 -0)
📝 src/lib/components/chat/SettingsModal.svelte (+142 -36)
📝 src/lib/components/layout/Navbar.svelte (+89 -38)
📝 src/lib/stores/index.ts (+1 -0)
📝 src/lib/utils/index.ts (+35 -0)
📝 src/routes/(app)/+layout.svelte (+95 -10)
📝 src/routes/(app)/+page.svelte (+70 -2)
📝 src/routes/(app)/c/[id]/+page.svelte (+74 -4)
📝 src/routes/+layout.svelte (+1 -1)

📄 Description

Resolves #188 #131 #141

  • Adds general enhancements to chat as well as chat share feature

TODO

  • Clipboard image paste support
  • Response Notification using browser Notification API

image

  • Notify user when the model has been downloaded via Notification API

image

  • Ollama version check
  • Reponse auto copy to clipboard
  • Share chat w/ OllamaHub

🔄 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/215 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 12/14/2023 **Status:** ✅ Merged **Merged:** 12/19/2023 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `share-chat` --- ### 📝 Commits (10+) - [`c9d8645`](https://github.com/open-webui/open-webui/commit/c9d8645abafcca52f95cad9ca7ff7a9d790ef719) feat: share button added - [`8437e71`](https://github.com/open-webui/open-webui/commit/8437e718f482626e6d12c303f1b4e86a48371b4d) Merge branch 'main' into share-chat - [`1cbcb0b`](https://github.com/open-webui/open-webui/commit/1cbcb0bccce898817a6f597f5c6cf7cab2043004) Merge branch 'main' into share-chat - [`425d022`](https://github.com/open-webui/open-webui/commit/425d0223222f228ef34bc508577f1306587ae760) feat: image clipboard paste input support - [`e93d465`](https://github.com/open-webui/open-webui/commit/e93d465fbc53734005bc6303c3ef1b7462542f33) chore: audit fix - [`ffaa1b1`](https://github.com/open-webui/open-webui/commit/ffaa1b17c5551729c0a21c786c4e6b7c55184af6) feat: show verbose info - [`e34b452`](https://github.com/open-webui/open-webui/commit/e34b4525094880332cb88e09da12d2054ef79cfa) feat: response notification - [`4622a89`](https://github.com/open-webui/open-webui/commit/4622a8990d473fc55d06420af46ef4a3f70a5fce) chore: version update - [`c87a80f`](https://github.com/open-webui/open-webui/commit/c87a80f9a53f5f5b7993a614a02d80adf83650ff) feat: chat share - [`d10e367`](https://github.com/open-webui/open-webui/commit/d10e36766417a05156efad7869c6a3d72a6cc90c) feat: improved backend error message ### 📊 Changes **15 files changed** (+653 additions, -108 deletions) <details> <summary>View changed files</summary> 📝 `Dockerfile` (+0 -1) 📝 `backend/apps/ollama/main.py` (+23 -6) 📝 `backend/config.py` (+2 -2) 📝 `package-lock.json` (+37 -6) 📝 `package.json` (+2 -1) 📝 `src/lib/components/chat/MessageInput.svelte` (+25 -1) 📝 `src/lib/components/chat/Messages.svelte` (+57 -0) 📝 `src/lib/components/chat/SettingsModal.svelte` (+142 -36) 📝 `src/lib/components/layout/Navbar.svelte` (+89 -38) 📝 `src/lib/stores/index.ts` (+1 -0) 📝 `src/lib/utils/index.ts` (+35 -0) 📝 `src/routes/(app)/+layout.svelte` (+95 -10) 📝 `src/routes/(app)/+page.svelte` (+70 -2) 📝 `src/routes/(app)/c/[id]/+page.svelte` (+74 -4) 📝 `src/routes/+layout.svelte` (+1 -1) </details> ### 📄 Description Resolves #188 #131 #141 - Adds general enhancements to chat as well as chat share feature TODO - [x] Clipboard image paste support - [x] Response Notification using browser Notification API ![image](https://github.com/ollama-webui/ollama-webui/assets/25473318/5599a27c-f5a3-49a7-bcd4-6bcc670eb771) - [x] Notify user when the model has been downloaded via Notification API ![image](https://github.com/ollama-webui/ollama-webui/assets/25473318/28fe485d-d592-4b76-a26d-ed9b96cfd668) - [x] Ollama version check - [x] Reponse auto copy to clipboard - [x] Share chat w/ OllamaHub --- <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-05-06 00:52:25 -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#59073