mirror of
https://github.com/Mintplex-Labs/langchain-python.git
synced 2026-08-26 16:55:38 -04:00
28282ad099
Add support for cohere embeddings
7 lines
299 B
Python
7 lines
299 B
Python
"""Wrappers around embedding modules."""
|
|
from langchain.embeddings.cohere import CohereEmbeddings
|
|
from langchain.embeddings.huggingface import HuggingFaceEmbeddings
|
|
from langchain.embeddings.openai import OpenAIEmbeddings
|
|
|
|
__all__ = ["OpenAIEmbeddings", "HuggingFaceEmbeddings", "CohereEmbeddings"]
|