wingbot 3.71.4 → 3.71.5

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/Responder.js +9 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "wingbot",
3
- "version": "3.71.4",
3
+ "version": "3.71.5",
4
4
  "description": "Enterprise Messaging Bot Conversation Engine",
5
5
  "main": "index.js",
6
6
  "type": "commonjs",
package/src/Responder.js CHANGED
@@ -339,6 +339,15 @@ class Responder {
339
339
  ...LLM.anonymizeTranscript(transcript, transcriptAnonymize)
340
340
  ];
341
341
 
342
+ // eslint-disable-next-line no-console
343
+ console.log({
344
+ transcript,
345
+ transcriptLength,
346
+ transcriptFlag,
347
+ transcriptAnonymize,
348
+ chat
349
+ });
350
+
342
351
  return new LLMSession(this.llm, chat, this._llmSend.bind(this));
343
352
  }
344
353