diff --git a/src/content/docs/workers-ai/platform/pricing.mdx b/src/content/docs/workers-ai/platform/pricing.mdx index 03d2e7d48e214cf..404ca57fc0e9738 100644 --- a/src/content/docs/workers-ai/platform/pricing.mdx +++ b/src/content/docs/workers-ai/platform/pricing.mdx @@ -81,8 +81,9 @@ The Price in Tokens column is equivalent to the Price in Neurons column - the di | @cf/openai/whisper | $0.0005 per audio minute | 41.14 neurons per audio minute | | @cf/openai/whisper-large-v3-turbo | $0.0005 per audio minute | 46.63 neurons per audio minute | | @cf/myshell-ai/melotts | $0.0002 per audio minute | 18.63 neurons per audio minute | -| @cf/deepgram/aura-1 | $0.015 per 1k characters input
| 1.36 neurons per 1k characters input
| -| @cf/deepgram/nova-3 | $0.0052 per audio minute output
| 7.88 neurons per audio minute output
| +| @cf/deepgram/aura-1 | $0.015 per 1k characters input
| 1,363.64 neurons per 1k characters input
| +| @cf/deepgram/nova-3 | $0.0052 per audio minute output
| 472.73 neurons per audio minute output
| +| @cf/deepgram/nova-3 (WebSocket)| $0.0092 per audio minute output
| 836.36 neurons per audio minute output
| | @cf/pipecat-ai/smart-turn-v2 | $0.00033795 per audio minute input
| 0.51 neurons per audio minute output
| ## Other model pricing diff --git a/src/pages/workers-ai/models/[name].astro b/src/pages/workers-ai/models/[name].astro index b798aad5519aca7..fa249011d3a0353 100644 --- a/src/pages/workers-ai/models/[name].astro +++ b/src/pages/workers-ai/models/[name].astro @@ -125,11 +125,10 @@ const isBeta = model.properties.find( let hasPlayground = model.task.name === "Text Generation"; // temporary workaround for playground limitations -if (model.name.includes("@cf/openai/gpt-oss") ) { +if (model.name.includes("@cf/openai/gpt-oss")) { hasPlayground = false; } - const author = (authorData as any)[model.name.split("/")[1]]; // Strong type coercion needed due to Starlight's component override for hideTitle @@ -213,6 +212,28 @@ const starlightPageProps = { } + { + model.name === "@cf/deepgram/nova-3" && ( + + ) + } { hasPlayground && (