Skip to content

Commit 38a9e3d

Browse files
Merge branch 'master' into cc/retry_params
2 parents 2e8a992 + c6172d1 commit 38a9e3d

File tree

2 files changed

+12
-11
lines changed

2 files changed

+12
-11
lines changed

.github/workflows/codspeed.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ on:
1414
jobs:
1515
codspeed:
1616
name: Run benchmarks
17+
if: (github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'run-benchmarks'))
1718
runs-on: codspeed-macro
1819
steps:
1920
- uses: actions/checkout@v4

docs/docs/integrations/providers/cloudflare.mdx

Lines changed: 11 additions & 11 deletions
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)