12 lines
195 B
TypeScript
12 lines
195 B
TypeScript
export const WHISPER_BASE_AUDIO_MODEL = {
|
|
enabled: true,
|
|
models: [
|
|
{
|
|
command: "whisper",
|
|
type: "cli",
|
|
args: ["--model", "base"],
|
|
timeoutSeconds: 2,
|
|
},
|
|
],
|
|
};
|