sentifyd-bot 1.3.0 → 1.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.
- package/CHANGELOG.md +5 -0
- package/README.md +36 -2
- package/package.json +6 -1
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -159,8 +159,7 @@ export default function Home() {
|
|
|
159
159
|
|
|
160
160
|
## Package Details
|
|
161
161
|
|
|
162
|
-
- **
|
|
163
|
-
- **Dependencies**: All bundled (Three.js, Azure Speech SDK, Lit)
|
|
162
|
+
- **Dependencies**: Lit, Azure Speech SDK, Socket.IO Client, TalkingHead, XState, and utilities (installed automatically)
|
|
164
163
|
- **Peer Dependencies**: React (optional for non-React users)
|
|
165
164
|
- **Exports**: ESM module with tree-shakable exports
|
|
166
165
|
|
|
@@ -226,3 +225,38 @@ Configure custom storage (for mobile apps or special use cases).
|
|
|
226
225
|
Proprietary - See [LICENSE.md](LICENSE.md) for details.
|
|
227
226
|
|
|
228
227
|
Free to use in commercial and non-commercial projects. Modification and redistribution of source code prohibited without permission.
|
|
228
|
+
|
|
229
|
+
## Changelog
|
|
230
|
+
|
|
231
|
+
All notable changes to this project will be documented in this file.
|
|
232
|
+
|
|
233
|
+
### [1.3.1] - 2025-12-18
|
|
234
|
+
|
|
235
|
+
#### Changed
|
|
236
|
+
- **Documentation**: Updated README with changelog and corrected dependencies information.
|
|
237
|
+
|
|
238
|
+
### [1.3.0] - 2025-12-18
|
|
239
|
+
|
|
240
|
+
#### Added
|
|
241
|
+
- **Vite Plugin**: Introduced `sentifydBotPlugin` to handle 3D avatar assets and audio worklets automatically. This is now required for Vite-based projects.
|
|
242
|
+
- **Documentation**: Updated README with instructions for configuring the new Vite plugin.
|
|
243
|
+
|
|
244
|
+
#### Changed
|
|
245
|
+
- **Dependency Management**: The 3D avatar engine (`@met4citizen/talkinghead`) is now an external dependency managed by the package, reducing the bundle size of the main application.
|
|
246
|
+
- **Performance**: Improved asset loading strategy for 3D models and lip-sync modules.
|
|
247
|
+
|
|
248
|
+
#### Removed
|
|
249
|
+
- Removed direct dependency on `three.js` (now handled internally by the avatar engine).
|
|
250
|
+
|
|
251
|
+
### [1.2.0] - 2025-12-17
|
|
252
|
+
|
|
253
|
+
#### Added
|
|
254
|
+
- **UX Improvements**: Various user experience enhancements for smoother interactions.
|
|
255
|
+
- **Conversation Resume**: Enhanced handling of resuming conversations, ensuring context is preserved across sessions.
|
|
256
|
+
|
|
257
|
+
### [1.1.x] - 2025-12-07
|
|
258
|
+
|
|
259
|
+
#### Added
|
|
260
|
+
- Initial release of the Sentifyd Bot npm package.
|
|
261
|
+
- Support for React, Vue, and Vanilla JS.
|
|
262
|
+
- Core conversational AI features with 3D avatar integration.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sentifyd-bot",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"description": "Sentifyd conversational AI chatbot with 3D avatar - npm package for React, Vue, and modern web frameworks",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.es.js",
|
|
@@ -48,6 +48,11 @@
|
|
|
48
48
|
"bugs": {
|
|
49
49
|
"email": "info@sentifyd.io"
|
|
50
50
|
},
|
|
51
|
+
"repository": {
|
|
52
|
+
"type": "git",
|
|
53
|
+
"url": "git+https://github.com/Sentifyd/Sentifyd-frontend.git",
|
|
54
|
+
"directory": "npm-package"
|
|
55
|
+
},
|
|
51
56
|
"author": "Sentifyd <info@sentifyd.io>",
|
|
52
57
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
53
58
|
"homepage": "https://sentifyd.io",
|