Skip to content

Commit bf5acf6

Browse files
authored
fix: adapt whisper to bindings updates (#702)
Signed-off-by: mudler <[email protected]>
1 parent 0780be0 commit bf5acf6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/whisper/whisper.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ func Transcript(model whisper.Model, audiopath, language string, threads uint) (
7373
context.SetLanguage("auto")
7474
}
7575

76-
if err := context.Process(data, nil); err != nil {
76+
if err := context.Process(data, nil, nil); err != nil {
7777
return "", err
7878
}
7979

0 commit comments

Comments
 (0)