[PR #996] [MERGED] [FEAT] Implement model provider UI updates #3548

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

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/996
Author: @shatfield4
Created: 3/29/2024
Status: Merged
Merged: 4/2/2024
Merged by: @timothycarambat

Base: masterHead: llm-provider-search-ui-implementation


📝 Commits (10+)

  • 70fdf27 implement new LLM preference UI
  • e335439 implement new vector db preferences UI to match LLM preferences
  • 4aa0642 implement new embedding preferences UI to match LLM preferences
  • e241695 normalize placeholder text for search input
  • 0fa039d implement new transcription preferences UI to match LLM preferences
  • a7afbd2 remove uneeded css
  • 722cefa Merge branch 'master' into llm-provider-search-ui-implementation
  • 39c08c1 implement new UI for llm preference onboarding
  • a8017bb implement new UI for embedder preference onboarding
  • a2f38dc implement new UI for vector db preference onboarding

📊 Changes

10 files changed (+508 additions, -252 deletions)

View changed files

📝 frontend/src/components/EmbeddingSelection/EmbedderItem/index.jsx (+4 -4)
📝 frontend/src/components/EmbeddingSelection/NativeEmbeddingOptions/index.jsx (+1 -1)
📝 frontend/src/components/LLMSelection/LLMItem/index.jsx (+4 -4)
📝 frontend/src/components/VectorDBSelection/LanceDBOptions/index.jsx (+1 -1)
📝 frontend/src/components/VectorDBSelection/VectorDBItem/index.jsx (+3 -3)
📝 frontend/src/index.css (+29 -0)
📝 frontend/src/pages/GeneralSettings/EmbeddingPreference/index.jsx (+106 -48)
📝 frontend/src/pages/GeneralSettings/LLMPreference/index.jsx (+105 -47)
📝 frontend/src/pages/GeneralSettings/TranscriptionPreference/index.jsx (+113 -56)
📝 frontend/src/pages/GeneralSettings/VectorDatabase/index.jsx (+142 -88)

📄 Description

Pull Request Type

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

Relevant Issues

resolves #995

What is in this change?

Describe the changes in this PR that are impactful to the repo.

  • Implement the new UI for LLM provider preferences, vector DB provider preferences, transcription model preferences, and embedding model preferences picker UI per internal designs.

Additional Information

Add any other context about the Pull Request here that was not captured above.

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/996 **Author:** [@shatfield4](https://github.com/shatfield4) **Created:** 3/29/2024 **Status:** ✅ Merged **Merged:** 4/2/2024 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `master` ← **Head:** `llm-provider-search-ui-implementation` --- ### 📝 Commits (10+) - [`70fdf27`](https://github.com/Mintplex-Labs/anything-llm/commit/70fdf2707b88db12aaad7bee4ca9e2764038848b) implement new LLM preference UI - [`e335439`](https://github.com/Mintplex-Labs/anything-llm/commit/e335439b0b4f994fc21c0dbda491090eee2bac5e) implement new vector db preferences UI to match LLM preferences - [`4aa0642`](https://github.com/Mintplex-Labs/anything-llm/commit/4aa06422fa64a2e4eb3e0fb2503bf2271c4f08d3) implement new embedding preferences UI to match LLM preferences - [`e241695`](https://github.com/Mintplex-Labs/anything-llm/commit/e2416950d3fec1a35b7fefb78e29142cfa841e38) normalize placeholder text for search input - [`0fa039d`](https://github.com/Mintplex-Labs/anything-llm/commit/0fa039dc9d799ee1de5f1c1167fde4097dcc2578) implement new transcription preferences UI to match LLM preferences - [`a7afbd2`](https://github.com/Mintplex-Labs/anything-llm/commit/a7afbd25df4495344edc8a1d7113d7f978c8948f) remove uneeded css - [`722cefa`](https://github.com/Mintplex-Labs/anything-llm/commit/722cefa1318dd896c79a2e564e2f5a3885a11e28) Merge branch 'master' into llm-provider-search-ui-implementation - [`39c08c1`](https://github.com/Mintplex-Labs/anything-llm/commit/39c08c1bb7148b26ed36b66d7d8ececdea71246a) implement new UI for llm preference onboarding - [`a8017bb`](https://github.com/Mintplex-Labs/anything-llm/commit/a8017bb6a3d3587414ea457d3732225b39ffeb1f) implement new UI for embedder preference onboarding - [`a2f38dc`](https://github.com/Mintplex-Labs/anything-llm/commit/a2f38dcd701ce984a7f62122da5854e8f6308d8b) implement new UI for vector db preference onboarding ### 📊 Changes **10 files changed** (+508 additions, -252 deletions) <details> <summary>View changed files</summary> 📝 `frontend/src/components/EmbeddingSelection/EmbedderItem/index.jsx` (+4 -4) 📝 `frontend/src/components/EmbeddingSelection/NativeEmbeddingOptions/index.jsx` (+1 -1) 📝 `frontend/src/components/LLMSelection/LLMItem/index.jsx` (+4 -4) 📝 `frontend/src/components/VectorDBSelection/LanceDBOptions/index.jsx` (+1 -1) 📝 `frontend/src/components/VectorDBSelection/VectorDBItem/index.jsx` (+3 -3) 📝 `frontend/src/index.css` (+29 -0) 📝 `frontend/src/pages/GeneralSettings/EmbeddingPreference/index.jsx` (+106 -48) 📝 `frontend/src/pages/GeneralSettings/LLMPreference/index.jsx` (+105 -47) 📝 `frontend/src/pages/GeneralSettings/TranscriptionPreference/index.jsx` (+113 -56) 📝 `frontend/src/pages/GeneralSettings/VectorDatabase/index.jsx` (+142 -88) </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 #995 ### What is in this change? Describe the changes in this PR that are impactful to the repo. - Implement the new UI for LLM provider preferences, vector DB provider preferences, transcription model preferences, and embedding model preferences picker UI per internal designs. ### 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:34:00 -05:00
yindo closed this issue 2026-02-22 18:34:01 -05:00
yindo changed title from [PR #996] [FEAT] Implement model provider UI updates to [PR #996] [MERGED] [FEAT] Implement model provider UI updates 2026-06-05 15:14: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#3548