Upgrade cohere embedding model to v3 (#13219)

Just updates API docs, doesn't change default param from 2.0 (could be
breaking change)
This commit is contained in:
Erick Friis 2023-11-10 16:25:58 -08:00 committed by GitHub
parent 180657ca7a
commit 9c7afa8adb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -20,7 +20,7 @@ class ClarifaiEmbeddings(BaseModel, Embeddings):
from langchain.embeddings import ClarifaiEmbeddings
clarifai = ClarifaiEmbeddings(
model="embed-english-light-v2.0", clarifai_api_key="my-api-key"
model="embed-english-light-v3.0", clarifai_api_key="my-api-key"
)
"""

View File

@ -17,7 +17,7 @@ class CohereEmbeddings(BaseModel, Embeddings):
from langchain.embeddings import CohereEmbeddings
cohere = CohereEmbeddings(
model="embed-english-light-v2.0", cohere_api_key="my-api-key"
model="embed-english-light-v3.0", cohere_api_key="my-api-key"
)
"""