openwakeword-js 0.1.21 → 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 CHANGED
@@ -5,13 +5,6 @@
5
5
  <meta charset="utf-8" />
6
6
  <meta content="width=device-width, initial-scale=1.0" name="viewport" />
7
7
  <title>AI Wake Word Detector | OpenWakeWord JS</title>
8
- <script type="importmap">
9
- {
10
- "imports": {
11
- "onnxruntime-web": "https://cdn.jsdelivr.net/npm/onnxruntime-web@1.20.1/dist/ort.mjs"
12
- }
13
- }
14
- </script>
15
8
 
16
9
  <!-- Fonts -->
17
10
  <link href="https://fonts.googleapis.com" rel="preconnect" />
@@ -294,7 +287,7 @@
294
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">
295
288
  <div
296
289
  class="opacity-40 animate-pulse font-bold text-blue-900 border border-blue-900/40 p-1 inline-block rounded mb-2">
297
- OPENWAKEWORD-JS V0.1.20 READY</div>
290
+ OPENWAKEWORD-JS V0.1.21 READY</div>
298
291
  </div>
299
292
  </div>
300
293
  </details>
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "openwakeword-js",
3
- "version": "0.1.21",
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.20)');
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:');