Files
langchain/docs/docs/integrations/providers/yandex.mdx
Dmitry Tyumentsev e8c1850369 Add YandexGPT LLM and Chat model (#11703)
**Description:** Introducing an ability to work with the
[YandexGPT](https://cloud.yandex.com/en/services/yandexgpt) language
model.
2023-10-16 20:30:07 -07:00

34 lines
529 B
Plaintext

# Yandex
All functionality related to Yandex Cloud
>[Yandex Cloud](https://cloud.yandex.com/en/) is a public cloud platform.
## Installation and Setup
Yandex Cloud SDK can be installed via pip from PyPI:
```bash
pip install yandexcloud
```
## LLMs
### YandexGPT
See a [usage example](/docs/integrations/llms/yandex).
```python
from langchain.llms import YandexGPT
```
## Chat models
### YandexGPT
See a [usage example](/docs/integrations/chat/yandex).
```python
from langchain.chat_models import ChatYandexGPT
```