@websolutespa/bom-llm 0.1.5 → 0.1.7
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 +20 -0
- package/README.md +0 -11
- package/dist/esm/index.js +1691 -150
- package/dist/esm/index.js.map +1 -1
- package/dist/index.css +46 -40
- package/dist/index.css.map +1 -1
- package/dist/umd/index.css +46 -40
- package/dist/umd/index.css.map +1 -1
- package/dist/umd/index.js +1691 -150
- package/dist/umd/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @websolutespa/bom-llm
|
|
2
2
|
|
|
3
|
+
## 0.1.7
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- ba32bef: Added: maxFileSize & mimeTypes
|
|
8
|
+
- f826c08: Added: storageMode option
|
|
9
|
+
|
|
10
|
+
## 0.1.6
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated Stream and Thread components to utilize components from useLlm state.
|
|
15
|
+
- Integrated Toaster notifications in LlmComponent for better user feedback.
|
|
16
|
+
- Added markdown styling mixin for improved text rendering.
|
|
17
|
+
- Enhanced LlmTheme type to include toaster theme options.
|
|
18
|
+
- Implemented history management in useLlm for better state handling.
|
|
19
|
+
- Refactored message service to streamline chunk processing.
|
|
20
|
+
- Introduced prompt token limit validation with user feedback.
|
|
21
|
+
- Added support for storing and retrieving message history.
|
|
22
|
+
|
|
3
23
|
## 0.1.5
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -148,17 +148,6 @@ You can handle the click event of the generated cta action with the onAction han
|
|
|
148
148
|
bomLlm(options);
|
|
149
149
|
```
|
|
150
150
|
|
|
151
|
-
### Supported types
|
|
152
|
-
|
|
153
|
-
Currently available types are:
|
|
154
|
-
|
|
155
|
-
- event
|
|
156
|
-
- eventItem
|
|
157
|
-
- poi
|
|
158
|
-
- poiItem
|
|
159
|
-
- tripadvisor
|
|
160
|
-
- tripadvisorItem
|
|
161
|
-
|
|
162
151
|
---
|
|
163
152
|
|
|
164
153
|
##### *this library is for internal usage and not production ready*
|