Skip to content

Commit

Permalink
docs: providers alibaba update (langchain-ai#20560)
Browse files Browse the repository at this point in the history
Added missed integrations to the Alibaba Cloud provider page
  • Loading branch information
leo-gan authored Apr 19, 2024
1 parent 27a4682 commit 0b99e92
Showing 1 changed file with 46 additions and 4 deletions.
50 changes: 46 additions & 4 deletions docs/docs/integrations/providers/alibaba_cloud.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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/vectorstores/analyticdb).

See [installation instructions and a usage example](/docs/integrations/document_loaders/alibaba_cloud_maxcompute).
```python
from langchain_community.vectorstores import AnalyticDB
```

### Hologres

See [installation instructions and a usage example](/docs/integrations/vectorstores/hologres).

```python
from langchain_community.document_loaders import MaxComputeLoader
from langchain_community.vectorstores import Hologres
```

0 comments on commit 0b99e92

Please sign in to comment.