mirror of
https://github.com/hwchase17/langchain.git
synced 2026-01-29 21:30:18 +00:00
**Description:** Introducing an ability to work with the [YandexGPT](https://cloud.yandex.com/en/services/yandexgpt) language model.
34 lines
529 B
Plaintext
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
|
|
```
|