perso-interactive-sdk-web 1.2.0 → 1.2.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.
- package/README.md +3 -3
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@ pnpm add perso-interactive-sdk-web
|
|
|
17
17
|
|
|
18
18
|
## Usage
|
|
19
19
|
|
|
20
|
-
> 📖 **Looking for step-by-step examples?** See the [Example Guide](
|
|
20
|
+
> 📖 **Looking for step-by-step examples?** See the [Example Guide](https://github.com/perso-ai/perso-interactive-sdk-web/blob/master/packages/perso-interactive-sdk/example-guide/en/README.md) for annotated code snippets covering LLM, TTS, STT, STF, and full pipeline patterns.
|
|
21
21
|
|
|
22
22
|
The SDK provides two entry points:
|
|
23
23
|
|
|
@@ -211,7 +211,7 @@ For direct browser usage via `<script>` tag without a bundler. The SDK exposes a
|
|
|
211
211
|
|
|
212
212
|
### Example Guide
|
|
213
213
|
|
|
214
|
-
> 📖 **Example Guide**: [English](
|
|
214
|
+
> 📖 **Example Guide**: [English](https://github.com/perso-ai/perso-interactive-sdk-web/blob/master/packages/perso-interactive-sdk/example-guide/en/README.md)
|
|
215
215
|
|
|
216
216
|
## API Reference
|
|
217
217
|
|
|
@@ -288,7 +288,7 @@ For direct browser usage via `<script>` tag without a bundler. The SDK exposes a
|
|
|
288
288
|
| ------------------------ | -------------- | ---------------------------------------------- |
|
|
289
289
|
| `lastRecordedAudioFile` | `File \| null` | Last recorded WAV audio file from STT |
|
|
290
290
|
|
|
291
|
-
For detailed API documentation, see [api-docs.md](
|
|
291
|
+
For detailed API documentation, see [api-docs.md](https://github.com/perso-ai/perso-interactive-sdk-web/blob/master/core/api-docs.md).
|
|
292
292
|
|
|
293
293
|
## License
|
|
294
294
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "perso-interactive-sdk-web",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.1",
|
|
4
4
|
"description": "Perso Interactive Web SDK - WebRTC-based real-time interactive AI avatar sessions",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"private": false,
|
|
@@ -20,7 +20,8 @@
|
|
|
20
20
|
"license": "Apache-2.0",
|
|
21
21
|
"repository": {
|
|
22
22
|
"type": "git",
|
|
23
|
-
"url": "https://github.com/perso-ai/perso-interactive-sdk-web.git"
|
|
23
|
+
"url": "https://github.com/perso-ai/perso-interactive-sdk-web.git",
|
|
24
|
+
"directory": "packages/perso-interactive-sdk"
|
|
24
25
|
},
|
|
25
26
|
"homepage": "https://github.com/perso-ai/perso-interactive-sdk-web#readme",
|
|
26
27
|
"bugs": {
|