@live-assistant/gemini 0.3.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 +5 -0
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -4,6 +4,11 @@ The Gemini Live implementation of `AssistantSession`: one WebSocket, its setup
4
4
  handshake, and the frames in both directions — binary JSON frames, 16 kHz in,
5
5
  24 kHz out, generic tool calls and cancellations.
6
6
 
7
+ **Just want it working?** [`@live-assistant/react-native`](https://www.npmjs.com/package/@live-assistant/react-native)
8
+ installs all of this and gives you `<LiveAssistant tokenEndpoint="…" />` — one
9
+ component that builds the session, the audio, the controller and the widget.
10
+ Reach for the packages below it when you want to hold the pieces apart.
11
+
7
12
  ```sh
8
13
  npm install @live-assistant/gemini @live-assistant/core
9
14
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@live-assistant/gemini",
3
- "version": "0.3.0",
3
+ "version": "0.3.1",
4
4
  "description": "Gemini Live adapter for @live-assistant/core: the socket, its setup handshake and the frames in both directions.",
5
5
  "license": "MIT",
6
6
  "author": "Recep Tayyip Ekşi",
@@ -40,6 +40,6 @@
40
40
  "access": "public"
41
41
  },
42
42
  "dependencies": {
43
- "@live-assistant/core": "0.3.0"
43
+ "@live-assistant/core": "0.3.1"
44
44
  }
45
45
  }