File tree Expand file tree Collapse file tree 2 files changed +12
-11
lines changed
docs/docs/integrations/providers Expand file tree Collapse file tree 2 files changed +12
-11
lines changed Original file line number Diff line number Diff line change 14
14
jobs :
15
15
codspeed :
16
16
name : Run benchmarks
17
+ if : (github.event_name == 'pull_request' && contains(github.event.pull_request.labels.*.name, 'run-benchmarks'))
17
18
runs-on : codspeed-macro
18
19
steps :
19
20
- uses : actions/checkout@v4
Original file line number Diff line number Diff line change 8
8
> learning models, on the ` Cloudflare ` network, from your code via REST API.
9
9
10
10
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
-
19
11
## ChatModels
20
12
21
13
See [ installation instructions and usage example] ( /docs/integrations/chat/cloudflare_workersai ) .
22
14
23
15
``` python
24
- from langchain_cloudflare.chat_models import ChatCloudflareWorkersAI
16
+ from langchain_cloudflare import ChatCloudflareWorkersAI
25
17
```
26
18
27
19
## VectorStore
28
20
29
21
See [ installation instructions and usage example] ( /docs/integrations/vectorstores/cloudflare_vectorize ) .
30
22
31
23
``` python
32
- from langchain_cloudflare.vectorstores import CloudflareVectorize
24
+ from langchain_cloudflare import CloudflareVectorize
33
25
```
34
26
35
27
## Embeddings
36
28
37
29
See [ installation instructions and usage example] ( /docs/integrations/text_embedding/cloudflare_workersai ) .
38
30
39
31
``` python
40
- from langchain_cloudflare.embeddings import CloudflareWorkersAIEmbeddings
32
+ from langchain_cloudflare import CloudflareWorkersAIEmbeddings
41
33
```
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
+ ```
You can’t perform that action at this time.
0 commit comments