[PR #502] [MERGED] Onboarding V2 #3377

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/502
Author: @timothycarambat
Created: 12/28/2023
Status: Merged
Merged: 1/4/2024
Merged by: @timothycarambat

Base: masterHead: 498-onboarding-v2


📝 Commits (10+)

  • ae022cd WIP onboarding v2
  • 26350fd Welcome screen for onboarding complete
  • 626057f fix home page and WIP create skeleton for llm preference search/options
  • 658397c render llms as options
  • 99e2cf9 add search functionality to llm preference & add survey step
  • 65ac257 fix openai settings undefined & create custom logo onboarding page
  • d6e6cc5 add user setup UI
  • d32a17e add data handling & privacy onboarding screen
  • 2df6a75 add create workspace onboarding screen
  • 545542c fix survey width in onboarding

📊 Changes

41 files changed (+2220 additions, -1788 deletions)

View changed files

📝 frontend/src/App.jsx (+1 -0)
📝 frontend/src/components/EmbeddingSelection/AzureAiOptions/index.jsx (+48 -46)
📝 frontend/src/components/EmbeddingSelection/LocalAiOptions/index.jsx (+59 -59)
📝 frontend/src/components/EmbeddingSelection/OpenAiOptions/index.jsx (+31 -29)
📝 frontend/src/components/LLMSelection/AzureAiOptions/index.jsx (+82 -77)
📝 frontend/src/components/LLMSelection/OpenAiOptions/index.jsx (+4 -4)
📝 frontend/src/components/PrivateRoute/index.jsx (+2 -2)
frontend/src/components/VectorDBSelection/ChromaDBOptions/index.jsx (+51 -0)
frontend/src/components/VectorDBSelection/LanceDBOptions/index.jsx (+9 -0)
frontend/src/components/VectorDBSelection/PineconeDBOptions/index.jsx (+55 -0)
frontend/src/components/VectorDBSelection/QDrantDBOptions/index.jsx (+38 -0)
frontend/src/components/VectorDBSelection/WeaviateDBOptions/index.jsx (+38 -0)
frontend/src/media/illustrations/create-workspace.png (+0 -0)
frontend/src/pages/OnboardingFlow/OnboardingModal/Steps/AppearanceSetup/index.jsx (+0 -145)
frontend/src/pages/OnboardingFlow/OnboardingModal/Steps/CreateFirstWorkspace/index.jsx (+0 -68)
frontend/src/pages/OnboardingFlow/OnboardingModal/Steps/EmbeddingSelection/index.jsx (+0 -136)
frontend/src/pages/OnboardingFlow/OnboardingModal/Steps/LLMSelection/index.jsx (+0 -183)
frontend/src/pages/OnboardingFlow/OnboardingModal/Steps/MultiUserSetup/index.jsx (+0 -117)
frontend/src/pages/OnboardingFlow/OnboardingModal/Steps/PasswordProtection/index.jsx (+0 -103)
frontend/src/pages/OnboardingFlow/OnboardingModal/Steps/UserModeSelection/index.jsx (+0 -47)

...and 21 more files

📄 Description

resolves #498


🔄 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/502 **Author:** [@timothycarambat](https://github.com/timothycarambat) **Created:** 12/28/2023 **Status:** ✅ Merged **Merged:** 1/4/2024 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `498-onboarding-v2` --- ### 📝 Commits (10+) - [`ae022cd`](https://github.com/Mintplex-Labs/anything-llm/commit/ae022cd25bad567c52cc7e89503bee14f73deff8) WIP onboarding v2 - [`26350fd`](https://github.com/Mintplex-Labs/anything-llm/commit/26350fdc6aceefd7863fd05d9d1895570550df42) Welcome screen for onboarding complete - [`626057f`](https://github.com/Mintplex-Labs/anything-llm/commit/626057fee0f0dd0385950ecfc4a2ebdbd9237f6f) fix home page and WIP create skeleton for llm preference search/options - [`658397c`](https://github.com/Mintplex-Labs/anything-llm/commit/658397c15b01da5c71052650cad6785291822ab4) render llms as options - [`99e2cf9`](https://github.com/Mintplex-Labs/anything-llm/commit/99e2cf937ee16b7006275fecfeb608cb55faf49b) add search functionality to llm preference & add survey step - [`65ac257`](https://github.com/Mintplex-Labs/anything-llm/commit/65ac257963d39d38aec2579c21a45e35b54044df) fix openai settings undefined & create custom logo onboarding page - [`d6e6cc5`](https://github.com/Mintplex-Labs/anything-llm/commit/d6e6cc5f30380a6ed5954c5a8192c837276cab2f) add user setup UI - [`d32a17e`](https://github.com/Mintplex-Labs/anything-llm/commit/d32a17e32363ac3330066b2769ddc63792caf700) add data handling & privacy onboarding screen - [`2df6a75`](https://github.com/Mintplex-Labs/anything-llm/commit/2df6a7530b7948ab76da559d018abcf2c4e1ec69) add create workspace onboarding screen - [`545542c`](https://github.com/Mintplex-Labs/anything-llm/commit/545542cd93e7a766b0f83da420247c3c28bb6961) fix survey width in onboarding ### 📊 Changes **41 files changed** (+2220 additions, -1788 deletions) <details> <summary>View changed files</summary> 📝 `frontend/src/App.jsx` (+1 -0) 📝 `frontend/src/components/EmbeddingSelection/AzureAiOptions/index.jsx` (+48 -46) 📝 `frontend/src/components/EmbeddingSelection/LocalAiOptions/index.jsx` (+59 -59) 📝 `frontend/src/components/EmbeddingSelection/OpenAiOptions/index.jsx` (+31 -29) 📝 `frontend/src/components/LLMSelection/AzureAiOptions/index.jsx` (+82 -77) 📝 `frontend/src/components/LLMSelection/OpenAiOptions/index.jsx` (+4 -4) 📝 `frontend/src/components/PrivateRoute/index.jsx` (+2 -2) ➕ `frontend/src/components/VectorDBSelection/ChromaDBOptions/index.jsx` (+51 -0) ➕ `frontend/src/components/VectorDBSelection/LanceDBOptions/index.jsx` (+9 -0) ➕ `frontend/src/components/VectorDBSelection/PineconeDBOptions/index.jsx` (+55 -0) ➕ `frontend/src/components/VectorDBSelection/QDrantDBOptions/index.jsx` (+38 -0) ➕ `frontend/src/components/VectorDBSelection/WeaviateDBOptions/index.jsx` (+38 -0) ➕ `frontend/src/media/illustrations/create-workspace.png` (+0 -0) ➖ `frontend/src/pages/OnboardingFlow/OnboardingModal/Steps/AppearanceSetup/index.jsx` (+0 -145) ➖ `frontend/src/pages/OnboardingFlow/OnboardingModal/Steps/CreateFirstWorkspace/index.jsx` (+0 -68) ➖ `frontend/src/pages/OnboardingFlow/OnboardingModal/Steps/EmbeddingSelection/index.jsx` (+0 -136) ➖ `frontend/src/pages/OnboardingFlow/OnboardingModal/Steps/LLMSelection/index.jsx` (+0 -183) ➖ `frontend/src/pages/OnboardingFlow/OnboardingModal/Steps/MultiUserSetup/index.jsx` (+0 -117) ➖ `frontend/src/pages/OnboardingFlow/OnboardingModal/Steps/PasswordProtection/index.jsx` (+0 -103) ➖ `frontend/src/pages/OnboardingFlow/OnboardingModal/Steps/UserModeSelection/index.jsx` (+0 -47) _...and 21 more files_ </details> ### 📄 Description resolves #498 --- <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:39 -05:00
yindo closed this issue 2026-02-22 18:33:39 -05:00
yindo changed title from [PR #502] Onboarding V2 to [PR #502] [MERGED] Onboarding V2 2026-06-05 15:13:06 -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#3377