@lumen-labs-dev/whisper-node
Version:
Local audio transcription on CPU. Node.js bindings for OpenAI's Whisper.
11 lines (10 loc) • 333 B
TypeScript
import { IFlagTypes } from "../core/whisper";
import { IShellOptions } from "../infra/shell";
export type IWhisperConfig = {
modelName?: string;
modelPath?: string;
whisperOptions?: IFlagTypes;
shellOptions?: Partial<IShellOptions>;
};
export declare function loadConfig(): IWhisperConfig;
export default loadConfig;