mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2024-12-19 04:37:51 +00:00
f078a6f20e
* Updated bindings so they can be used in third pary packages. * Updated makefiles to set FMA flag on optionally, for xeon E5 on Darwin * Added test script * Changes for examples * Reverted * Made the NewContext method private
29 lines
799 B
Go
29 lines
799 B
Go
package whisper
|
|
|
|
import (
|
|
"errors"
|
|
|
|
// Bindings
|
|
whisper "github.com/ggerganov/whisper.cpp/bindings/go"
|
|
)
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
// ERRORS
|
|
|
|
var (
|
|
ErrUnableToLoadModel = errors.New("unable to load model")
|
|
ErrInternalAppError = errors.New("internal application error")
|
|
ErrProcessingFailed = errors.New("processing failed")
|
|
ErrUnsupportedLanguage = errors.New("unsupported language")
|
|
ErrModelNotMultilingual = errors.New("model is not multilingual")
|
|
)
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
// CONSTANTS
|
|
|
|
// SampleRate is the sample rate of the audio data.
|
|
const SampleRate = whisper.SampleRate
|
|
|
|
// SampleBits is the number of bytes per sample.
|
|
const SampleBits = whisper.SampleBits
|