openwakeword-js 0.1.20 → 0.1.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.html +2 -2
- package/models/hello_deepa_old.onnx +0 -0
- package/package.json +2 -1
- package/scripts/download_models.js +1 -1
package/index.html
CHANGED
|
@@ -287,7 +287,7 @@
|
|
|
287
287
|
class="h-44 overflow-y-auto rounded-xl bg-[#030406] p-4 font-mono text-[10px] text-slate-600 border border-white/5 custom-scrollbar leading-relaxed">
|
|
288
288
|
<div
|
|
289
289
|
class="opacity-40 animate-pulse font-bold text-blue-900 border border-blue-900/40 p-1 inline-block rounded mb-2">
|
|
290
|
-
OPENWAKEWORD-JS V0.1.
|
|
290
|
+
OPENWAKEWORD-JS V0.1.21 READY</div>
|
|
291
291
|
</div>
|
|
292
292
|
</div>
|
|
293
293
|
</details>
|
|
@@ -349,7 +349,7 @@
|
|
|
349
349
|
log('Neural buffers allocating locally...', 'SYSTEM');
|
|
350
350
|
try {
|
|
351
351
|
state.model = new Model({
|
|
352
|
-
wakewordModels: ['./models/hello_deepa.onnx', './models/namaste_deepa.onnx'
|
|
352
|
+
wakewordModels: ['./models/hello_deepa.onnx', './models/namaste_deepa.onnx'],
|
|
353
353
|
melspectrogramModelPath: './models/melspectrogram.onnx',
|
|
354
354
|
embeddingModelPath: './models/embedding_model.onnx',
|
|
355
355
|
inferenceFramework: 'onnx',
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openwakeword-js",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.22",
|
|
4
4
|
"description": "Port of openWakeWord to JavaScript/TypeScript using ONNX Runtime",
|
|
5
5
|
"bin": {
|
|
6
6
|
"openwakeword-js-setup": "scripts/download_models.js"
|
|
@@ -23,6 +23,7 @@
|
|
|
23
23
|
"index.html",
|
|
24
24
|
"openwakeword.mjs",
|
|
25
25
|
"models/hello_deepa.onnx",
|
|
26
|
+
"models/hello_deepa_old.onnx",
|
|
26
27
|
"models/namaste_deepa.onnx",
|
|
27
28
|
"README.md",
|
|
28
29
|
"LICENSE"
|
|
@@ -100,7 +100,7 @@ async function main() {
|
|
|
100
100
|
copyIfExists(path.join(packageRoot, 'models', 'test.html'), path.join(MODELS_DIR, 'test.html'), 'Debug UI');
|
|
101
101
|
|
|
102
102
|
console.log('\n----------------------------------------------------');
|
|
103
|
-
console.log('SETUP COMPLETE (v0.1.
|
|
103
|
+
console.log('SETUP COMPLETE (v0.1.21)');
|
|
104
104
|
console.log('----------------------------------------------------');
|
|
105
105
|
console.log('Your precision AI wake word interface is ready.');
|
|
106
106
|
console.log('\nTo start the demo:');
|