mirror of
https://github.com/logancyang/obsidian-copilot.git
synced 2026-07-22 07:50:24 +00:00
Add copilot-plus-large embedding model (#1107)
This commit is contained in:
parent
012289518b
commit
2fbd2a4489
1 changed files with 9 additions and 0 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Loading…
Reference in a new issue