ChatMlflow(
self,
**kwargs: Any = {},
)MLflow chat models API.
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.chat_models import ChatMlflow
chat = ChatMlflow( target_uri="http://localhost:5000", endpoint="chat", temperature=0.1, )