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.
- package/package.json +1 -1
- package/src/Responder.js +9 -0
package/package.json
CHANGED
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
|
|