Skip to content

Commit 04d6548

Browse files
thatsKevinJainkodster28aninibread
authored
[Workers AI] Models update (cloudflare#24953)
* [Workers AI] Models update * fix logic * fix deprecation logic #2 * Update changelog for EmbeddingGemma * Update src/content/changelog/workers-ai/2025-09-05-embeddinggemma.mdx Co-authored-by: Anni Wang <[email protected]> --------- Co-authored-by: kodster28 <[email protected]> Co-authored-by: Anni Wang <[email protected]>
1 parent b637d08 commit 04d6548

23 files changed

+102
-3
lines changed

src/components/models/ModelBadges.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const ModelBadges = ({ model }: { model: WorkersAIModelsSchema }) => {
3838
}
3939

4040
if (property_id === "planned_deprecation_date") {
41-
const timestamp = Math.floor(new Date(value as string).getTime() / 1000);
41+
const timestamp = Math.floor(new Date(value as string).getTime());
4242

4343
if (Date.now() > timestamp) {
4444
return { variant: "danger", text: "Deprecated" };

src/components/models/ModelFeatures.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,7 @@ const ModelFeatures = ({ model }: { model: WorkersAIModelsSchema }) => {
3131
<td>
3232
{Date.now() >
3333
Math.floor(
34-
new Date(properties.planned_deprecation_date).getTime() /
35-
1000,
34+
new Date(properties.planned_deprecation_date).getTime(),
3635
)
3736
? "Deprecated"
3837
: "Planned Deprecation"}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
title: Introducing EmbeddingGemma from Google on Workers AI
3+
description: Partnering with Google to bring to you EmbeddingGemma best-in-class embedding performance for RAG and semantic search
4+
date: 2025-09-05
5+
---
6+
7+
We're excited to be a launch partner alongside [Google](https://developers.googleblog.com/en/introducing-embeddinggemma/) to bring their newest embedding model, **EmbeddingGemma**, to Workers AI that delivers best-in-class performance for its size, enabling RAG and semantic search use cases.
8+
9+
[`@cf/google/embeddinggemma-300m`](/workers-ai/models/embeddinggemma-300m/) is a 300M parameter embedding model from Google, built from Gemma 3 and the same research used to create Gemini models. This multilingual model supports 100+ languages, making it ideal for RAG systems, semantic search, content classification, and clustering tasks.
10+
11+
**Using EmbeddingGemma in AutoRAG:**
12+
Now you can leverage EmbeddingGemma directly through AutoRAG for your RAG pipelines. EmbeddingGemma's multilingual capabilities make it perfect for global applications that need to understand and retrieve content across different languages with exceptional accuracy.
13+
14+
To use EmbeddingGemma for your AutoRAG projects:
15+
1. Go to **Create** in the [AutoRAG dashboard](https://dash.cloudflare.com/?to=/:account/ai/autorag)
16+
2. Follow the setup flow for your new RAG instance
17+
3. In the **Generate Index** step, open up **More embedding models** and select `@cf/google/embeddinggemma-300m` as your embedding model
18+
4. Complete the setup to create an AutoRAG
19+
20+
Try it out and let us know what you think!

src/content/release-notes/workers-ai.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@ link: "/workers-ai/changelog/"
33
productName: Workers AI
44
productLink: "/workers-ai/"
55
entries:
6+
- publish_date: "2025-09-05"
7+
title: Introducing EmbeddingGemma from Google
8+
description: |-
9+
- We’re excited to be a launch partner alongside Google to bring their newest embedding model to Workers AI. We're excited to introduce EmbeddingGemma delivers best-in-class performance for its size, enabling RAG and semantic search use cases. Take a look at [`@cf/google/embeddinggemma-300m`](/workers-ai/models/embeddinggemma-300m) for more details. Now available to use for embedding in AutoRAG too.
610
- publish_date: "2025-08-27"
711
title: Introducing Partner models to the Workers AI catalog
812
description: |-

src/content/workers-ai-models/deepseek-coder-6.7b-base-awq.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@
1919
"property_id": "context_window",
2020
"value": "4096"
2121
},
22+
{
23+
"property_id": "planned_deprecation_date",
24+
"value": "2025-10-01"
25+
},
2226
{
2327
"property_id": "terms",
2428
"value": "https://huggingface.co/TheBloke/deepseek-coder-6.7B-base-AWQ"

src/content/workers-ai-models/deepseek-coder-6.7b-instruct-awq.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,10 @@
1919
"property_id": "context_window",
2020
"value": "4096"
2121
},
22+
{
23+
"property_id": "planned_deprecation_date",
24+
"value": "2025-10-01"
25+
},
2226
{
2327
"property_id": "terms",
2428
"value": "https://huggingface.co/TheBloke/deepseek-coder-6.7B-instruct-AWQ"

src/content/workers-ai-models/deepseek-math-7b-instruct.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@
2323
"property_id": "info",
2424
"value": "https://huggingface.co/deepseek-ai/deepseek-math-7b-instruct"
2525
},
26+
{
27+
"property_id": "planned_deprecation_date",
28+
"value": "2025-10-01"
29+
},
2630
{
2731
"property_id": "terms",
2832
"value": "https://github.com/deepseek-ai/DeepSeek-Math/blob/main/LICENSE-MODEL"

src/content/workers-ai-models/discolm-german-7b-v1-awq.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@
2222
{
2323
"property_id": "info",
2424
"value": "https://huggingface.co/TheBloke/DiscoLM_German_7b_v1-AWQ"
25+
},
26+
{
27+
"property_id": "planned_deprecation_date",
28+
"value": "2025-10-01"
2529
}
2630
],
2731
"schema": {

src/content/workers-ai-models/falcon-7b-instruct.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@
2222
{
2323
"property_id": "info",
2424
"value": "https://huggingface.co/tiiuae/falcon-7b-instruct"
25+
},
26+
{
27+
"property_id": "planned_deprecation_date",
28+
"value": "2025-10-01"
2529
}
2630
],
2731
"schema": {

src/content/workers-ai-models/llama-2-13b-chat-awq.json

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@
2222
{
2323
"property_id": "info",
2424
"value": "https://huggingface.co/TheBloke/Llama-2-13B-chat-AWQ"
25+
},
26+
{
27+
"property_id": "planned_deprecation_date",
28+
"value": "2025-10-01"
2529
}
2630
],
2731
"schema": {

0 commit comments

Comments
 (0)