@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 +2 -2
- package/dist/cli.js.map +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
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(
|
|
5555
|
-
if (img.revised_prompt) lines.push(
|
|
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");
|