langchain/docs/docs/integrations/providers/baichuan.mdx
Leonid Ganeline fad308a764
docs: providers update 2 (#18407)
Formatted pages into a consistent form. Added descriptions and links
when needed.
2024-03-11 18:35:37 -07:00

34 lines
733 B
Plaintext

# Baichuan
>[Baichuan Inc.](https://www.baichuan-ai.com/) is a Chinese startup in the era of AGI,
> dedicated to addressing fundamental human needs: Efficiency, Health, and Happiness.
## Installation and Setup
Register and get an API key [here](https://platform.baichuan-ai.com/).
## LLMs
See a [usage example](/docs/integrations/llms/baichuan).
```python
from langchain_community.llms import BaichuanLLM
```
## Chat models
See a [usage example](/docs/integrations/chat/baichuan).
```python
from langchain_community.chat_models import ChatBaichuan
```
## Embedding models
See a [usage example](/docs/integrations/text_embedding/baichuan).
```python
from langchain_community.embeddings import BaichuanTextEmbeddings
```