mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-03 16:50:22 +00:00
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,
|
|
},
|
|
],
|
|
};
|