From 2fbd2a44891098c3dd3c53a0f1066bf3f193d416 Mon Sep 17 00:00:00 2001 From: Logan Yang Date: Sat, 25 Jan 2025 20:26:46 -0800 Subject: [PATCH] Add copilot-plus-large embedding model (#1107) --- src/constants.ts | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/constants.ts b/src/constants.ts index 86681fc3..6552d571 100644 --- a/src/constants.ts +++ b/src/constants.ts @@ -149,6 +149,7 @@ export enum EmbeddingModels { COHEREAI_EMBED_MULTILINGUAL_LIGHT_V3_0 = "embed-multilingual-light-v3.0", GOOGLE_ENG = "text-embedding-004", COPILOT_PLUS_SMALL = "copilot-plus-small", + COPILOT_PLUS_LARGE = "copilot-plus-large", COPILOT_PLUS_MULTILINGUAL = "copilot-plus-multilingual", } @@ -161,6 +162,14 @@ export const BUILTIN_EMBEDDING_MODELS: CustomModel[] = [ isEmbeddingModel: true, core: true, }, + { + name: EmbeddingModels.COPILOT_PLUS_LARGE, + provider: EmbeddingModelProviders.COPILOT_PLUS, + enabled: true, + isBuiltIn: true, + isEmbeddingModel: true, + core: true, + }, { name: EmbeddingModels.COPILOT_PLUS_MULTILINGUAL, provider: EmbeddingModelProviders.COPILOT_PLUS_JINA,