[PR #4450] [CLOSED] Relevance-score #4627

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/4450
Author: @muddylemon
Created: 9/29/2025
Status: Closed

Base: masterHead: relevance-score


📝 Commits (10+)

  • d063d6f Add package-lock.json and update package.json with new dependencies
  • 895141a Merge pull request #1 from MetabolicWise/filip-dev/engines-connection
  • 002cd74 Added cloud Dockerfile
  • 122cf1b Fixed node_modules in server package
  • f812e16 Added bcrypt to server yarn.lock
  • ee138a5 Add chat feedback endpoint and update OpenAPI documentation
  • d37ca5c Merge pull request #2 from MetabolicWise/filip-dev/messages-feedback
  • 470e2bc Add Google Cloud Storage integration and enhance AI response handling
  • 951ea9a Merge pull request #3 from MetabolicWise/filip-dev/docs-references
  • b3f20e7 Add engines_session_ids to workspace threads and update related API logic

📊 Changes

37 files changed (+11013 additions, -3524 deletions)

View changed files

docker/cloud.Dockerfile (+188 -0)
📝 frontend/jsconfig.json (+7 -2)
📝 frontend/src/AuthContext.jsx (+5 -1)
frontend/src/types/global.d.ts (+5 -0)
📝 frontend/src/utils/constants.js (+89 -0)
📝 frontend/src/utils/session.js (+1 -1)
📝 frontend/vite.config.js (+8 -2)
package-lock.json (+4748 -0)
📝 package.json (+4 -1)
server/aiapplications_utils/config.js (+15 -0)
server/aiapplications_utils/docRag.js (+65 -0)
server/aiapplications_utils/referenceHandler.js (+136 -0)
server/aiapplications_utils/responseGenerator.js (+171 -0)
server/aiapplications_utils/sessionManagement.js (+62 -0)
📝 server/endpoints/api/workspace/index.js (+56 -1)
📝 server/endpoints/api/workspaceThread/index.js (+952 -5)
📝 server/endpoints/system.js (+74 -5)
📝 server/index.js (+8 -1)
server/models/ragDocuments.js (+315 -0)
📝 server/models/workspaceThread.js (+22 -4)

...and 17 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/4450 **Author:** [@muddylemon](https://github.com/muddylemon) **Created:** 9/29/2025 **Status:** ❌ Closed **Base:** `master` ← **Head:** `relevance-score` --- ### 📝 Commits (10+) - [`d063d6f`](https://github.com/Mintplex-Labs/anything-llm/commit/d063d6f61ecf87016665ef55f32e83b068cfbc51) Add package-lock.json and update package.json with new dependencies - [`895141a`](https://github.com/Mintplex-Labs/anything-llm/commit/895141af15167bcb3404ceeb68e086668b354c80) Merge pull request #1 from MetabolicWise/filip-dev/engines-connection - [`002cd74`](https://github.com/Mintplex-Labs/anything-llm/commit/002cd741c3c4b679ebd25ba5857de776f0c004a2) Added cloud Dockerfile - [`122cf1b`](https://github.com/Mintplex-Labs/anything-llm/commit/122cf1bc717b6e6a8e9e6620635a9825afc80344) Fixed node_modules in server package - [`f812e16`](https://github.com/Mintplex-Labs/anything-llm/commit/f812e16e25ac4c8c3cac26f79539b35340121f40) Added bcrypt to server yarn.lock - [`ee138a5`](https://github.com/Mintplex-Labs/anything-llm/commit/ee138a5eb66ecfc6a3a77a877ca5a2400a205a33) Add chat feedback endpoint and update OpenAPI documentation - [`d37ca5c`](https://github.com/Mintplex-Labs/anything-llm/commit/d37ca5c588ea5f21b304caf48bd77e1720d9159e) Merge pull request #2 from MetabolicWise/filip-dev/messages-feedback - [`470e2bc`](https://github.com/Mintplex-Labs/anything-llm/commit/470e2bc7420aa5650462939fe1ac076fc2f59a9c) Add Google Cloud Storage integration and enhance AI response handling - [`951ea9a`](https://github.com/Mintplex-Labs/anything-llm/commit/951ea9aacb7c7db8795e493616085895c153c368) Merge pull request #3 from MetabolicWise/filip-dev/docs-references - [`b3f20e7`](https://github.com/Mintplex-Labs/anything-llm/commit/b3f20e7e2a4e1ca9d94d6f529b06e69de2430c2f) Add engines_session_ids to workspace threads and update related API logic ### 📊 Changes **37 files changed** (+11013 additions, -3524 deletions) <details> <summary>View changed files</summary> ➕ `docker/cloud.Dockerfile` (+188 -0) 📝 `frontend/jsconfig.json` (+7 -2) 📝 `frontend/src/AuthContext.jsx` (+5 -1) ➕ `frontend/src/types/global.d.ts` (+5 -0) 📝 `frontend/src/utils/constants.js` (+89 -0) 📝 `frontend/src/utils/session.js` (+1 -1) 📝 `frontend/vite.config.js` (+8 -2) ➕ `package-lock.json` (+4748 -0) 📝 `package.json` (+4 -1) ➕ `server/aiapplications_utils/config.js` (+15 -0) ➕ `server/aiapplications_utils/docRag.js` (+65 -0) ➕ `server/aiapplications_utils/referenceHandler.js` (+136 -0) ➕ `server/aiapplications_utils/responseGenerator.js` (+171 -0) ➕ `server/aiapplications_utils/sessionManagement.js` (+62 -0) 📝 `server/endpoints/api/workspace/index.js` (+56 -1) 📝 `server/endpoints/api/workspaceThread/index.js` (+952 -5) 📝 `server/endpoints/system.js` (+74 -5) 📝 `server/index.js` (+8 -1) ➕ `server/models/ragDocuments.js` (+315 -0) 📝 `server/models/workspaceThread.js` (+22 -4) _...and 17 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:36:12 -05:00
yindo closed this issue 2026-02-22 18:36:12 -05:00
yindo changed title from [PR #4450] Relevance-score to [PR #4450] [CLOSED] Relevance-score 2026-06-05 15:19:31 -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#4627