Skip to content

Commit

Permalink
update: add new vertex preview models (#24)
Browse files Browse the repository at this point in the history
* update: add new vertex preview models

Signed-off-by: Milos Gajdos <[email protected]>

---------

Signed-off-by: Milos Gajdos <[email protected]>
  • Loading branch information
milosgajdos authored Apr 9, 2024
1 parent 4ffb3f8 commit 1b599ba
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion vertexai/vertexai.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,12 @@ const (
// https://cloud.google.com/vertex-ai/docs/generative-ai/learn/model-versioning#latest-version
EmbedGeckoV1 Model = "textembedding-gecko@001"
EmbedGeckoV2 Model = "textembedding-gecko@002"
EmbedGeckoV3 Model = "textembedding-gecko@003"
EmbedGeckoLatest Model = "textembedding-gecko@latest"
EmbedPreviewV4 Model = "text-embedding-preview-0409"
// EmbedMultiGecko is a multilanguage embeddings model
EmbedMultiGecko Model = "multimodalembedding@001"
EmbedMultiGecko Model = "multimodalembedding@001"
EmbedMultiPreviewV4 Model = "text-multilingual-embedding-preview-0409"
)

// String implements stringer.
Expand Down

0 comments on commit 1b599ba

Please sign in to comment.