13 lines
634 B
JavaScript
13 lines
634 B
JavaScript
// Dev helper (placeholder) — download default models into %LOCALAPPDATA%\WhispAssist\models.
|
|
// In the app, model download is a Phase 3 in-product flow (FR-MODEL-1) with progress events;
|
|
// this script is only for setting up a dev machine quickly.
|
|
//
|
|
// Intended models (pin URLs/checksums at implementation time):
|
|
// - Whisper: base (q5) GGUF for whisper.cpp
|
|
// - Diarization: pyannote segmentation (ONNX) + ERes2Net speaker embedding (ONNX)
|
|
//
|
|
// Usage (once implemented): node scripts/download-models.mjs --set default
|
|
|
|
console.log("TODO: implement model download (Phase 3). See docs/05-roadmap.md T3.7.");
|
|
process.exit(0);
|