[PR #734] [MERGED] Breakout Chat/Query mode as a workspace setting #3476

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/734
Author: @timothycarambat
Created: 2/16/2024
Status: Merged
Merged: 2/16/2024
Merged by: @timothycarambat

Base: masterHead: 733-workspace-chat-mode


📝 Commits (1)

  • c07a23e Remove useless icons in prompt bar

📊 Changes

21 files changed (+105 additions, -138 deletions)

View changed files

📝 frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/index.jsx (+1 -70)
📝 frontend/src/components/WorkspaceChat/ChatContainer/index.jsx (+0 -6)
📝 frontend/src/index.css (+4 -0)
📝 frontend/src/models/workspace.js (+2 -2)
📝 frontend/src/models/workspaceThread.js (+1 -2)
📝 frontend/src/pages/WorkspaceSettings/ChatSettings/ChatHistorySettings/index.jsx (+1 -4)
frontend/src/pages/WorkspaceSettings/ChatSettings/ChatModeSelection/index.jsx (+57 -0)
📝 frontend/src/pages/WorkspaceSettings/ChatSettings/ChatModelSelection/index.jsx (+2 -5)
📝 frontend/src/pages/WorkspaceSettings/ChatSettings/ChatPromptSettings/index.jsx (+1 -1)
📝 frontend/src/pages/WorkspaceSettings/ChatSettings/ChatTemperatureSettings/index.jsx (+1 -1)
📝 frontend/src/pages/WorkspaceSettings/ChatSettings/index.jsx (+2 -0)
📝 frontend/src/pages/WorkspaceSettings/GeneralAppearance/SuggestedChatMessages/index.jsx (+2 -6)
📝 frontend/src/pages/WorkspaceSettings/GeneralAppearance/VectorCount/index.jsx (+2 -2)
📝 frontend/src/pages/WorkspaceSettings/GeneralAppearance/WorkspaceName/index.jsx (+1 -1)
📝 frontend/src/pages/WorkspaceSettings/VectorDatabase/DocumentSimilarityThreshold/index.jsx (+1 -1)
📝 frontend/src/pages/WorkspaceSettings/VectorDatabase/MaxContextSnippets/index.jsx (+1 -1)
📝 frontend/src/pages/WorkspaceSettings/VectorDatabase/VectorDBIdentifier/index.jsx (+3 -7)
📝 server/endpoints/chat.js (+18 -28)
📝 server/models/workspace.js (+2 -1)
server/prisma/migrations/20240216214639_init/migration.sql (+2 -0)

...and 1 more files

📄 Description

Pull Request Type

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

Relevant Issues

resolves #733

What is in this change?

Remove useless icons in the prompt bar
Add chat mode column to workspaces that defaults to chat
Add UI for toggle of chat mode with a hint
Update UI for workspace settings to match designs

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/734 **Author:** [@timothycarambat](https://github.com/timothycarambat) **Created:** 2/16/2024 **Status:** ✅ Merged **Merged:** 2/16/2024 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `733-workspace-chat-mode` --- ### 📝 Commits (1) - [`c07a23e`](https://github.com/Mintplex-Labs/anything-llm/commit/c07a23edecfb17678312ca329fd0c2ad851bdf41) Remove useless icons in prompt bar ### 📊 Changes **21 files changed** (+105 additions, -138 deletions) <details> <summary>View changed files</summary> 📝 `frontend/src/components/WorkspaceChat/ChatContainer/PromptInput/index.jsx` (+1 -70) 📝 `frontend/src/components/WorkspaceChat/ChatContainer/index.jsx` (+0 -6) 📝 `frontend/src/index.css` (+4 -0) 📝 `frontend/src/models/workspace.js` (+2 -2) 📝 `frontend/src/models/workspaceThread.js` (+1 -2) 📝 `frontend/src/pages/WorkspaceSettings/ChatSettings/ChatHistorySettings/index.jsx` (+1 -4) ➕ `frontend/src/pages/WorkspaceSettings/ChatSettings/ChatModeSelection/index.jsx` (+57 -0) 📝 `frontend/src/pages/WorkspaceSettings/ChatSettings/ChatModelSelection/index.jsx` (+2 -5) 📝 `frontend/src/pages/WorkspaceSettings/ChatSettings/ChatPromptSettings/index.jsx` (+1 -1) 📝 `frontend/src/pages/WorkspaceSettings/ChatSettings/ChatTemperatureSettings/index.jsx` (+1 -1) 📝 `frontend/src/pages/WorkspaceSettings/ChatSettings/index.jsx` (+2 -0) 📝 `frontend/src/pages/WorkspaceSettings/GeneralAppearance/SuggestedChatMessages/index.jsx` (+2 -6) 📝 `frontend/src/pages/WorkspaceSettings/GeneralAppearance/VectorCount/index.jsx` (+2 -2) 📝 `frontend/src/pages/WorkspaceSettings/GeneralAppearance/WorkspaceName/index.jsx` (+1 -1) 📝 `frontend/src/pages/WorkspaceSettings/VectorDatabase/DocumentSimilarityThreshold/index.jsx` (+1 -1) 📝 `frontend/src/pages/WorkspaceSettings/VectorDatabase/MaxContextSnippets/index.jsx` (+1 -1) 📝 `frontend/src/pages/WorkspaceSettings/VectorDatabase/VectorDBIdentifier/index.jsx` (+3 -7) 📝 `server/endpoints/chat.js` (+18 -28) 📝 `server/models/workspace.js` (+2 -1) ➕ `server/prisma/migrations/20240216214639_init/migration.sql` (+2 -0) _...and 1 more files_ </details> ### 📄 Description ### Pull Request Type <!-- For change type, change [ ] to [x]. --> - [x] ✨ feat - [ ] 🐛 fix - [x] ♻️ refactor - [ ] 💄 style - [ ] 🔨 chore - [ ] 📝 docs ### Relevant Issues <!-- Use "resolves #xxx" to auto resolve on merge. Otherwise, please use "connect #xxx" --> resolves #733 ### What is in this change? Remove useless icons in the prompt bar Add chat mode column to workspaces that defaults to chat Add UI for toggle of chat mode with a hint Update UI for workspace settings to match designs ### 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:52 -05:00
yindo closed this issue 2026-02-22 18:33:52 -05:00
yindo changed title from [PR #734] Breakout Chat/Query mode as a workspace setting to [PR #734] [MERGED] Breakout Chat/Query mode as a workspace setting 2026-06-05 15:13:37 -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#3476