@usefulsensors/moonshine-js
Version:
On-device speech-to-text and voice control for web applications with Moonshine.
23 lines (21 loc) • 720 B
text/typescript
import MoonshineModel from "./model";
import MediaElementTranscriber from "./mediaElementTranscriber"
import MicrophoneTranscriber from "./microphoneTranscriber";
import MoonshineSpeechRecognition from "./webSpeechPolyfill";
import { Transcriber, TranscriberCallbacks } from "./transcriber";
import { Settings } from "./constants";
import { VoiceController, KeywordSpotter, IntentClassifier } from "./voiceController";
import { MoonshineError } from "./error";
export {
MoonshineModel,
MoonshineError,
Settings,
MoonshineSpeechRecognition,
Transcriber,
MicrophoneTranscriber,
MediaElementTranscriber,
TranscriberCallbacks,
VoiceController,
KeywordSpotter,
IntentClassifier
}