Skip to content

Commit f8874ec

Browse files
committed
Boops out the prefix for docs
1 parent 04501c8 commit f8874ec

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/content/docs/workers-ai/tutorials/explore-workers-ai-models-using-a-jupyter-notebook.mdx

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Or you can run this on [Google Colab](https://colab.research.google.com/github/c
3030

3131
## Explore the Workers AI API using Python
3232

33-
[Workers AI](https://developers.cloudflare.com/workers-ai) allows you to run machine learning models, on the Cloudflare network, from your own code – whether that be from Workers, Pages, or anywhere via REST API.
33+
[Workers AI](/workers-ai) allows you to run machine learning models, on the Cloudflare network, from your own code – whether that be from Workers, Pages, or anywhere via REST API.
3434

3535
This notebook will explore the Workers AI REST API using the [official Python SDK](https://github.com/cloudflare/cloudflare-python).
3636

@@ -90,7 +90,7 @@ client = Cloudflare(api_token=api_token)
9090

9191
### Text Generation
9292

93-
Explore all [Text Generation Models](https://developers.cloudflare.com/workers-ai/models#text-generation)
93+
Explore all [Text Generation Models](/workers-ai/models#text-generation)
9494

9595

9696
```python
@@ -142,7 +142,7 @@ By using these keyboard shortcuts, you'll be able to work more efficiently and q
142142

143143
### Text to Image
144144

145-
Explore all [Text to Image models](https://developers.cloudflare.com/workers-ai/models#text-to-image)
145+
Explore all [Text to Image models](/workers-ai/models#text-to-image)
146146

147147

148148
```python
@@ -162,7 +162,7 @@ display(Image(data.read()))
162162

163163
### Image to Text
164164

165-
Explore all [Image to Text](https://developers.cloudflare.com/workers-ai/models/#image-to-text) models
165+
Explore all [Image to Text](/workers-ai/models/#image-to-text) models
166166

167167

168168
```python
@@ -194,7 +194,7 @@ print(data["description"])
194194

195195
### Automatic Speech Recognition
196196

197-
Explore all [Speech Recognition models](https://developers.cloudflare.com/workers-ai/models#speech-recognition)
197+
Explore all [Speech Recognition models](/workers-ai/models#speech-recognition)
198198

199199

200200
```python
@@ -323,7 +323,7 @@ response
323323

324324
### Translations
325325

326-
Explore all [Translation models](https://developers.cloudflare.com/workers-ai/models#translation)
326+
Explore all [Translation models](/workers-ai/models#translation)
327327

328328

329329
```python
@@ -344,7 +344,7 @@ print(result["translated_text"])
344344

345345
### Text Classification
346346

347-
Explore all [Text Classification models](https://developers.cloudflare.com/workers-ai/models#text-classification)
347+
Explore all [Text Classification models](/workers-ai/models#text-classification)
348348

349349

350350
```python
@@ -367,7 +367,7 @@ result
367367

368368
### Image Classification
369369

370-
Explore all [Image Classification models](https://developers.cloudflare.com/workers-ai/models#image-classification/)
370+
Explore all [Image Classification models](/workers-ai/models#image-classification/)
371371

372372

373373
```python
@@ -402,7 +402,7 @@ response
402402

403403
## Summarization
404404

405-
Explore all [Summarization](https://developers.cloudflare.com/workers-ai/models#summarization) based models
405+
Explore all [Summarization](/workers-ai/models#summarization) based models
406406

407407

408408
```python

0 commit comments

Comments
 (0)