@promptbook/wizard 0.112.0-95 → 0.112.0-97

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
@@ -38,7 +38,7 @@ const BOOK_LANGUAGE_VERSION = '2.0.0';
38
38
  * @generated
39
39
  * @see https://github.com/webgptorg/promptbook
40
40
  */
41
- const PROMPTBOOK_ENGINE_VERSION = '0.112.0-95';
41
+ const PROMPTBOOK_ENGINE_VERSION = '0.112.0-97';
42
42
  /**
43
43
  * TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
44
44
  * Note: [💞] Ignore a discrepancy between file name and entity name
@@ -16660,7 +16660,7 @@ class DocumentScraper {
16660
16660
  > },
16661
16661
  */
16662
16662
  };
16663
- const knowledge = this.markdownScraper.scrape(markdownSource);
16663
+ const knowledge = await this.markdownScraper.scrape(markdownSource);
16664
16664
  await cacheFilehandler.destroy();
16665
16665
  return knowledge;
16666
16666
  }
@@ -16824,7 +16824,7 @@ class LegacyDocumentScraper {
16824
16824
  > },
16825
16825
  */
16826
16826
  };
16827
- const knowledge = this.documentScraper.scrape(markdownSource);
16827
+ const knowledge = await this.documentScraper.scrape(markdownSource);
16828
16828
  await cacheFilehandler.destroy();
16829
16829
  return knowledge;
16830
16830
  }