@live-assistant/audio 0.2.0 → 0.3.1

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 +7 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -3,6 +3,11 @@
3
3
  `Microphone` and `PcmPlayer` for iOS, Android and the web. The platform is picked
4
4
  by file extension, so you import one name and get the right implementation.
5
5
 
6
+ **Just want it working?** [`@live-assistant/react-native`](https://www.npmjs.com/package/@live-assistant/react-native)
7
+ installs all of this and gives you `<LiveAssistant tokenEndpoint="…" />` — one
8
+ component that builds the session, the audio, the controller and the widget.
9
+ Reach for the packages below it when you want to hold the pieces apart.
10
+
6
11
  ```sh
7
12
  npm install @live-assistant/audio react-native-audio-api
8
13
  ```
@@ -85,3 +90,5 @@ secure context on the web) · `player_unavailable`.
85
90
  Codes, never sentences: map them to words in your own app.
86
91
 
87
92
  See the [overview](https://github.com/Recipely-Team/live-assistant#readme) for how this fits together.
93
+
94
+ A working app that puts this together: [`examples/expo-app`](https://github.com/Recipely-Team/live-assistant/tree/main/examples/expo-app).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@live-assistant/audio",
3
- "version": "0.2.0",
3
+ "version": "0.3.1",
4
4
  "description": "Microphone capture and streaming PCM playback for @live-assistant/core, on iOS, Android and the web, with levels an animation can read every frame.",
5
5
  "license": "MIT",
6
6
  "author": "Recep Tayyip Ekşi",
@@ -45,7 +45,7 @@
45
45
  "access": "public"
46
46
  },
47
47
  "dependencies": {
48
- "@live-assistant/core": "0.2.0"
48
+ "@live-assistant/core": "0.3.1"
49
49
  },
50
50
  "peerDependencies": {
51
51
  "react-native": ">=0.76",