@hivegpt/hiveai-angular 0.0.190 → 0.0.191
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/bundles/hivegpt-hiveai-angular.umd.js +5 -0
- package/bundles/hivegpt-hiveai-angular.umd.js.map +1 -1
- package/bundles/hivegpt-hiveai-angular.umd.min.js +1 -1
- package/bundles/hivegpt-hiveai-angular.umd.min.js.map +1 -1
- package/esm2015/lib/components/chat-drawer/chat-drawer.component.js +6 -1
- package/fesm2015/hivegpt-hiveai-angular.js +5 -0
- package/fesm2015/hivegpt-hiveai-angular.js.map +1 -1
- package/lib/components/chat-drawer/chat-drawer.component.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -830,6 +830,11 @@
|
|
|
830
830
|
}
|
|
831
831
|
if (web_results && Array.isArray(web_results)) {
|
|
832
832
|
console.log('Web Results:', web_results);
|
|
833
|
+
_this.chatLog.push({
|
|
834
|
+
type: 'ai',
|
|
835
|
+
message: "",
|
|
836
|
+
time: formatNow(_this.timezone),
|
|
837
|
+
});
|
|
833
838
|
_this.sourcesList = web_results;
|
|
834
839
|
_this.displayedSources = (_c = _this.sourcesList) === null || _c === void 0 ? void 0 : _c.slice(0, 3); // First 3 cards
|
|
835
840
|
_this.remainingSources = (_d = _this.sourcesList) === null || _d === void 0 ? void 0 : _d.slice(3); // Remaining items
|