[PR #3588] [CLOSED] Multi workspaces #4323

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/3588
Author: @amir-bashir
Created: 4/3/2025
Status: Closed

Base: masterHead: multi_workspaces


📝 Commits (10+)

  • 1da5ed4 Merge pull request #8 from saal-core/feature/multiple_workspaces
  • 89ce51d DAD-67 | [backend change] Clearning embeddings from all workspaces if embedding settings are altered
  • b810923 DAD-67 | [frontend change] Hybrid search config UI changes added.
  • 9e46ce1 DAD-67 | [frontend change] making all field in sparse embedding config mandatory
  • 36e0f56 modified query parameters for reranker. added internal workspace to db at startup.
  • 989d8e4 Merge pull request #10 from saal-core/feature/multiple_workspaces
  • 52ea078 DAD-67 | purging all vector-cache
  • cbb9676 DAD-67 | adding title for sparse embedding preference
  • ddeb896 DAD-67 | adjusting spaces
  • e8acfb3 Merge pull request #9 from saal-core/feature/DAD-67

📊 Changes

369 files changed (+323434 additions, -4787 deletions)

View changed files

📝 .dockerignore (+2 -1)
📝 .github/ISSUE_TEMPLATE/config.yml (+1 -1)
📝 .github/workflows/build-and-push-image-semver.yaml (+1 -1)
📝 .github/workflows/build-and-push-image.yaml (+1 -1)
📝 .github/workflows/dev-build.yaml (+1 -1)
📝 .gitignore (+3 -1)
📝 LICENSE (+1 -1)
Makefile (+28 -0)
📝 README.md (+4 -4)
📝 SECURITY.md (+1 -1)
📝 collector/package.json (+3 -2)
📝 collector/processSingleFile/convert/asPDF/index.js (+121 -19)
📝 collector/yarn.lock (+36 -25)
dev.Dockerfile (+127 -0)
docker-compose.yml (+109 -0)
📝 docker/Dockerfile (+5 -2)
📝 docker/docker-compose.yml (+23 -4)
📝 frontend/index.html (+9 -8)
📝 frontend/package.json (+3 -2)
frontend/public/callback.html (+16 -0)

...and 80 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/3588 **Author:** [@amir-bashir](https://github.com/amir-bashir) **Created:** 4/3/2025 **Status:** ❌ Closed **Base:** `master` ← **Head:** `multi_workspaces` --- ### 📝 Commits (10+) - [`1da5ed4`](https://github.com/Mintplex-Labs/anything-llm/commit/1da5ed47526ed304fc093ae7b91f601639d0c434) Merge pull request #8 from saal-core/feature/multiple_workspaces - [`89ce51d`](https://github.com/Mintplex-Labs/anything-llm/commit/89ce51d1e1079d7e3d4f41e749b5d4163fee56c6) DAD-67 | [backend change] Clearning embeddings from all workspaces if embedding settings are altered - [`b810923`](https://github.com/Mintplex-Labs/anything-llm/commit/b810923701ab5a1e59bbaeb33d41613efda7a514) DAD-67 | [frontend change] Hybrid search config UI changes added. - [`9e46ce1`](https://github.com/Mintplex-Labs/anything-llm/commit/9e46ce18ffad34b4046fc2b481ec4fac7426444c) DAD-67 | [frontend change] making all field in sparse embedding config mandatory - [`36e0f56`](https://github.com/Mintplex-Labs/anything-llm/commit/36e0f56b79862f87a35f4da535addc1fa96aeefd) modified query parameters for reranker. added internal workspace to db at startup. - [`989d8e4`](https://github.com/Mintplex-Labs/anything-llm/commit/989d8e443de401ed74603e7a9d67c87247ecdf8f) Merge pull request #10 from saal-core/feature/multiple_workspaces - [`52ea078`](https://github.com/Mintplex-Labs/anything-llm/commit/52ea078eac3a19a6c818c912f121c8a681bcac86) DAD-67 | purging all vector-cache - [`cbb9676`](https://github.com/Mintplex-Labs/anything-llm/commit/cbb967640054c6843320ff28cf52553a7d2b0e34) DAD-67 | adding title for sparse embedding preference - [`ddeb896`](https://github.com/Mintplex-Labs/anything-llm/commit/ddeb8967eaf1fc2e02e954a90a9e74db88c84499) DAD-67 | adjusting spaces - [`e8acfb3`](https://github.com/Mintplex-Labs/anything-llm/commit/e8acfb3387dff8082bdd6918021e120c21bc5914) Merge pull request #9 from saal-core/feature/DAD-67 ### 📊 Changes **369 files changed** (+323434 additions, -4787 deletions) <details> <summary>View changed files</summary> 📝 `.dockerignore` (+2 -1) 📝 `.github/ISSUE_TEMPLATE/config.yml` (+1 -1) 📝 `.github/workflows/build-and-push-image-semver.yaml` (+1 -1) 📝 `.github/workflows/build-and-push-image.yaml` (+1 -1) 📝 `.github/workflows/dev-build.yaml` (+1 -1) 📝 `.gitignore` (+3 -1) 📝 `LICENSE` (+1 -1) ➕ `Makefile` (+28 -0) 📝 `README.md` (+4 -4) 📝 `SECURITY.md` (+1 -1) 📝 `collector/package.json` (+3 -2) 📝 `collector/processSingleFile/convert/asPDF/index.js` (+121 -19) 📝 `collector/yarn.lock` (+36 -25) ➕ `dev.Dockerfile` (+127 -0) ➕ `docker-compose.yml` (+109 -0) 📝 `docker/Dockerfile` (+5 -2) 📝 `docker/docker-compose.yml` (+23 -4) 📝 `frontend/index.html` (+9 -8) 📝 `frontend/package.json` (+3 -2) ➕ `frontend/public/callback.html` (+16 -0) _...and 80 more files_ </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:35:36 -05:00
yindo closed this issue 2026-02-22 18:35:36 -05:00
yindo changed title from [PR #3588] Multi workspaces to [PR #3588] [CLOSED] Multi workspaces 2026-06-05 15:18:00 -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#4323