From 326ef5239921456736827dc0015711580489bd73 Mon Sep 17 00:00:00 2001 From: Esteban Cairol Date: Sat, 30 May 2026 14:22:11 -0600 Subject: [PATCH] fix: update model labels for consistency in class-wpvdb-models.php 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 --- includes/class-wpvdb-models.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/class-wpvdb-models.php b/includes/class-wpvdb-models.php index e8c4e12..d8d2fa3 100644 --- a/includes/class-wpvdb-models.php +++ b/includes/class-wpvdb-models.php @@ -24,7 +24,7 @@ public static function get_available_models() { $default_models = array( 'openai' => array( 'text-embedding-3-small' => array( - 'label' => 'Ada 3 Small (1536 dimensions)', + 'label' => 'text-embedding-3-small (1536 dimensions)', 'dimensions' => 1536, 'default' => true, 'selectable' => true, @@ -34,7 +34,7 @@ public static function get_available_models() { 'supports_dimensions' => true, ), 'text-embedding-3-large' => array( - 'label' => 'Ada 3 Large (3072 dimensions)', + 'label' => 'text-embedding-3-large (3072 dimensions)', 'dimensions' => 3072, 'selectable' => true, 'endpoint' => 'embeddings',