@promptbook/cli 0.72.0-26 → 0.72.0-28
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 +7 -1
- package/esm/index.es.js.map +1 -1
- package/package.json +4 -1
- package/umd/index.umd.js +8 -5
- package/umd/index.umd.js.map +1 -1
package/esm/index.es.js
CHANGED
|
@@ -19,12 +19,15 @@ import { io } from 'socket.io-client';
|
|
|
19
19
|
import Anthropic from '@anthropic-ai/sdk';
|
|
20
20
|
import { OpenAIClient, AzureKeyCredential } from '@azure/openai';
|
|
21
21
|
import OpenAI from 'openai';
|
|
22
|
+
import { Readability } from '@mozilla/readability';
|
|
23
|
+
import { JSDOM } from 'jsdom';
|
|
24
|
+
import { Converter } from 'showdown';
|
|
22
25
|
|
|
23
26
|
// ⚠️ WARNING: This code has been generated so that any manual changes will be overwritten
|
|
24
27
|
/**
|
|
25
28
|
* The version of the Promptbook library
|
|
26
29
|
*/
|
|
27
|
-
var PROMPTBOOK_VERSION = '0.72.0-
|
|
30
|
+
var PROMPTBOOK_VERSION = '0.72.0-27';
|
|
28
31
|
// TODO: [main] !!!! List here all the versions and annotate + put into script
|
|
29
32
|
|
|
30
33
|
/*! *****************************************************************************
|
|
@@ -14095,6 +14098,9 @@ var WebsiteScraper = /** @class */ (function () {
|
|
|
14095
14098
|
this.tools = tools;
|
|
14096
14099
|
this.options = options;
|
|
14097
14100
|
this.markdownScraper = new MarkdownScraper(tools, options);
|
|
14101
|
+
TODO_USE(Readability);
|
|
14102
|
+
TODO_USE(Converter);
|
|
14103
|
+
TODO_USE(JSDOM);
|
|
14098
14104
|
}
|
|
14099
14105
|
Object.defineProperty(WebsiteScraper.prototype, "metadata", {
|
|
14100
14106
|
/**
|