react-native-wakeword 1.0.25 → 1.0.26

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.
Files changed (2) hide show
  1. package/README.md +31 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,12 +1,40 @@
1
- DaVoice.io Voice commands / Wake words / keyword detection npm for Android and IOS.
1
+ DaVoice.io Voice commands / Wake words / Voice to Intent / keyword detection npm for Android and IOS.
2
2
 
3
3
  Contact us at info@DaVoice.io
4
4
 
5
5
  ## Installation
6
6
  npm install react-native-wakeword
7
7
 
8
- # On IOS add:
9
- pod 'KeyWordDetection', :path => '../node_modules/react-native-wakeword'
8
+ ## Githhub examples:
10
9
 
11
10
  Checkout examples on:
12
11
  https://github.com/frymanofer/ReactNative_WakeWordDetection
12
+
13
+
14
+ ## FAQ:
15
+
16
+ ### What is a wake word?
17
+
18
+ A wake word is a keyword that activates your device, like "Hey Siri" or "OK Google".
19
+
20
+
21
+ What is a Speech to Intent?
22
+
23
+ Speech to Intent refers to the ability to recognize a spoken word or phrase
24
+ and directly associate it with a specific action or operation within an application.
25
+
26
+ Unlike a "wake word," which typically serves to activate or wake up the application,
27
+ Speech to Intent goes further by enabling complex interactions and functionalities
28
+ based on the recognized intent behind the speech.
29
+
30
+ For example, a wake word like "Hey App" might activate the application, while Speech
31
+ to Intent could process a phrase like "Play my favorite song" or "Order a coffee" to
32
+ execute corresponding tasks within the app.
33
+ Speech to Intent is often triggered after a wake word activates the app, making it a key
34
+ component of more advanced voice-controlled applications. This layered approach allows for
35
+ seamless and intuitive voice-driven user experiences.
36
+
37
+ How accurate is the platform?
38
+
39
+ Our platform ensures 99.99%+ accuracy in various environments.
40
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-wakeword",
3
- "version": "1.0.25",
3
+ "version": "1.0.26",
4
4
  "description": "Voice/Wake-word detection library for React Native",
5
5
  "main": "wakewords/index.js",
6
6
  "types": "wakewords/index.d.ts",