OVHCloudEmbeddings#
- class langchain_community.embeddings.ovhcloud.OVHCloudEmbeddings[source]#
Bases:
BaseModel
,Embeddings
OVHcloud AI Endpoints Embeddings.
Create a new model by parsing and validating input data from keyword arguments.
Raises ValidationError if the input data cannot be parsed to form a valid model.
- param access_token: str = ''#
OVHcloud AI Endpoints model name for embeddings generation
- param model_name: str = ''#
OVHcloud AI Endpoints region
- param region: str = 'kepler'#
- async aembed_documents(texts: List[str]) List[List[float]] #
Asynchronous Embed search docs.
- Parameters:
texts (List[str]) – List of text to embed.
- Returns:
List of embeddings.
- Return type:
List[List[float]]
- async aembed_query(text: str) List[float] #
Asynchronous Embed query text.
- Parameters:
text (str) – Text to embed.
- Returns:
Embedding.
- Return type:
List[float]
Examples using OVHCloudEmbeddings