@snowdigital/whisper-node
Version:
NodeJS interface for whisper.cpp
11 lines • 401 B
TypeScript
import { Logger, WhisperOptions } from './types';
export interface IOptions {
modelName: string;
autoDownloadModelName?: string;
whisperOptions?: WhisperOptions;
withCuda?: boolean;
removeWavFileAfterTranscription?: boolean;
logger?: Logger | null;
}
export declare function nodewhisper(filePath: string, options: IOptions): Promise<string>;
//# sourceMappingURL=index.d.ts.map