MlflowEmbeddings(
self,
**kwargs: Any = {},
)Embedding LLMs in MLflow.
To use, you should have the mlflow[genai] python package installed.
For more information, see https://mlflow.org/docs/latest/llms/deployments.
Example:
.. code-block:: python
from langchain_community.embeddings import MlflowEmbeddings
embeddings = MlflowEmbeddings( target_uri="http://localhost:5000", endpoint="embeddings", )