@promptbook/markdown-utils 0.86.30 → 0.88.0-1
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/README.md +5 -3
- package/esm/index.es.js +90 -11
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/{execute-javascript.index.d.ts → javascript.index.d.ts} +2 -0
- package/esm/typings/src/_packages/node.index.d.ts +2 -0
- package/esm/typings/src/scrapers/_common/register/$provideScriptingForNode.d.ts +11 -0
- package/esm/typings/src/scripting/javascript/JavascriptEvalExecutionTools.d.ts +1 -1
- package/esm/typings/src/scripting/javascript/JavascriptEvalExecutionTools.test.d.ts +4 -0
- package/esm/typings/src/scripting/javascript/JavascriptExecutionTools.d.ts +1 -1
- package/esm/typings/src/scripting/javascript/postprocessing-functions.d.ts +1 -1
- package/esm/typings/src/scripting/javascript/utils/extractVariablesFromJavascript.d.ts +14 -0
- package/esm/typings/src/scripting/javascript/utils/extractVariablesFromJavascript.test.d.ts +1 -0
- package/esm/typings/src/scripting/javascript/utils/extractVariablesFromScript.test.d.ts +1 -0
- package/package.json +1 -1
- package/umd/index.umd.js +90 -11
- package/umd/index.umd.js.map +1 -1
package/README.md
CHANGED
|
@@ -23,6 +23,10 @@
|
|
|
23
23
|
|
|
24
24
|
|
|
25
25
|
|
|
26
|
+
<blockquote style="color: #ff8811">
|
|
27
|
+
<b>⚠ Warning:</b> This is a pre-release version of the library. It is not yet ready for production use. Please look at <a href="https://www.npmjs.com/package/@promptbook/core?activeTab=versions">latest stable release</a>.
|
|
28
|
+
</blockquote>
|
|
29
|
+
|
|
26
30
|
## 📦 Package `@promptbook/markdown-utils`
|
|
27
31
|
|
|
28
32
|
- Promptbooks are [divided into several](#-packages) packages, all are published from [single monorepo](https://github.com/webgptorg/promptbook).
|
|
@@ -249,7 +253,7 @@ Or you can install them separately:
|
|
|
249
253
|
- ⭐ **[@promptbook/utils](https://www.npmjs.com/package/@promptbook/utils)** - Utility functions used in the library but also useful for individual use in preprocessing and postprocessing LLM inputs and outputs
|
|
250
254
|
- **[@promptbook/markdown-utils](https://www.npmjs.com/package/@promptbook/markdown-utils)** - Utility functions used for processing markdown
|
|
251
255
|
- _(Not finished)_ **[@promptbook/wizzard](https://www.npmjs.com/package/@promptbook/wizzard)** - Wizard for creating+running promptbooks in single line
|
|
252
|
-
- **[@promptbook/
|
|
256
|
+
- **[@promptbook/javascript](https://www.npmjs.com/package/@promptbook/javascript)** - Execution tools for javascript inside promptbooks
|
|
253
257
|
- **[@promptbook/openai](https://www.npmjs.com/package/@promptbook/openai)** - Execution tools for OpenAI API, wrapper around OpenAI SDK
|
|
254
258
|
- **[@promptbook/anthropic-claude](https://www.npmjs.com/package/@promptbook/anthropic-claude)** - Execution tools for Anthropic Claude API, wrapper around Anthropic Claude SDK
|
|
255
259
|
- **[@promptbook/vercel](https://www.npmjs.com/package/@promptbook/vercel)** - Adapter for Vercel functionalities
|
|
@@ -405,8 +409,6 @@ Promptbook project is under [BUSL 1.1 is an SPDX license](https://spdx.org/licen
|
|
|
405
409
|
|
|
406
410
|
See [TODO.md](./TODO.md)
|
|
407
411
|
|
|
408
|
-
|
|
409
|
-
|
|
410
412
|
## 🤝 Partners
|
|
411
413
|
|
|
412
414
|
<div style="display: flex; align-items: center; gap: 20px;">
|
package/esm/index.es.js
CHANGED
|
@@ -25,7 +25,7 @@ const BOOK_LANGUAGE_VERSION = '1.0.0';
|
|
|
25
25
|
* @generated
|
|
26
26
|
* @see https://github.com/webgptorg/promptbook
|
|
27
27
|
*/
|
|
28
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.
|
|
28
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.88.0-1';
|
|
29
29
|
/**
|
|
30
30
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
31
31
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -3720,6 +3720,83 @@ function valueToString(value) {
|
|
|
3720
3720
|
}
|
|
3721
3721
|
}
|
|
3722
3722
|
|
|
3723
|
+
/**
|
|
3724
|
+
* Parses the given script and returns the list of all used variables that are not defined in the script
|
|
3725
|
+
*
|
|
3726
|
+
* @param script from which to extract the variables
|
|
3727
|
+
* @returns the list of variable names
|
|
3728
|
+
* @throws {ParseError} if the script is invalid
|
|
3729
|
+
* @public exported from `@promptbook/javascript`
|
|
3730
|
+
*/
|
|
3731
|
+
function extractVariablesFromJavascript(script) {
|
|
3732
|
+
const variables = new Set();
|
|
3733
|
+
const originalScript = script;
|
|
3734
|
+
script = `(()=>{${script}})()`;
|
|
3735
|
+
try {
|
|
3736
|
+
for (let i = 0; i < LOOP_LIMIT; i++)
|
|
3737
|
+
try {
|
|
3738
|
+
eval(script); // <- TODO: Use `JavascriptExecutionTools.execute` here
|
|
3739
|
+
}
|
|
3740
|
+
catch (error) {
|
|
3741
|
+
if (!(error instanceof ReferenceError)) {
|
|
3742
|
+
throw error;
|
|
3743
|
+
}
|
|
3744
|
+
/*
|
|
3745
|
+
Note: Parsing the error
|
|
3746
|
+
🌟 Most devices:
|
|
3747
|
+
[PipelineUrlError: thing is not defined]
|
|
3748
|
+
|
|
3749
|
+
🍏 iPhone`s Safari:
|
|
3750
|
+
[PipelineUrlError: Can't find variable: thing]
|
|
3751
|
+
*/
|
|
3752
|
+
let variableName = undefined;
|
|
3753
|
+
if (error.message.startsWith(`Can't`)) {
|
|
3754
|
+
// 🍏 Case
|
|
3755
|
+
variableName = error.message.split(' ').pop();
|
|
3756
|
+
}
|
|
3757
|
+
else {
|
|
3758
|
+
// 🌟 Case
|
|
3759
|
+
variableName = error.message.split(' ').shift();
|
|
3760
|
+
}
|
|
3761
|
+
if (variableName === undefined) {
|
|
3762
|
+
throw error;
|
|
3763
|
+
}
|
|
3764
|
+
if (script.includes(variableName + '(')) {
|
|
3765
|
+
script = `const ${variableName} = ()=>'';` + script;
|
|
3766
|
+
}
|
|
3767
|
+
else {
|
|
3768
|
+
variables.add(variableName);
|
|
3769
|
+
script = `const ${variableName} = '';` + script;
|
|
3770
|
+
}
|
|
3771
|
+
}
|
|
3772
|
+
}
|
|
3773
|
+
catch (error) {
|
|
3774
|
+
if (!(error instanceof Error)) {
|
|
3775
|
+
throw error;
|
|
3776
|
+
}
|
|
3777
|
+
throw new ParseError(spaceTrim$1((block) => `
|
|
3778
|
+
Can not extract variables from the script
|
|
3779
|
+
${block(error.stack || error.message)}
|
|
3780
|
+
|
|
3781
|
+
Found variables:
|
|
3782
|
+
${Array.from(variables)
|
|
3783
|
+
.map((variableName, i) => `${i + 1}) ${variableName}`)
|
|
3784
|
+
.join('\n')}
|
|
3785
|
+
|
|
3786
|
+
|
|
3787
|
+
The script:
|
|
3788
|
+
|
|
3789
|
+
\`\`\`javascript
|
|
3790
|
+
${block(originalScript)}
|
|
3791
|
+
\`\`\`
|
|
3792
|
+
`));
|
|
3793
|
+
}
|
|
3794
|
+
return variables;
|
|
3795
|
+
}
|
|
3796
|
+
/**
|
|
3797
|
+
* TODO: [🔣] Support for multiple languages - python, java,...
|
|
3798
|
+
*/
|
|
3799
|
+
|
|
3723
3800
|
/**
|
|
3724
3801
|
* Parses the task and returns the set of all used parameters
|
|
3725
3802
|
*
|
|
@@ -3729,24 +3806,26 @@ function valueToString(value) {
|
|
|
3729
3806
|
* @public exported from `@promptbook/core` <- Note: [👖] This utility is so tightly interconnected with the Promptbook that it is not exported as util but in core
|
|
3730
3807
|
*/
|
|
3731
3808
|
function extractParameterNamesFromTask(task) {
|
|
3732
|
-
const { title, description,
|
|
3809
|
+
const { title, description, taskType, content, preparedContent, jokerParameterNames, foreach } = task;
|
|
3733
3810
|
const parameterNames = new Set();
|
|
3811
|
+
let contentParameters;
|
|
3812
|
+
if (taskType !== 'SCRIPT_TASK') {
|
|
3813
|
+
contentParameters = extractParameterNames(content);
|
|
3814
|
+
}
|
|
3815
|
+
else {
|
|
3816
|
+
// TODO: What if script is not javascript?
|
|
3817
|
+
// const { contentLanguage } = task;
|
|
3818
|
+
// if (contentLanguage !== 'javascript') {
|
|
3819
|
+
contentParameters = extractVariablesFromJavascript(content);
|
|
3820
|
+
}
|
|
3734
3821
|
for (const parameterName of [
|
|
3735
3822
|
...extractParameterNames(title),
|
|
3736
3823
|
...extractParameterNames(description || ''),
|
|
3737
|
-
...
|
|
3824
|
+
...contentParameters,
|
|
3738
3825
|
...extractParameterNames(preparedContent || ''),
|
|
3739
3826
|
]) {
|
|
3740
3827
|
parameterNames.add(parameterName);
|
|
3741
3828
|
}
|
|
3742
|
-
/*/
|
|
3743
|
-
// TODO: [🙊] Fix `extractVariablesFromScript` or delete
|
|
3744
|
-
if (taskType === 'SCRIPT_TASK') {
|
|
3745
|
-
for (const parameterName of extractVariablesFromScript(content)) {
|
|
3746
|
-
parameterNames.add(parameterName);
|
|
3747
|
-
}
|
|
3748
|
-
}
|
|
3749
|
-
/**/
|
|
3750
3829
|
for (const jokerName of jokerParameterNames || []) {
|
|
3751
3830
|
parameterNames.add(jokerName);
|
|
3752
3831
|
}
|