[PR #270] [MERGED] v2 Chats Redesign #3277

Closed
opened 2026-02-22 18:33:26 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/270
Author: @shatfield4
Created: 10/6/2023
Status: Merged
Merged: 10/9/2023
Merged by: @timothycarambat

Base: ui-v2Head: v2-chats


📝 Commits (10+)

  • 0808a3b fix default message for new workspace
  • d47746a prompt input box ui redesign complete
  • 7864ea8 ui tweak to prompt input
  • a6fc475 WIP chat msg redesign
  • 3f5e6d4 chat container and historical chat messages redesign
  • e823570 manage workspace modal appears when clicking upload a document on empty workspace
  • 95d7fc5 fixed loading skeleton styles
  • 21293d3 citations redesign complete
  • 1a8018d restyle pending chat and prompt reply components
  • a4a54b4 default chat messages styles updated

📊 Changes

19 files changed (+576 additions, -487 deletions)

View changed files

📝 frontend/src/components/ChatBubble/index.jsx (+20 -16)
📝 frontend/src/components/DefaultChat/index.jsx (+208 -139)
📝 frontend/src/components/Modals/NewWorkspace.jsx (+4 -5)
📝 frontend/src/components/UserIcon/index.jsx (+7 -2)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/Citation/index.jsx (+122 -60)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/index.jsx (+38 -38)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/PromptReply/index.jsx (+45 -20)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/index.jsx (+30 -9)
📝 frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/index.jsx (+69 -162)
📝 frontend/src/components/WorkspaceChat/ChatContainer/index.jsx (+1 -1)
📝 frontend/src/components/WorkspaceChat/LoadingChat/index.jsx (+13 -11)
📝 frontend/src/index.css (+9 -9)
📝 frontend/src/pages/Admin/Invitations/NewInviteModal/index.jsx (+1 -3)
📝 frontend/src/pages/Admin/Users/NewUserModal/index.jsx (+1 -3)
📝 frontend/src/pages/Admin/Workspaces/NewWorkspaceModal/index.jsx (+1 -3)
📝 frontend/src/pages/Admin/Workspaces/WorkspaceRow/EditWorkspaceUsersModal/index.jsx (+1 -3)
📝 frontend/src/pages/GeneralSettings/ApiKeys/NewApiKeyModal/index.jsx (+1 -3)
📝 frontend/tailwind.config.js (+3 -0)
📝 server/models/workspaceChats.js (+2 -0)

📄 Description

Changes made
• Default messages screen updated
• Updated chat bubbles to be chatgpt style full width containers
• Updated citations and added citations modal with skeleton text above and below actual text context for more realistic look


🔄 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/Mintplex-Labs/anything-llm/pull/270 **Author:** [@shatfield4](https://github.com/shatfield4) **Created:** 10/6/2023 **Status:** ✅ Merged **Merged:** 10/9/2023 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `ui-v2` ← **Head:** `v2-chats` --- ### 📝 Commits (10+) - [`0808a3b`](https://github.com/Mintplex-Labs/anything-llm/commit/0808a3be83df75969dd543557a3e99d02bbc4e64) fix default message for new workspace - [`d47746a`](https://github.com/Mintplex-Labs/anything-llm/commit/d47746adf20727f7dcada7fe2613a1a0684a8bb8) prompt input box ui redesign complete - [`7864ea8`](https://github.com/Mintplex-Labs/anything-llm/commit/7864ea887f29dabde68d4b3cbac1ad03ccab004e) ui tweak to prompt input - [`a6fc475`](https://github.com/Mintplex-Labs/anything-llm/commit/a6fc475ced9de71dd3e246b603ecd2220be8a1b1) WIP chat msg redesign - [`3f5e6d4`](https://github.com/Mintplex-Labs/anything-llm/commit/3f5e6d44494c339d5fcb29bbef295a7d2a7150e3) chat container and historical chat messages redesign - [`e823570`](https://github.com/Mintplex-Labs/anything-llm/commit/e82357083e4dd5dc988d6aaabf0a5b705ec9eaad) manage workspace modal appears when clicking upload a document on empty workspace - [`95d7fc5`](https://github.com/Mintplex-Labs/anything-llm/commit/95d7fc56806c75f8e04fe8d44cdda6825b1c35fa) fixed loading skeleton styles - [`21293d3`](https://github.com/Mintplex-Labs/anything-llm/commit/21293d382531f34b2deb4976b80579595ec4ef21) citations redesign complete - [`1a8018d`](https://github.com/Mintplex-Labs/anything-llm/commit/1a8018d42ed7d9a8eb953d50fdc5053746ff4e13) restyle pending chat and prompt reply components - [`a4a54b4`](https://github.com/Mintplex-Labs/anything-llm/commit/a4a54b4ecf93c0d438e79f4b394210f000f035a9) default chat messages styles updated ### 📊 Changes **19 files changed** (+576 additions, -487 deletions) <details> <summary>View changed files</summary> 📝 `frontend/src/components/ChatBubble/index.jsx` (+20 -16) 📝 `frontend/src/components/DefaultChat/index.jsx` (+208 -139) 📝 `frontend/src/components/Modals/NewWorkspace.jsx` (+4 -5) 📝 `frontend/src/components/UserIcon/index.jsx` (+7 -2) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/Citation/index.jsx` (+122 -60) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/index.jsx` (+38 -38) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/PromptReply/index.jsx` (+45 -20) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/index.jsx` (+30 -9) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/index.jsx` (+69 -162) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/index.jsx` (+1 -1) 📝 `frontend/src/components/WorkspaceChat/LoadingChat/index.jsx` (+13 -11) 📝 `frontend/src/index.css` (+9 -9) 📝 `frontend/src/pages/Admin/Invitations/NewInviteModal/index.jsx` (+1 -3) 📝 `frontend/src/pages/Admin/Users/NewUserModal/index.jsx` (+1 -3) 📝 `frontend/src/pages/Admin/Workspaces/NewWorkspaceModal/index.jsx` (+1 -3) 📝 `frontend/src/pages/Admin/Workspaces/WorkspaceRow/EditWorkspaceUsersModal/index.jsx` (+1 -3) 📝 `frontend/src/pages/GeneralSettings/ApiKeys/NewApiKeyModal/index.jsx` (+1 -3) 📝 `frontend/tailwind.config.js` (+3 -0) 📝 `server/models/workspaceChats.js` (+2 -0) </details> ### 📄 Description Changes made • Default messages screen updated • Updated chat bubbles to be chatgpt style full width containers • Updated citations and added citations modal with skeleton text above and below actual text context for more realistic look --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
yindo added the pull-request label 2026-02-22 18:33:26 -05:00
yindo closed this issue 2026-02-22 18:33:26 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/anything-llm#3277