[PR #5074] [MERGED] Implement v2 chat layout designs #5289

Closed
opened 2026-06-05 15:20:52 -04:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/5074
Author: @timothycarambat
Created: 2/26/2026
Status: Merged
Merged: 3/10/2026
Merged by: @timothycarambat

Base: masterHead: 4983-feat-new-chat-history-implementation


📝 Commits (10+)

  • e73d462 New chat history layout with chat bubbles (#4985)
  • 8e257fe merge master into 4983-feat-new-chat-history-implementation
  • 2519635 Merge branch 'master' into 4983-feat-new-chat-history-implementation
  • 69bbe08 Implement new citations UI (#5038)
  • c663864 Merge branch 'master' of github.com:Mintplex-Labs/anything-llm into 4983-feat-new-chat-history-implementation
  • cb0414e sync
  • b89086f New prompt input ui/tools menu (#5070)
  • 9d7db41 Merge branch 'master' into 4983-feat-new-chat-history-implementation
  • 6a8fea0 Merge branch 'master' into 4983-feat-new-chat-history-implementation
  • b0941e1 update how tooltip works for agent menu

📊 Changes

88 files changed (+3097 additions, -2189 deletions)

View changed files

📝 frontend/src/components/Sidebar/SidebarToggle/index.jsx (+6 -0)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/Chartable/index.jsx (+20 -26)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/Citation/index.jsx (+99 -122)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/Actions/ActionMenu/index.jsx (+1 -1)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/Actions/EditMessage/index.jsx (+88 -24)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/Actions/RenderMetrics/index.jsx (+4 -3)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/Actions/TTSButton/asyncTts.jsx (+1 -1)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/Actions/TTSButton/index.jsx (+21 -7)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/Actions/TTSButton/native.jsx (+1 -1)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/Actions/index.jsx (+19 -28)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/index.jsx (+157 -100)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/PromptReply/index.jsx (+18 -62)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/StatusResponse/index.jsx (+48 -49)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/ThoughtContainer/index.jsx (+52 -58)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/index.jsx (+42 -31)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatTooltips/index.jsx (+10 -0)
frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/AgentMenu/index.jsx (+0 -144)
📝 frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/AttachItem/index.jsx (+7 -6)
📝 frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/LLMSelector/ChatModelSelection/index.jsx (+60 -90)
📝 frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/LLMSelector/LLMSelector/index.jsx (+26 -14)

...and 68 more files

📄 Description

resolves #4984
resolves #4827
closes #4792


🔄 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/5074 **Author:** [@timothycarambat](https://github.com/timothycarambat) **Created:** 2/26/2026 **Status:** ✅ Merged **Merged:** 3/10/2026 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `4983-feat-new-chat-history-implementation` --- ### 📝 Commits (10+) - [`e73d462`](https://github.com/Mintplex-Labs/anything-llm/commit/e73d462840c4e078dd6c1f6a6b28916a9e6922dd) New chat history layout with chat bubbles (#4985) - [`8e257fe`](https://github.com/Mintplex-Labs/anything-llm/commit/8e257fed1e77f4a59436f375cb02c79226b4bb0b) merge master into 4983-feat-new-chat-history-implementation - [`2519635`](https://github.com/Mintplex-Labs/anything-llm/commit/2519635c76e2a8a3aff82f96d29a1341bd8c94ee) Merge branch 'master' into 4983-feat-new-chat-history-implementation - [`69bbe08`](https://github.com/Mintplex-Labs/anything-llm/commit/69bbe08abb61735c88630e818a41deecd596000c) Implement new citations UI (#5038) - [`c663864`](https://github.com/Mintplex-Labs/anything-llm/commit/c6638648fc12b806ad3f3f96e2916f9afd843b5f) Merge branch 'master' of github.com:Mintplex-Labs/anything-llm into 4983-feat-new-chat-history-implementation - [`cb0414e`](https://github.com/Mintplex-Labs/anything-llm/commit/cb0414e51b6707f201b06fa2a4984058d1e9070f) sync - [`b89086f`](https://github.com/Mintplex-Labs/anything-llm/commit/b89086f3788cd888309274ba2af0aa2af4dcd3af) New prompt input ui/tools menu (#5070) - [`9d7db41`](https://github.com/Mintplex-Labs/anything-llm/commit/9d7db419127f1dc4f40b908786d15acf5eec6694) Merge branch 'master' into 4983-feat-new-chat-history-implementation - [`6a8fea0`](https://github.com/Mintplex-Labs/anything-llm/commit/6a8fea0f4000cdddedbf5185aa32b7c173ccfd40) Merge branch 'master' into 4983-feat-new-chat-history-implementation - [`b0941e1`](https://github.com/Mintplex-Labs/anything-llm/commit/b0941e13703ffa92a668218fbb39fdf4795baddb) update how tooltip works for agent menu ### 📊 Changes **88 files changed** (+3097 additions, -2189 deletions) <details> <summary>View changed files</summary> 📝 `frontend/src/components/Sidebar/SidebarToggle/index.jsx` (+6 -0) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/Chartable/index.jsx` (+20 -26) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/Citation/index.jsx` (+99 -122) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/Actions/ActionMenu/index.jsx` (+1 -1) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/Actions/EditMessage/index.jsx` (+88 -24) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/Actions/RenderMetrics/index.jsx` (+4 -3) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/Actions/TTSButton/asyncTts.jsx` (+1 -1) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/Actions/TTSButton/index.jsx` (+21 -7) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/Actions/TTSButton/native.jsx` (+1 -1) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/Actions/index.jsx` (+19 -28) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/HistoricalMessage/index.jsx` (+157 -100) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/PromptReply/index.jsx` (+18 -62) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/StatusResponse/index.jsx` (+48 -49) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/ThoughtContainer/index.jsx` (+52 -58) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/index.jsx` (+42 -31) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatTooltips/index.jsx` (+10 -0) ➖ `frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/AgentMenu/index.jsx` (+0 -144) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/AttachItem/index.jsx` (+7 -6) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/LLMSelector/ChatModelSelection/index.jsx` (+60 -90) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/LLMSelector/LLMSelector/index.jsx` (+26 -14) _...and 68 more files_ </details> ### 📄 Description resolves #4984 resolves #4827 closes #4792 --- <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-06-05 15:20:52 -04:00
yindo closed this issue 2026-06-05 15:20:52 -04: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#5289