# JavelinAIGateway

> **Class** in `langchain_community`

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

Javelin AI Gateway LLMs.

To use, you should have the ``javelin_sdk`` python package installed.
For more information, see https://docs.getjavelin.io

## Signature

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

## Description

**Example:**

.. code-block:: python

from langchain_community.llms import JavelinAIGateway

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

## Extends

- `LLM`

## Constructors

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


## Properties

- `route`
- `client`
- `gateway_uri`
- `params`
- `javelin_api_key`

---

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