fix: update labels for OpenAI Embedding Model dropdown#18
Open
ecairol wants to merge 1 commit into
Open
Conversation
text-embedding-ada-002 is the previous-generation embedding model (the "Ada" one), text-embedding-3-[s] is the current generation and what's being used in the input "value" attr
Contributor
There was a problem hiding this comment.
Pull request overview
This PR updates OpenAI embedding model dropdown labels to accurately reflect the actual model IDs used by WPVDB, reducing confusion with the legacy Ada model naming.
Changes:
- Renames the
text-embedding-3-smalllabel from “Ada 3 Small” to the actual model name. - Renames the
text-embedding-3-largelabel from “Ada 3 Large” to the actual model name. - Leaves model values and behavior unchanged.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
text-embedding-ada-002is the previous-generation embedding model ("Ada"), whiletext-embedding-3-<size>is the current generation and what's being used in the input "value" attrThis PR updates the label to avoid any confusion and to represent an accurate description of the chosen OpenAI model.
The attr
valueremains the same.