@dataclouder/ngx-agent-cards 0.1.66 → 0.1.68

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.
@@ -1958,7 +1958,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.1.6", ngImpor
1958
1958
 
1959
1959
  class MessageProcessingService {
1960
1960
  processMessage(message, conversationSettings) {
1961
- console.log('processMessage conversation data', message, conversationSettings);
1962
1961
  const processedMessage = {
1963
1962
  ...message,
1964
1963
  messageId: message.messageId || nanoid(),
@@ -2795,7 +2794,6 @@ class ConversationService {
2795
2794
  if (!conversationSettings.avatarImages?.user) {
2796
2795
  conversationSettings.avatarImages.user = this.userService.user().urlPicture || DEFUALT_USER_AVATAR;
2797
2796
  }
2798
- console.log('initConversationWithSettings final antes de set', conversationSettings);
2799
2797
  this.conversationSettingsState.set(conversationSettings);
2800
2798
  this.dynamicFlowService.setConversationFlow(conversationFlow);
2801
2799
  await this.initConversation();
@@ -4397,7 +4395,6 @@ class DCChatComponent {
4397
4395
  this.conversationService.setDestroyed(false);
4398
4396
  this.chatMonitorService.isConversationActive.set(true);
4399
4397
  if (this.conversationSettings) {
4400
- console.log('iniciando conversación', this.conversationSettings);
4401
4398
  await this.conversationService.initConversationWithSettings(this.conversationSettings, this.conversationFlow);
4402
4399
  }
4403
4400
  else {