nwhisper
Version:
Native Node.js bindings for OpenAI's Whisper using whisper.cpp. High-performance local speech-to-text with custom model support.
8 lines • 380 B
TypeScript
import type { Logger } from './types';
export interface IShellOptions {
silent: boolean;
async: boolean;
}
export declare function whisperShell(command: string, options?: IShellOptions, logger?: Logger): Promise<string>;
export declare function executeCppCommand(command: string, logger?: Logger, withCuda?: boolean): Promise<string>;
//# sourceMappingURL=whisper.d.ts.map