@mindstudio-ai/remy 0.1.211 → 0.1.212
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
|
@@ -7308,14 +7308,14 @@ function buildUploadHeader(results) {
|
|
|
7308
7308
|
}
|
|
7309
7309
|
if (succeeded.length === 1) {
|
|
7310
7310
|
const r = succeeded[0];
|
|
7311
|
-
const parts = [`[Uploaded file: ${r.localPath}
|
|
7311
|
+
const parts = [`[Uploaded file: ${r.localPath}`];
|
|
7312
7312
|
if (r.extractedTextPath) {
|
|
7313
7313
|
parts.push(`extracted text: ${r.extractedTextPath}`);
|
|
7314
7314
|
}
|
|
7315
7315
|
return parts.join(" \u2014 ") + "]";
|
|
7316
7316
|
}
|
|
7317
7317
|
const lines = succeeded.map((r) => {
|
|
7318
|
-
const parts = [`- ${r.localPath}
|
|
7318
|
+
const parts = [`- ${r.localPath}`];
|
|
7319
7319
|
if (r.extractedTextPath) {
|
|
7320
7320
|
parts.push(` extracted text: ${r.extractedTextPath}`);
|
|
7321
7321
|
}
|
package/dist/index.js
CHANGED
|
@@ -8081,14 +8081,14 @@ function buildUploadHeader(results) {
|
|
|
8081
8081
|
}
|
|
8082
8082
|
if (succeeded.length === 1) {
|
|
8083
8083
|
const r = succeeded[0];
|
|
8084
|
-
const parts = [`[Uploaded file: ${r.localPath}
|
|
8084
|
+
const parts = [`[Uploaded file: ${r.localPath}`];
|
|
8085
8085
|
if (r.extractedTextPath) {
|
|
8086
8086
|
parts.push(`extracted text: ${r.extractedTextPath}`);
|
|
8087
8087
|
}
|
|
8088
8088
|
return parts.join(" \u2014 ") + "]";
|
|
8089
8089
|
}
|
|
8090
8090
|
const lines = succeeded.map((r) => {
|
|
8091
|
-
const parts = [`- ${r.localPath}
|
|
8091
|
+
const parts = [`- ${r.localPath}`];
|
|
8092
8092
|
if (r.extractedTextPath) {
|
|
8093
8093
|
parts.push(` extracted text: ${r.extractedTextPath}`);
|
|
8094
8094
|
}
|