[PR #3770] [MERGED] Chat prompt history menu #4391

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/3770
Author: @shatfield4
Created: 5/5/2025
Status: Merged
Merged: 5/8/2025
Merged by: @timothycarambat

Base: masterHead: chat-prompt-history-menu


📝 Commits (10+)

  • c860b4e wip system prompt history sidebar ui
  • 4e22b5d lint
  • 096a4d8 backend/frontend implementation for prompt history wip
  • 7bb8cfb lint
  • 52e822d Merge branch 'master' into chat-prompt-history-menu
  • 89c0c12 rework ui
  • 25e8c8f add delete menu and delete chat history by id
  • 0dd1e5e lint
  • cd5e6a5 ref for menu button
  • 5986609 reorganize components + light mode styles

📊 Changes

27 files changed (+946 additions, -96 deletions)

View changed files

📝 frontend/src/locales/ar/common.js (+10 -0)
📝 frontend/src/locales/da/common.js (+10 -0)
📝 frontend/src/locales/de/common.js (+10 -0)
📝 frontend/src/locales/en/common.js (+12 -1)
📝 frontend/src/locales/es/common.js (+10 -0)
📝 frontend/src/locales/fa/common.js (+10 -0)
📝 frontend/src/locales/fr/common.js (+10 -0)
📝 frontend/src/locales/he/common.js (+10 -0)
📝 frontend/src/locales/it/common.js (+10 -0)
📝 frontend/src/locales/ja/common.js (+10 -0)
📝 frontend/src/locales/ko/common.js (+10 -0)
📝 frontend/src/locales/nl/common.js (+10 -0)
📝 frontend/src/locales/pt_BR/common.js (+10 -0)
📝 frontend/src/locales/ru/common.js (+10 -0)
📝 frontend/src/locales/tr/common.js (+10 -0)
📝 frontend/src/locales/vn/common.js (+10 -0)
📝 frontend/src/locales/zh/common.js (+10 -0)
📝 frontend/src/locales/zh_TW/common.js (+10 -0)
frontend/src/models/promptHistory.js (+84 -0)
frontend/src/pages/WorkspaceSettings/ChatSettings/ChatPromptSettings/ChatPromptHistory/PromptHistoryItem/index.jsx (+121 -0)

...and 7 more files

📄 Description

Pull Request Type

  • feat
  • 🐛 fix
  • ♻️ refactor
  • 💄 style
  • 🔨 chore
  • 📝 docs

Relevant Issues

resolves #xxx

What is in this change?

Additional Information

Developer Validations

  • I ran yarn lint from the root of the repo & committed changes
  • Relevant documentation has been updated
  • I have tested my code functionality
  • Docker build succeeds locally

🔄 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/3770 **Author:** [@shatfield4](https://github.com/shatfield4) **Created:** 5/5/2025 **Status:** ✅ Merged **Merged:** 5/8/2025 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `chat-prompt-history-menu` --- ### 📝 Commits (10+) - [`c860b4e`](https://github.com/Mintplex-Labs/anything-llm/commit/c860b4ee1a64fd1423458a349e129df0443e7e30) wip system prompt history sidebar ui - [`4e22b5d`](https://github.com/Mintplex-Labs/anything-llm/commit/4e22b5daf7e9a83f9ab99980897cf5a07aa8d1ae) lint - [`096a4d8`](https://github.com/Mintplex-Labs/anything-llm/commit/096a4d848d5dfab853ca5b1c36f0d771d0c3fcf9) backend/frontend implementation for prompt history wip - [`7bb8cfb`](https://github.com/Mintplex-Labs/anything-llm/commit/7bb8cfba4389838eaec2167cd08189cf539941d9) lint - [`52e822d`](https://github.com/Mintplex-Labs/anything-llm/commit/52e822d9fd1018ccad41b38ffc4c6269a7405d31) Merge branch 'master' into chat-prompt-history-menu - [`89c0c12`](https://github.com/Mintplex-Labs/anything-llm/commit/89c0c12a40815762f3f8d30866732646dc4971d7) rework ui - [`25e8c8f`](https://github.com/Mintplex-Labs/anything-llm/commit/25e8c8fcf14388931c6a31aa5657c81a56c0d290) add delete menu and delete chat history by id - [`0dd1e5e`](https://github.com/Mintplex-Labs/anything-llm/commit/0dd1e5ec618fb27e74dfca795e39eeb0f7c1676f) lint - [`cd5e6a5`](https://github.com/Mintplex-Labs/anything-llm/commit/cd5e6a5e624c9a77332f01685729b9a3b3c3c9d9) ref for menu button - [`5986609`](https://github.com/Mintplex-Labs/anything-llm/commit/5986609f333d7d7fa3a1226d56446f6da4cb62c2) reorganize components + light mode styles ### 📊 Changes **27 files changed** (+946 additions, -96 deletions) <details> <summary>View changed files</summary> 📝 `frontend/src/locales/ar/common.js` (+10 -0) 📝 `frontend/src/locales/da/common.js` (+10 -0) 📝 `frontend/src/locales/de/common.js` (+10 -0) 📝 `frontend/src/locales/en/common.js` (+12 -1) 📝 `frontend/src/locales/es/common.js` (+10 -0) 📝 `frontend/src/locales/fa/common.js` (+10 -0) 📝 `frontend/src/locales/fr/common.js` (+10 -0) 📝 `frontend/src/locales/he/common.js` (+10 -0) 📝 `frontend/src/locales/it/common.js` (+10 -0) 📝 `frontend/src/locales/ja/common.js` (+10 -0) 📝 `frontend/src/locales/ko/common.js` (+10 -0) 📝 `frontend/src/locales/nl/common.js` (+10 -0) 📝 `frontend/src/locales/pt_BR/common.js` (+10 -0) 📝 `frontend/src/locales/ru/common.js` (+10 -0) 📝 `frontend/src/locales/tr/common.js` (+10 -0) 📝 `frontend/src/locales/vn/common.js` (+10 -0) 📝 `frontend/src/locales/zh/common.js` (+10 -0) 📝 `frontend/src/locales/zh_TW/common.js` (+10 -0) ➕ `frontend/src/models/promptHistory.js` (+84 -0) ➕ `frontend/src/pages/WorkspaceSettings/ChatSettings/ChatPromptSettings/ChatPromptHistory/PromptHistoryItem/index.jsx` (+121 -0) _...and 7 more files_ </details> ### 📄 Description ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [x] ✨ feat - [ ] 🐛 fix - [ ] ♻️ refactor - [ ] 💄 style - [ ] 🔨 chore - [ ] 📝 docs ### Relevant Issues <!-- Use "resolves #xxx" to auto resolve on merge. Otherwise, please use "connect #xxx" --> resolves #xxx ### What is in this change? <!-- Describe the changes in this PR that are impactful to the repo. --> ### Additional Information <!-- Add any other context about the Pull Request here that was not captured above. --> ### Developer Validations <!-- All of the applicable items should be checked. --> - [ ] I ran `yarn lint` from the root of the repo & committed changes - [ ] Relevant documentation has been updated - [ ] I have tested my code functionality - [ ] Docker build succeeds locally --- <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:35:44 -05:00
yindo closed this issue 2026-02-22 18:35:44 -05:00
yindo changed title from [PR #3770] Chat prompt history menu to [PR #3770] [MERGED] Chat prompt history menu 2026-06-05 15:18:20 -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#4391