[PR #664] [MERGED] [FEAT] create custom prompt suggestions per workspace #3450

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/664
Author: @shatfield4
Created: 2/1/2024
Status: Merged
Merged: 2/6/2024
Merged by: @timothycarambat

Base: masterHead: 661-feat-prompt-suggestions


📝 Commits (6)

  • 165eeb0 create custom suggested chat messages per workspace
  • ed4aa06 Merge branch 'master' into 661-feat-prompt-suggestions
  • 5d90175 merge with master
  • 0f3446d update how suggestedChats are passed to chat window
  • f29936f update mobile styles
  • bde08ed update edit change handler

📊 Changes

12 files changed (+483 additions, -32 deletions)

View changed files

📝 frontend/src/App.jsx (+5 -0)
📝 frontend/src/components/Modals/MangeWorkspace/Settings/index.jsx (+8 -0)
📝 frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/index.jsx (+39 -15)
📝 frontend/src/components/WorkspaceChat/ChatContainer/index.jsx (+5 -1)
📝 frontend/src/models/workspace.js (+36 -0)
📝 frontend/src/pages/WorkspaceChat/index.jsx (+5 -1)
frontend/src/pages/WorkspaceSettings/index.jsx (+208 -0)
📝 frontend/src/utils/paths.js (+3 -0)
📝 server/endpoints/workspaces.js (+50 -0)
server/models/workspacesSuggestedMessages.js (+83 -0)
server/prisma/migrations/20240206181106_init/migration.sql (+13 -0)
📝 server/prisma/schema.prisma (+28 -15)

📄 Description

Pull Request Type

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

Relevant Issues

resolves #661

What is in this change?

Describe the changes in this PR that are impactful to the repo.

  • Implement an Additional Settings page in the workspace settings
  • Add ability to create custom prompt suggestions per workspace similar ChatGPT

Additional Information

Add any other context about the Pull Request here that was not captured above.

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/664 **Author:** [@shatfield4](https://github.com/shatfield4) **Created:** 2/1/2024 **Status:** ✅ Merged **Merged:** 2/6/2024 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `661-feat-prompt-suggestions` --- ### 📝 Commits (6) - [`165eeb0`](https://github.com/Mintplex-Labs/anything-llm/commit/165eeb0c5e32367579b5538c14f13bd71af1a277) create custom suggested chat messages per workspace - [`ed4aa06`](https://github.com/Mintplex-Labs/anything-llm/commit/ed4aa06eda4895baa268802f0f62bdcdd8b2e5a3) Merge branch 'master' into 661-feat-prompt-suggestions - [`5d90175`](https://github.com/Mintplex-Labs/anything-llm/commit/5d90175c9fad590bbb12d2c67adf628000114b8a) merge with master - [`0f3446d`](https://github.com/Mintplex-Labs/anything-llm/commit/0f3446db74898b03e052a5ef4460e37bb49c264e) update how suggestedChats are passed to chat window - [`f29936f`](https://github.com/Mintplex-Labs/anything-llm/commit/f29936f84b5a4f4700ec9bd89c402f56a31c0a83) update mobile styles - [`bde08ed`](https://github.com/Mintplex-Labs/anything-llm/commit/bde08ed3f50af3a4e8e3c12033b2b1ebedf2f81f) update edit change handler ### 📊 Changes **12 files changed** (+483 additions, -32 deletions) <details> <summary>View changed files</summary> 📝 `frontend/src/App.jsx` (+5 -0) 📝 `frontend/src/components/Modals/MangeWorkspace/Settings/index.jsx` (+8 -0) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/ChatHistory/index.jsx` (+39 -15) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/index.jsx` (+5 -1) 📝 `frontend/src/models/workspace.js` (+36 -0) 📝 `frontend/src/pages/WorkspaceChat/index.jsx` (+5 -1) ➕ `frontend/src/pages/WorkspaceSettings/index.jsx` (+208 -0) 📝 `frontend/src/utils/paths.js` (+3 -0) 📝 `server/endpoints/workspaces.js` (+50 -0) ➕ `server/models/workspacesSuggestedMessages.js` (+83 -0) ➕ `server/prisma/migrations/20240206181106_init/migration.sql` (+13 -0) 📝 `server/prisma/schema.prisma` (+28 -15) </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 #661 ### What is in this change? Describe the changes in this PR that are impactful to the repo. - Implement an `Additional Settings` page in the workspace settings - Add ability to create custom prompt suggestions per workspace similar ChatGPT ### 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. --> - [x] I ran `yarn lint` from the root of the repo & committed changes - [x] Relevant documentation has been updated - [x] I have tested my code functionality - [x] 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:33:48 -05:00
yindo closed this issue 2026-02-22 18:33:48 -05:00
yindo changed title from [PR #664] [FEAT] create custom prompt suggestions per workspace to [PR #664] [MERGED] [FEAT] create custom prompt suggestions per workspace 2026-06-05 15:13:28 -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#3450