[PR #1923] [MERGED] Fine tuning order flow (cloud-based) #3831

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/1923
Author: @timothycarambat
Created: 7/22/2024
Status: Merged
Merged: 7/22/2024
Merged by: @timothycarambat

Base: masterHead: fine-tuning-orderflow


📝 Commits (7)

  • a01a3d9 WIP fine-tuning order flow
  • fe0e5da flow patches and typo
  • ccdd0c9 Refine steps
  • 215de47 Merge branch 'master' of github.com:Mintplex-Labs/anything-llm into fine-tuning-orderflow
  • 75758a4 Merge branch 'master' of github.com:Mintplex-Labs/anything-llm into fine-tuning-orderflow
  • b327251 Merge branch 'master' of github.com:Mintplex-Labs/anything-llm into fine-tuning-orderflow
  • 49d8c7f Add prod firebase url

📊 Changes

24 files changed (+2172 additions, -56 deletions)

View changed files

📝 .vscode/settings.json (+1 -0)
📝 frontend/package.json (+1 -1)
📝 frontend/src/App.jsx (+6 -0)
📝 frontend/src/components/SettingsSidebar/index.jsx (+43 -37)
📝 frontend/src/index.css (+28 -0)
frontend/src/models/experimental/fineTuning.js (+129 -0)
frontend/src/pages/FineTuning/Banner/index.jsx (+66 -0)
frontend/src/pages/FineTuning/Steps/Confirmation/index.jsx (+147 -0)
frontend/src/pages/FineTuning/Steps/DataUpload/index.jsx (+295 -0)
frontend/src/pages/FineTuning/Steps/FulfillmentPolicy/index.jsx (+129 -0)
frontend/src/pages/FineTuning/Steps/Introduction/index.jsx (+110 -0)
frontend/src/pages/FineTuning/Steps/OrderDetails/index.jsx (+138 -0)
frontend/src/pages/FineTuning/Steps/OrderPlaced/index.jsx (+69 -0)
frontend/src/pages/FineTuning/Steps/Privacy/index.jsx (+233 -0)
frontend/src/pages/FineTuning/Steps/TermsAndConditions/index.jsx (+188 -0)
frontend/src/pages/FineTuning/Steps/index.jsx (+148 -0)
frontend/src/pages/FineTuning/index.jsx (+70 -0)
📝 frontend/src/pages/GeneralSettings/Chats/index.jsx (+18 -8)
📝 frontend/src/pages/Main/index.jsx (+10 -6)
📝 frontend/src/pages/WorkspaceChat/index.jsx (+8 -4)

...and 4 more files

📄 Description

Implement a process for fine-tune models to be ordered and delivered in-app.


🔄 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/1923 **Author:** [@timothycarambat](https://github.com/timothycarambat) **Created:** 7/22/2024 **Status:** ✅ Merged **Merged:** 7/22/2024 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `fine-tuning-orderflow` --- ### 📝 Commits (7) - [`a01a3d9`](https://github.com/Mintplex-Labs/anything-llm/commit/a01a3d93ace107482e8e5e14ab165d2a074cd6e3) WIP fine-tuning order flow - [`fe0e5da`](https://github.com/Mintplex-Labs/anything-llm/commit/fe0e5da3afc346bf4c2f3b068aaf81828a8c1484) flow patches and typo - [`ccdd0c9`](https://github.com/Mintplex-Labs/anything-llm/commit/ccdd0c99732671769d1eaac2568efdc3217f1435) Refine steps - [`215de47`](https://github.com/Mintplex-Labs/anything-llm/commit/215de478b8000b5d3c68f8bdd8b9272048419f64) Merge branch 'master' of github.com:Mintplex-Labs/anything-llm into fine-tuning-orderflow - [`75758a4`](https://github.com/Mintplex-Labs/anything-llm/commit/75758a4b699878233db9ae7964c8d973c1046a4a) Merge branch 'master' of github.com:Mintplex-Labs/anything-llm into fine-tuning-orderflow - [`b327251`](https://github.com/Mintplex-Labs/anything-llm/commit/b327251a1f4c5d1e58601a092514097858cf2594) Merge branch 'master' of github.com:Mintplex-Labs/anything-llm into fine-tuning-orderflow - [`49d8c7f`](https://github.com/Mintplex-Labs/anything-llm/commit/49d8c7f2609870480a0a6597d3bcf96dde28c5da) Add prod firebase url ### 📊 Changes **24 files changed** (+2172 additions, -56 deletions) <details> <summary>View changed files</summary> 📝 `.vscode/settings.json` (+1 -0) 📝 `frontend/package.json` (+1 -1) 📝 `frontend/src/App.jsx` (+6 -0) 📝 `frontend/src/components/SettingsSidebar/index.jsx` (+43 -37) 📝 `frontend/src/index.css` (+28 -0) ➕ `frontend/src/models/experimental/fineTuning.js` (+129 -0) ➕ `frontend/src/pages/FineTuning/Banner/index.jsx` (+66 -0) ➕ `frontend/src/pages/FineTuning/Steps/Confirmation/index.jsx` (+147 -0) ➕ `frontend/src/pages/FineTuning/Steps/DataUpload/index.jsx` (+295 -0) ➕ `frontend/src/pages/FineTuning/Steps/FulfillmentPolicy/index.jsx` (+129 -0) ➕ `frontend/src/pages/FineTuning/Steps/Introduction/index.jsx` (+110 -0) ➕ `frontend/src/pages/FineTuning/Steps/OrderDetails/index.jsx` (+138 -0) ➕ `frontend/src/pages/FineTuning/Steps/OrderPlaced/index.jsx` (+69 -0) ➕ `frontend/src/pages/FineTuning/Steps/Privacy/index.jsx` (+233 -0) ➕ `frontend/src/pages/FineTuning/Steps/TermsAndConditions/index.jsx` (+188 -0) ➕ `frontend/src/pages/FineTuning/Steps/index.jsx` (+148 -0) ➕ `frontend/src/pages/FineTuning/index.jsx` (+70 -0) 📝 `frontend/src/pages/GeneralSettings/Chats/index.jsx` (+18 -8) 📝 `frontend/src/pages/Main/index.jsx` (+10 -6) 📝 `frontend/src/pages/WorkspaceChat/index.jsx` (+8 -4) _...and 4 more files_ </details> ### 📄 Description Implement a process for fine-tune models to be ordered and delivered in-app. --- <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:34:35 -05:00
yindo closed this issue 2026-02-22 18:34:35 -05:00
yindo changed title from [PR #1923] Fine tuning order flow (cloud-based) to [PR #1923] [MERGED] Fine tuning order flow (cloud-based) 2026-06-05 15:15:27 -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#3831