@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/cli.js CHANGED
@@ -5401,8 +5401,8 @@ async function proxyRequest(req, res, apiBase, payFetch, options, routerOpts, de
5401
5401
  } else {
5402
5402
  const lines = [];
5403
5403
  for (const img of images) {
5404
- if (img.url) lines.push(`![Generated Image](${img.url})`);
5405
- if (img.revised_prompt) lines.push(`*Revised prompt: ${img.revised_prompt}*`);
5404
+ if (img.url) lines.push(img.url);
5405
+ if (img.revised_prompt) lines.push(`Revised prompt: ${img.revised_prompt}`);
5406
5406
  }
5407
5407
  lines.push("", `Model: ${imageModel} | Size: ${imageSize}`);
5408
5408
  responseText = lines.join("\n");