@applica-software-guru/persona-sdk 0.1.37 → 0.1.40

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 CHANGED
@@ -92,13 +92,13 @@ The Persona SDK supports multiple communication protocols to provide flexibility
92
92
  - **Description**: A full-duplex communication protocol that enables real-time interaction between the client and server.
93
93
  - **Use Case**: Suitable for scenarios requiring low-latency communication, such as live chat applications.
94
94
 
95
- ### WebRTC (Recommended)
95
+ ### WebRTC
96
96
 
97
- - **Description**: A peer-to-peer communication protocol designed for ultra-low latency and high-speed data transfer.
98
- - **Use Case**: The fastest way to communicate with AI agents, making it ideal for real-time, interactive applications.
99
- - **Why WebRTC?**: WebRTC bypasses traditional server-based communication, enabling direct peer-to-peer connections. This results in significantly reduced latency and improved performance, especially for high-frequency interactions with AI agents.
97
+ - **Description**: A peer-to-peer communication protocol designed primarily for ultra-fast audio sessions, while also supporting high-speed messaging with minimal latency.
98
+ - **Use Case**: Perfect for real-time, interactive applications where rapid audio communication and responsiveness are critical.
99
+ - **Why WebRTC?**: By creating direct peer-to-peer connections, WebRTC eliminates unnecessary server delays, ensuring the fastest possible audio sessions and seamless message exchanges.
100
100
 
101
- **Pro Tip**: If your application requires the fastest response times and seamless real-time interaction, enable WebRTC in the `protocols` configuration.
101
+ **Pro Tip**: For optimal audio performance, make sure WebRTC is enabled in the `protocols` configuration of your application.
102
102
 
103
103
  ---
104
104
 
@@ -2,7 +2,7 @@ image: node:18.20.4
2
2
 
3
3
  pipelines:
4
4
  branches:
5
- feature/assistant-ui:
5
+ main:
6
6
  - step:
7
7
  name: Deploy
8
8
  deployment: Production
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@applica-software-guru/persona-sdk",
3
3
  "private": false,
4
- "version": "0.1.37",
4
+ "version": "0.1.40",
5
5
  "type": "module",
6
6
  "scripts": {
7
7
  "dev": "vite",
package/preview.sh CHANGED
@@ -14,6 +14,6 @@ fi
14
14
 
15
15
  PREVIEW_TAG=$1
16
16
 
17
- npm --no-git-tag-version version "0.0.1-$PREVIEW_TAG" -m "$PREVIEW_TAG"
17
+ npm --no-git-tag-version version "$PREVIEW_TAG" -m "$PREVIEW_TAG"
18
18
  npm run build
19
19
  npm publish --tag "$PREVIEW_TAG" --access public