@friendlyrobot/discord-pi-agent 0.7.7 → 0.7.8

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/dist/index.js +6 -0
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -163,6 +163,12 @@ async function collectReply(session, prompt, options = {}) {
163
163
  }
164
164
  if (finalText) {
165
165
  const transformed = await transformMarkdownTablesToCodeBlocks(finalText);
166
+ console.info(`========== reply-buffer BEFORE (${finalText.length} chars) ==========
167
+ ${finalText}
168
+ ========== reply-buffer BEFORE END ==========`);
169
+ console.info(`========== reply-buffer AFTER (${transformed.length} chars) ==========
170
+ ${transformed}
171
+ ========== reply-buffer AFTER END ==========`);
166
172
  logger3.debug({
167
173
  logPrefix,
168
174
  model,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@friendlyrobot/discord-pi-agent",
3
- "version": "0.7.7",
3
+ "version": "0.7.8",
4
4
  "description": "Reusable Discord gateway bridge for persistent pi agent sessions",
5
5
  "license": "MIT",
6
6
  "type": "module",