# Mlflow

> **Class** in `langchain_community`

📖 [View in docs](https://reference.langchain.com/python/langchain-community/llms/mlflow/Mlflow)

MLflow LLM service.

To use, you should have the `mlflow[genai]` python package installed.
For more information, see https://mlflow.org/docs/latest/llms/deployments.

## Signature

```python
Mlflow(
    self,
    **kwargs: Any = {},
)
```

## Description

**Example:**

.. code-block:: python

from langchain_community.llms import Mlflow

completions = Mlflow(
    target_uri="http://localhost:5000",
    endpoint="test",
    temperature=0.1,
)

## Extends

- `LLM`

## Constructors

```python
__init__(
    self,
    **kwargs: Any = {},
)
```


## Properties

- `endpoint`
- `target_uri`
- `temperature`
- `n`
- `stop`
- `max_tokens`
- `extra_params`

---

[View source on GitHub](https://github.com/langchain-ai/langchain-community/blob/a6a6079511ac8a5c1293337f88096b8641562e77/libs/community/langchain_community/llms/mlflow.py#L11)