@snowdigital/whisper-node
Version:
NodeJS interface for whisper.cpp
9 lines • 436 B
TypeScript
import { Logger } from './types';
export interface IShellOptions {
silent: boolean;
async: boolean;
no_prints: boolean;
}
export declare function whisperShell(command: string, options?: IShellOptions, logger?: Logger): Promise<string>;
export declare function executeCppCommand(command: string, logger?: Logger, withCuda?: boolean, whisperShellOptions?: IShellOptions): Promise<string>;
//# sourceMappingURL=whisper.d.ts.map