@promptbook/website-crawler 0.92.0-29 → 0.92.0-30

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/esm/index.es.js CHANGED
@@ -29,7 +29,7 @@ const BOOK_LANGUAGE_VERSION = '1.0.0';
29
29
  * @generated
30
30
  * @see https://github.com/webgptorg/promptbook
31
31
  */
32
- const PROMPTBOOK_ENGINE_VERSION = '0.92.0-29';
32
+ const PROMPTBOOK_ENGINE_VERSION = '0.92.0-30';
33
33
  /**
34
34
  * TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
35
35
  * Note: [💞] Ignore a discrepancy between file name and entity name
@@ -4210,13 +4210,10 @@ const CsvFormatParser = {
4210
4210
  if (onProgress) {
4211
4211
  // Note: Report the CSV with all rows mapped so far
4212
4212
  /*
4213
- !!!!
4214
- // Report progress with updated value
4215
- const progressData = mappedData.map((row, i) =>
4216
- i > index ? { ...row, [outputParameterName]: PENDING_VALUE_PLACEHOLDER } : row,
4217
- );
4218
-
4219
-
4213
+ // TODO: [🛕] Report progress with all the rows including the pending ones
4214
+ const progressData = mappedData.map((row, i) =>
4215
+ i > index ? { ...row, [outputParameterName]: PENDING_VALUE_PLACEHOLDER } : row,
4216
+ );
4220
4217
  */
4221
4218
  await onProgress(unparse(mappedData, { ...settings, ...MANDATORY_CSV_SETTINGS }));
4222
4219
  }