Skip to content

Commit 91c65e7

Browse files
committed
fix: use gpt-4o-transcribe model instead of whisper-1
1 parent f82b49f commit 91c65e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/node/services/ipcMain.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -661,7 +661,7 @@ export class IpcMain {
661661
// Call Whisper API
662662
const transcription = await client.audio.transcriptions.create({
663663
file: audioFile,
664-
model: "whisper-1",
664+
model: "gpt-4o-transcribe",
665665
});
666666

667667
return Ok(transcription.text);

0 commit comments

Comments
 (0)