@mindstudio-ai/remy 0.1.52 → 0.1.53
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/headless.js +2 -2
- package/dist/index.js +2 -2
- package/package.json +1 -1
package/dist/headless.js
CHANGED
|
@@ -3163,8 +3163,8 @@ async function generateImageAssets(opts) {
|
|
|
3163
3163
|
}
|
|
3164
3164
|
});
|
|
3165
3165
|
const url = await runCli(
|
|
3166
|
-
`mindstudio generate-image
|
|
3167
|
-
{ jsonLogs: true, timeout: 2e5, onLog }
|
|
3166
|
+
`mindstudio generate-image --output-key imageUrl --no-meta`,
|
|
3167
|
+
{ jsonLogs: true, timeout: 2e5, onLog, stdin: step }
|
|
3168
3168
|
);
|
|
3169
3169
|
imageUrls = [url];
|
|
3170
3170
|
} else {
|
package/dist/index.js
CHANGED
|
@@ -3220,8 +3220,8 @@ async function generateImageAssets(opts) {
|
|
|
3220
3220
|
}
|
|
3221
3221
|
});
|
|
3222
3222
|
const url = await runCli(
|
|
3223
|
-
`mindstudio generate-image
|
|
3224
|
-
{ jsonLogs: true, timeout: 2e5, onLog }
|
|
3223
|
+
`mindstudio generate-image --output-key imageUrl --no-meta`,
|
|
3224
|
+
{ jsonLogs: true, timeout: 2e5, onLog, stdin: step }
|
|
3225
3225
|
);
|
|
3226
3226
|
imageUrls = [url];
|
|
3227
3227
|
} else {
|