@blockrun/clawrouter 0.11.0 → 0.11.2

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/dist/index.js CHANGED
@@ -5551,8 +5551,8 @@ async function proxyRequest(req, res, apiBase, payFetch, options, routerOpts, de
5551
5551
  } else {
5552
5552
  const lines = [];
5553
5553
  for (const img of images) {
5554
- if (img.url) lines.push(`![Generated Image](${img.url})`);
5555
- if (img.revised_prompt) lines.push(`*Revised prompt: ${img.revised_prompt}*`);
5554
+ if (img.url) lines.push(img.url);
5555
+ if (img.revised_prompt) lines.push(`Revised prompt: ${img.revised_prompt}`);
5556
5556
  }
5557
5557
  lines.push("", `Model: ${imageModel} | Size: ${imageSize}`);
5558
5558
  responseText = lines.join("\n");