Skip to content

Commit f70df01

Browse files
authored
docs: Update ordering of cloudflare integration examples in providers page (#30768)
Updated the ordering of cloudflare integrations and updated import examples. Follow up from #30749
1 parent 8f8fea2 commit f70df01

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

docs/docs/integrations/providers/cloudflare.mdx

+11-11
Original file line numberDiff line numberDiff line change
@@ -8,34 +8,34 @@
88
> learning models, on the `Cloudflare` network, from your code via REST API.
99
1010

11-
## LLMs
12-
13-
See [installation instructions and usage example](/docs/integrations/llms/cloudflare_workersai).
14-
15-
```python
16-
from langchain_community.llms.cloudflare_workersai import CloudflareWorkersAI
17-
```
18-
1911
## ChatModels
2012

2113
See [installation instructions and usage example](/docs/integrations/chat/cloudflare_workersai).
2214

2315
```python
24-
from langchain_cloudflare.chat_models import ChatCloudflareWorkersAI
16+
from langchain_cloudflare import ChatCloudflareWorkersAI
2517
```
2618

2719
## VectorStore
2820

2921
See [installation instructions and usage example](/docs/integrations/vectorstores/cloudflare_vectorize).
3022

3123
```python
32-
from langchain_cloudflare.vectorstores import CloudflareVectorize
24+
from langchain_cloudflare import CloudflareVectorize
3325
```
3426

3527
## Embeddings
3628

3729
See [installation instructions and usage example](/docs/integrations/text_embedding/cloudflare_workersai).
3830

3931
```python
40-
from langchain_cloudflare.embeddings import CloudflareWorkersAIEmbeddings
32+
from langchain_cloudflare import CloudflareWorkersAIEmbeddings
4133
```
34+
35+
## LLMs
36+
37+
See [installation instructions and usage example](/docs/integrations/llms/cloudflare_workersai).
38+
39+
```python
40+
from langchain_community.llms.cloudflare_workersai import CloudflareWorkersAI
41+
```

0 commit comments

Comments
 (0)