# MlflowAIGateway

> **Class** in `langchain_community`

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

MLflow AI Gateway LLMs.

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

## Signature

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

## Description

**Example:**

.. code-block:: python

from langchain_community.llms import MlflowAIGateway

completions = MlflowAIGateway(
    gateway_uri="<your-mlflow-ai-gateway-uri>",
    route="<your-mlflow-ai-gateway-completions-route>",
    params={
        "temperature": 0.1
    }
)

## Extends

- `LLM`

## Constructors

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


## Properties

- `route`
- `gateway_uri`
- `params`

---

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