Skip to content

Commit 2bef560

Browse files
mchencocraigsdennis
authored andcommitted
deepgram models - edited pricing (#24748)
* edited pricing * Adds note per TODO --------- Co-authored-by: Craig Dennis <[email protected]>
1 parent e17f87b commit 2bef560

File tree

2 files changed

+26
-4
lines changed

2 files changed

+26
-4
lines changed

src/content/docs/workers-ai/platform/pricing.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,8 +81,9 @@ The Price in Tokens column is equivalent to the Price in Neurons column - the di
8181
| @cf/openai/whisper | $0.0005 per audio minute | 41.14 neurons per audio minute |
8282
| @cf/openai/whisper-large-v3-turbo | $0.0005 per audio minute | 46.63 neurons per audio minute |
8383
| @cf/myshell-ai/melotts | $0.0002 per audio minute | 18.63 neurons per audio minute |
84-
| @cf/deepgram/aura-1 | $0.015 per 1k characters input <br/> | 1.36 neurons per 1k characters input <br/> |
85-
| @cf/deepgram/nova-3 | $0.0052 per audio minute output <br/> | 7.88 neurons per audio minute output <br/> |
84+
| @cf/deepgram/aura-1 | $0.015 per 1k characters input <br/> | 1,363.64 neurons per 1k characters input <br/> |
85+
| @cf/deepgram/nova-3 | $0.0052 per audio minute output <br/> | 472.73 neurons per audio minute output <br/> |
86+
| @cf/deepgram/nova-3 (WebSocket)| $0.0092 per audio minute output <br/> | 836.36 neurons per audio minute output <br/> |
8687
| @cf/pipecat-ai/smart-turn-v2 | $0.00033795 per audio minute input <br/> | 0.51 neurons per audio minute output <br/> |
8788

8889
## Other model pricing

src/pages/workers-ai/models/[name].astro

Lines changed: 23 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,11 +125,10 @@ const isBeta = model.properties.find(
125125
let hasPlayground = model.task.name === "Text Generation";
126126
127127
// temporary workaround for playground limitations
128-
if (model.name.includes("@cf/openai/gpt-oss") ) {
128+
if (model.name.includes("@cf/openai/gpt-oss")) {
129129
hasPlayground = false;
130130
}
131131
132-
133132
const author = (authorData as any)[model.name.split("/")[1]];
134133
135134
// Strong type coercion needed due to Starlight's component override for hideTitle
@@ -213,6 +212,28 @@ const starlightPageProps = {
213212
}
214213

215214
<ModelFeatures model={model} />
215+
{
216+
model.name === "@cf/deepgram/nova-3" && (
217+
<Aside>
218+
<p>
219+
The <a href="/workers-ai/platform/pricing">pricing of this model</a>{" "}
220+
is different based on transport.
221+
</p>
222+
<p>
223+
<ul>
224+
<li>
225+
WebSocket: $0.0092 per audio minute output (836.36 neurons per
226+
audio minute output)
227+
</li>
228+
<li>
229+
Regular HTTP: $0.0052 per audio minute output (472.73 neurons per
230+
audio minute output)
231+
</li>
232+
</ul>
233+
</p>
234+
</Aside>
235+
)
236+
}
216237

217238
{
218239
hasPlayground && (

0 commit comments

Comments
 (0)