This feature is deprecated and will be removed in the future.
It is not recommended for use.
A class that represents a document loader for transcribing audio files using the Sonix Speech Recognition service.
const loader = new SonixAudioTranscriptionLoader({ sonixAuthKey: "SONIX_AUTH_KEY", request: { audioFilePath: "LOCAL_AUDIO_FILE_PATH", fileName: "FILE_NAME", language: "en", },});const docs = await loader.load(); Copy
const loader = new SonixAudioTranscriptionLoader({ sonixAuthKey: "SONIX_AUTH_KEY", request: { audioFilePath: "LOCAL_AUDIO_FILE_PATH", fileName: "FILE_NAME", language: "en", },});const docs = await loader.load();
Performs the speech-to-text transcription using the SonixSpeechRecognitionService and returns the transcribed text as a Document object.
An array of Document objects containing the transcribed text.
Generated using TypeDoc
⚠️ Deprecated ⚠️
This feature is deprecated and will be removed in the future.
It is not recommended for use.
A class that represents a document loader for transcribing audio files using the Sonix Speech Recognition service.
Example