[PR #725] [MERGED] 705 feat new workspace settings layout #3475

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

📋 Pull Request Information

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

Base: masterHead: 705-feat-new-workspace-settings-layout


📝 Commits (10+)

  • b1936b7 WIP new settings layout
  • d1344c1 add suggested messages to general & appearance and clean up/make more user friendly
  • 0c1c6b2 lazy load workspace settings pages
  • 70b5478 Merge branch 'master' into 705-feat-new-workspace-settings-layout
  • f1de40a css fix on X button for document picker where button is barely clickable
  • 7de5582 remove additional workspace settings page
  • e548b7f fix thread selection action when on thread
  • 4a64067 refactor inputs into sub-components
  • 16503f0 forgot files
  • dc25c33 merge with mater

📊 Changes

10 files changed (+565 additions, -0 deletions)

View changed files

frontend/src/pages/WorkspaceSettings/ChatSettings/ChatHistorySettings/index.jsx (+35 -0)
frontend/src/pages/WorkspaceSettings/ChatSettings/ChatModelSelection/index.jsx (+120 -0)
frontend/src/pages/WorkspaceSettings/ChatSettings/ChatPromptSettings/index.jsx (+30 -0)
frontend/src/pages/WorkspaceSettings/ChatSettings/ChatTemperatureSettings/index.jsx (+47 -0)
frontend/src/pages/WorkspaceSettings/GeneralAppearance/SuggestedChatMessages/index.jsx (+193 -0)
frontend/src/pages/WorkspaceSettings/GeneralAppearance/VectorCount/index.jsx (+39 -0)
frontend/src/pages/WorkspaceSettings/GeneralAppearance/WorkspaceName/index.jsx (+26 -0)
frontend/src/pages/WorkspaceSettings/VectorDatabase/DocumentSimilarityThreshold/index.jsx (+31 -0)
frontend/src/pages/WorkspaceSettings/VectorDatabase/MaxContextSnippets/index.jsx (+31 -0)
frontend/src/pages/WorkspaceSettings/VectorDatabase/VectorDBIdentifier/index.jsx (+13 -0)

📄 Description

Pull Request Type

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

Relevant Issues

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

  • 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/725 **Author:** [@timothycarambat](https://github.com/timothycarambat) **Created:** 2/14/2024 **Status:** ✅ Merged **Merged:** 2/14/2024 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `705-feat-new-workspace-settings-layout` --- ### 📝 Commits (10+) - [`b1936b7`](https://github.com/Mintplex-Labs/anything-llm/commit/b1936b746f4efdaed914171b10b899ab0c0d8b32) WIP new settings layout - [`d1344c1`](https://github.com/Mintplex-Labs/anything-llm/commit/d1344c1d8234e265e304f513b916037c818b9bf3) add suggested messages to general & appearance and clean up/make more user friendly - [`0c1c6b2`](https://github.com/Mintplex-Labs/anything-llm/commit/0c1c6b200b84cd792f8027e7c263e47495375502) lazy load workspace settings pages - [`70b5478`](https://github.com/Mintplex-Labs/anything-llm/commit/70b54787aa9cc65e420f3dd3f0bede20add8202f) Merge branch 'master' into 705-feat-new-workspace-settings-layout - [`f1de40a`](https://github.com/Mintplex-Labs/anything-llm/commit/f1de40a6a701940f0d1b81b2067807f57c22854b) css fix on X button for document picker where button is barely clickable - [`7de5582`](https://github.com/Mintplex-Labs/anything-llm/commit/7de55828669b8e60010d261d036bda8d66cbc6e9) remove additional workspace settings page - [`e548b7f`](https://github.com/Mintplex-Labs/anything-llm/commit/e548b7fecbdd7ad99e67e2dca28de311f25490a1) fix thread selection action when on thread - [`4a64067`](https://github.com/Mintplex-Labs/anything-llm/commit/4a640678c39c629e67882ab4079991c75b9dcaae) refactor inputs into sub-components - [`16503f0`](https://github.com/Mintplex-Labs/anything-llm/commit/16503f0a9dc27b305a024b2e33a6fee819a69f0f) forgot files - [`dc25c33`](https://github.com/Mintplex-Labs/anything-llm/commit/dc25c332561a6baf3a714b6bb4ae538dba5ab146) merge with mater ### 📊 Changes **10 files changed** (+565 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `frontend/src/pages/WorkspaceSettings/ChatSettings/ChatHistorySettings/index.jsx` (+35 -0) ➕ `frontend/src/pages/WorkspaceSettings/ChatSettings/ChatModelSelection/index.jsx` (+120 -0) ➕ `frontend/src/pages/WorkspaceSettings/ChatSettings/ChatPromptSettings/index.jsx` (+30 -0) ➕ `frontend/src/pages/WorkspaceSettings/ChatSettings/ChatTemperatureSettings/index.jsx` (+47 -0) ➕ `frontend/src/pages/WorkspaceSettings/GeneralAppearance/SuggestedChatMessages/index.jsx` (+193 -0) ➕ `frontend/src/pages/WorkspaceSettings/GeneralAppearance/VectorCount/index.jsx` (+39 -0) ➕ `frontend/src/pages/WorkspaceSettings/GeneralAppearance/WorkspaceName/index.jsx` (+26 -0) ➕ `frontend/src/pages/WorkspaceSettings/VectorDatabase/DocumentSimilarityThreshold/index.jsx` (+31 -0) ➕ `frontend/src/pages/WorkspaceSettings/VectorDatabase/MaxContextSnippets/index.jsx` (+31 -0) ➕ `frontend/src/pages/WorkspaceSettings/VectorDatabase/VectorDBIdentifier/index.jsx` (+13 -0) </details> ### 📄 Description ### Pull Request Type <!-- For change type, change [ ] to [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:33:51 -05:00
yindo closed this issue 2026-02-22 18:33:51 -05:00
yindo changed title from [PR #725] 705 feat new workspace settings layout to [PR #725] [MERGED] 705 feat new workspace settings layout 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#3475