We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63e8521 commit 6ca92f3Copy full SHA for 6ca92f3
apps/api/src/deepgram.ts
@@ -365,8 +365,9 @@ export const buildDeepgramUrl = (incomingUrl: URL) => {
365
const target = new URL("wss://api.deepgram.com/v1/listen");
366
367
incomingUrl.searchParams.forEach((value, key) => {
368
- target.searchParams.append(key, value);
+ target.searchParams.set(key, value);
369
});
370
+ target.searchParams.set("model", "nova-3-general");
371
target.searchParams.set("mip_opt_out", "false");
372
373
return target;
0 commit comments