[PR #4222] [MERGED] Add parsed files table and parse server endpoints #4564

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/4222
Author: @shatfield4
Created: 7/30/2025
Status: Merged
Merged: 7/31/2025
Merged by: @shatfield4

Base: upload-ui-uxHead: upload-ui-ux-db-table


📝 Commits (4)

  • 1bb3675 add workspace_parsed_files table + parse endpoints/models
  • 2aa2d8d remove dev api parse endpoint
  • 3a1c36d remove unneeded imports
  • 3c99763 iterate over all files + remove unneeded update function + update telemetry debounce

📊 Changes

8 files changed (+239 additions, -1 deletions)

View changed files

📝 frontend/src/models/workspace.js (+10 -0)
📝 server/.gitignore (+1 -0)
📝 server/endpoints/workspaces.js (+85 -0)
📝 server/models/telemetry.js (+2 -1)
server/models/workspaceParsedFiles.js (+67 -0)
server/prisma/migrations/20250730235629_init/migration.sql (+21 -0)
📝 server/prisma/schema.prisma (+17 -0)
📝 server/utils/collectorApi/index.js (+36 -0)

📄 Description

Pull Request Type

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

Relevant Issues

resolves #xxx

What is in this change?

  • Add new workspace_parsed_files table
  • Add server models for interacting with new table
  • Add developer API endpoint for workspace direct uploads
  • Add internal API endpoint for workspace direct uploads

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/4222 **Author:** [@shatfield4](https://github.com/shatfield4) **Created:** 7/30/2025 **Status:** ✅ Merged **Merged:** 7/31/2025 **Merged by:** [@shatfield4](https://github.com/shatfield4) **Base:** `upload-ui-ux` ← **Head:** `upload-ui-ux-db-table` --- ### 📝 Commits (4) - [`1bb3675`](https://github.com/Mintplex-Labs/anything-llm/commit/1bb3675be576b4b50c3c20f052bee253fd8b165b) add workspace_parsed_files table + parse endpoints/models - [`2aa2d8d`](https://github.com/Mintplex-Labs/anything-llm/commit/2aa2d8d08c5f9e9d26996c5688cee2494c845733) remove dev api parse endpoint - [`3a1c36d`](https://github.com/Mintplex-Labs/anything-llm/commit/3a1c36da2a89886d37b015a9a17341241501c03d) remove unneeded imports - [`3c99763`](https://github.com/Mintplex-Labs/anything-llm/commit/3c99763bcc7a4925edd6b60683e5ae8efabb16c9) iterate over all files + remove unneeded update function + update telemetry debounce ### 📊 Changes **8 files changed** (+239 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `frontend/src/models/workspace.js` (+10 -0) 📝 `server/.gitignore` (+1 -0) 📝 `server/endpoints/workspaces.js` (+85 -0) 📝 `server/models/telemetry.js` (+2 -1) ➕ `server/models/workspaceParsedFiles.js` (+67 -0) ➕ `server/prisma/migrations/20250730235629_init/migration.sql` (+21 -0) 📝 `server/prisma/schema.prisma` (+17 -0) 📝 `server/utils/collectorApi/index.js` (+36 -0) </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 #xxx ### What is in this change? <!-- Describe the changes in this PR that are impactful to the repo. --> - Add new `workspace_parsed_files` table - Add server models for interacting with new table - Add developer API endpoint for workspace direct uploads - Add internal API endpoint for workspace direct uploads ### 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:36:05 -05:00
yindo closed this issue 2026-02-22 18:36:05 -05:00
yindo changed title from [PR #4222] Add parsed files table and parse server endpoints to [PR #4222] [MERGED] Add parsed files table and parse server endpoints 2026-06-05 15:19:12 -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#4564