mirror of
https://github.com/hwchase17/langchain
synced 2024-11-18 09:25:54 +00:00
docs: providers alibaba
update (#20560)
Added missed integrations to the Alibaba Cloud provider page
This commit is contained in:
parent
27a4682415
commit
0b99e9201d
@ -10,6 +10,24 @@
|
||||
> Alibaba's own e-commerce ecosystem.
|
||||
|
||||
|
||||
## LLMs
|
||||
|
||||
### Alibaba Cloud PAI EAS
|
||||
|
||||
See [installation instructions and a usage example](/docs/integrations/llms/alibabacloud_pai_eas_endpoint).
|
||||
|
||||
```python
|
||||
from langchain_community.llms.pai_eas_endpoint import PaiEasEndpoint
|
||||
```
|
||||
|
||||
### Tongyi Qwen
|
||||
|
||||
See [installation instructions and a usage example](/docs/integrations/llms/tongyi).
|
||||
|
||||
```python
|
||||
from langchain_community.llms import Tongyi
|
||||
```
|
||||
|
||||
## Chat Models
|
||||
|
||||
### Alibaba Cloud PAI EAS
|
||||
@ -20,6 +38,24 @@ See [installation instructions and a usage example](/docs/integrations/chat/alib
|
||||
from langchain_community.chat_models import PaiEasChatEndpoint
|
||||
```
|
||||
|
||||
### Tongyi Qwen Chat
|
||||
|
||||
See [installation instructions and a usage example](/docs/integrations/chat/tongyi).
|
||||
|
||||
```python
|
||||
from langchain_community.chat_models.tongyi import ChatTongyi
|
||||
```
|
||||
|
||||
## Document Loaders
|
||||
|
||||
### Alibaba Cloud MaxCompute
|
||||
|
||||
See [installation instructions and a usage example](/docs/integrations/document_loaders/alibaba_cloud_maxcompute).
|
||||
|
||||
```python
|
||||
from langchain_community.document_loaders import MaxComputeLoader
|
||||
```
|
||||
|
||||
## Vector stores
|
||||
|
||||
### Alibaba Cloud OpenSearch
|
||||
@ -38,12 +74,18 @@ See [installation instructions and a usage example](/docs/integrations/vectorsto
|
||||
from langchain_community.vectorstores import Tair
|
||||
```
|
||||
|
||||
## Document Loaders
|
||||
### AnalyticDB
|
||||
|
||||
### Alibaba Cloud MaxCompute
|
||||
|
||||
See [installation instructions and a usage example](/docs/integrations/document_loaders/alibaba_cloud_maxcompute).
|
||||
See [installation instructions and a usage example](/docs/integrations/vectorstores/analyticdb).
|
||||
|
||||
```python
|
||||
from langchain_community.document_loaders import MaxComputeLoader
|
||||
from langchain_community.vectorstores import AnalyticDB
|
||||
```
|
||||
|
||||
### Hologres
|
||||
|
||||
See [installation instructions and a usage example](/docs/integrations/vectorstores/hologres).
|
||||
|
||||
```python
|
||||
from langchain_community.vectorstores import Hologres
|
||||
```
|
||||
|
Loading…
Reference in New Issue
Block a user