File tree Expand file tree Collapse file tree 2 files changed +26
-4
lines changed
content/docs/workers-ai/platform Expand file tree Collapse file tree 2 files changed +26
-4
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change @@ -125,11 +125,10 @@ const isBeta = model.properties.find(
125125let 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-
133132const 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 && (
You can’t perform that action at this time.
0 commit comments