@glydeunity/voice-sdk 1.6.28 → 1.6.32
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/README.md +13 -0
- package/dist/glyde-chat.umd.js +14 -14
- package/dist/glyde-chat.umd.js.map +1 -1
- package/dist/index.d.ts +19 -2
- package/dist/voice-sdk.es.js +4172 -4687
- package/dist/voice-sdk.es.js.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -78,6 +78,19 @@ Version: latest (see `package.json`)
|
|
|
78
78
|
}
|
|
79
79
|
```
|
|
80
80
|
|
|
81
|
+
## Voice Playback Speed
|
|
82
|
+
|
|
83
|
+
Agent speech plays at **1.2x** by default (20% faster). Override with `playbackSpeed`:
|
|
84
|
+
|
|
85
|
+
```js
|
|
86
|
+
GlydeChat.init({
|
|
87
|
+
publishableKey: 'YOUR_PUBLISHABLE_KEY',
|
|
88
|
+
contextType: 'screening',
|
|
89
|
+
contextId: 'APPLICATION_UUID',
|
|
90
|
+
playbackSpeed: 1.0, // 1.0 = normal, 1.2 = default, range 0.5-2.0
|
|
91
|
+
});
|
|
92
|
+
```
|
|
93
|
+
|
|
81
94
|
## Continuity Controls
|
|
82
95
|
|
|
83
96
|
Use these to tune chat history sent to the backend:
|