We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 296b6a8 commit 2820e23Copy full SHA for 2820e23
packages/plugin-node/src/services/transcription.ts
@@ -202,9 +202,6 @@ export class TranscriptionService
202
const { audioBuffer, resolve } = this.queue.shift()!;
203
let result: string | null = null;
204
if (this.deepgram) {
205
- console.log(
206
- "%%%%%%%&&&&%%%%%%%&&&&%%%%%%%&&&&%%%%%%%&&&&%%%%%%%&&&&%%%%%%%&&&&%%%%%%%&&&&%%%%%%%&&&&%%%%%%%&&&&%%%%%%%&&&&%%%%%%%&&&&"
207
- );
208
result = await this.transcribeWithDeepgram(audioBuffer);
209
} else if (this.openai) {
210
result = await this.transcribeWithOpenAI(audioBuffer);
0 commit comments