Skip to content

Commit 2820e23

Browse files
committed
clean code
1 parent 296b6a8 commit 2820e23

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

packages/plugin-node/src/services/transcription.ts

-3
Original file line numberDiff line numberDiff line change
@@ -202,9 +202,6 @@ export class TranscriptionService
202202
const { audioBuffer, resolve } = this.queue.shift()!;
203203
let result: string | null = null;
204204
if (this.deepgram) {
205-
console.log(
206-
"%%%%%%%&&&&%%%%%%%&&&&%%%%%%%&&&&%%%%%%%&&&&%%%%%%%&&&&%%%%%%%&&&&%%%%%%%&&&&%%%%%%%&&&&%%%%%%%&&&&%%%%%%%&&&&%%%%%%%&&&&"
207-
);
208205
result = await this.transcribeWithDeepgram(audioBuffer);
209206
} else if (this.openai) {
210207
result = await this.transcribeWithOpenAI(audioBuffer);

0 commit comments

Comments
 (0)