@promptbook/node 0.69.0-13 → 0.69.0-15
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 +12 -17
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/collection/constructors/createCollectionFromDirectory.test.d.ts +1 -0
- package/esm/typings/src/commands/FOREACH/ForeachCommand.d.ts +1 -1
- package/esm/typings/src/commands/FOREACH/foreachCommandParser.d.ts +0 -1
- package/esm/typings/src/conversion/validation/validatePipeline.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +12 -17
- package/umd/index.umd.js.map +1 -1
package/esm/index.es.js
CHANGED
|
@@ -15,7 +15,7 @@ import * as dotenv from 'dotenv';
|
|
|
15
15
|
/**
|
|
16
16
|
* The version of the Promptbook library
|
|
17
17
|
*/
|
|
18
|
-
var PROMPTBOOK_VERSION = '0.69.0-
|
|
18
|
+
var PROMPTBOOK_VERSION = '0.69.0-14';
|
|
19
19
|
// TODO: !!!! List here all the versions and annotate + put into script
|
|
20
20
|
|
|
21
21
|
/*! *****************************************************************************
|
|
@@ -896,7 +896,7 @@ function forEachAsync(array, options, callbackfunction) {
|
|
|
896
896
|
});
|
|
897
897
|
}
|
|
898
898
|
|
|
899
|
-
var PipelineCollection = [{title:"Prepare Knowledge from Markdown",pipelineUrl:"https://promptbook.studio/promptbook/prepare-knowledge-from-markdown.ptbk.md",promptbookVersion:"0.69.0-
|
|
899
|
+
var PipelineCollection = [{title:"Prepare Knowledge from Markdown",pipelineUrl:"https://promptbook.studio/promptbook/prepare-knowledge-from-markdown.ptbk.md",promptbookVersion:"0.69.0-14",parameters:[{name:"knowledgeContent",description:"Markdown document content",isInput:true,isOutput:false},{name:"knowledgePieces",description:"The knowledge JSON object",isInput:false,isOutput:true}],templates:[{templateType:"PROMPT_TEMPLATE",name:"knowledge",title:"Knowledge",content:"You are experienced data researcher, extract the important knowledge from the document.\n\n# Rules\n\n- Make pieces of information concise, clear, and easy to understand\n- One piece of information should be approximately 1 paragraph\n- Divide the paragraphs by markdown horizontal lines ---\n- Omit irrelevant information\n- Group redundant information\n- Write just extracted information, nothing else\n\n# The document\n\nTake information from this document:\n\n> {knowledgeContent}",resultingParameterName:"knowledgePieces",dependentParameterNames:["knowledgeContent"]}],knowledgeSources:[],knowledgePieces:[],personas:[],preparations:[],sourceFile:"./promptbook-collection/prepare-knowledge-from-markdown.ptbk.md"},{title:"Prepare Keywords",pipelineUrl:"https://promptbook.studio/promptbook/prepare-knowledge-keywords.ptbk.md",promptbookVersion:"0.69.0-14",parameters:[{name:"knowledgePieceContent",description:"The content",isInput:true,isOutput:false},{name:"keywords",description:"Keywords separated by comma",isInput:false,isOutput:true}],templates:[{templateType:"PROMPT_TEMPLATE",name:"knowledge",title:"Knowledge",content:"You are experienced data researcher, detect the important keywords in the document.\n\n# Rules\n\n- Write just keywords separated by comma\n\n# The document\n\nTake information from this document:\n\n> {knowledgePieceContent}",resultingParameterName:"keywords",dependentParameterNames:["knowledgePieceContent"]}],knowledgeSources:[],knowledgePieces:[],personas:[],preparations:[],sourceFile:"./promptbook-collection/prepare-knowledge-keywords.ptbk.md"},{title:"Prepare Title",pipelineUrl:"https://promptbook.studio/promptbook/prepare-knowledge-title.ptbk.md",promptbookVersion:"0.69.0-14",parameters:[{name:"knowledgePieceContent",description:"The content",isInput:true,isOutput:false},{name:"title",description:"The title of the document",isInput:false,isOutput:true}],templates:[{templateType:"PROMPT_TEMPLATE",name:"knowledge",title:"Knowledge",content:"You are experienced content creator, write best title for the document.\n\n# Rules\n\n- Write just title, nothing else\n- Title should be concise and clear\n- Write maximum 5 words for the title\n\n# The document\n\n> {knowledgePieceContent}",resultingParameterName:"title",expectations:{words:{min:1,max:8}},dependentParameterNames:["knowledgePieceContent"]}],knowledgeSources:[],knowledgePieces:[],personas:[],preparations:[],sourceFile:"./promptbook-collection/prepare-knowledge-title.ptbk.md"},{title:"Prepare Keywords",pipelineUrl:"https://promptbook.studio/promptbook/prepare-persona.ptbk.md",promptbookVersion:"0.69.0-14",parameters:[{name:"availableModelNames",description:"List of available model names separated by comma (,)",isInput:true,isOutput:false},{name:"personaDescription",description:"Description of the persona",isInput:true,isOutput:false},{name:"modelRequirements",description:"Specific requirements for the model",isInput:false,isOutput:true}],templates:[{templateType:"PROMPT_TEMPLATE",name:"make-model-requirements",title:"Make modelRequirements",content:"You are experienced AI engineer, you need to create virtual assistant.\nWrite\n\n## Sample\n\n```json\n{\n\"modelName\": \"gpt-4o\",\n\"systemMessage\": \"You are experienced AI engineer and helpfull assistant.\",\n\"temperature\": 0.7\n}\n```\n\n## Instructions\n\n- Your output format is JSON object\n- Write just the JSON object, no other text should be present\n- It contains the following keys:\n - `modelName`: The name of the model to use\n - `systemMessage`: The system message to provide context to the model\n - `temperature`: The sampling temperature to use\n\n### Key `modelName`\n\nPick from the following models:\n\n- {availableModelNames}\n\n### Key `systemMessage`\n\nThe system message is used to communicate instructions or provide context to the model at the beginning of a conversation. It is displayed in a different format compared to user messages, helping the model understand its role in the conversation. The system message typically guides the model's behavior, sets the tone, or specifies desired output from the model. By utilizing the system message effectively, users can steer the model towards generating more accurate and relevant responses.\n\nFor example:\n\n> You are an experienced AI engineer and helpful assistant.\n\n> You are a friendly and knowledgeable chatbot.\n\n### Key `temperature`\n\nThe sampling temperature, between 0 and 1. Higher values like 0.8 will make the output more random, while lower values like 0.2 will make it more focused and deterministic. If set to 0, the model will use log probability to automatically increase the temperature until certain thresholds are hit.\n\nYou can pick a value between 0 and 2. For example:\n\n- `0.1`: Low temperature, extremely conservative and deterministic\n- `0.5`: Medium temperature, balanced between conservative and creative\n- `1.0`: High temperature, creative and bit random\n- `1.5`: Very high temperature, extremely creative and often chaotic and unpredictable\n- `2.0`: Maximum temperature, completely random and unpredictable, for some extreme creative use cases\n\n# The assistant\n\nTake this description of the persona:\n\n> {personaDescription}",resultingParameterName:"modelRequirements",format:"JSON",dependentParameterNames:["availableModelNames","personaDescription"]}],knowledgeSources:[],knowledgePieces:[],personas:[],preparations:[],sourceFile:"./promptbook-collection/prepare-persona.ptbk.md"}];
|
|
900
900
|
|
|
901
901
|
/**
|
|
902
902
|
* This error indicates that the promptbook in a markdown format cannot be parsed into a valid promptbook object
|
|
@@ -1323,7 +1323,7 @@ function validatePipelineCore(pipeline) {
|
|
|
1323
1323
|
}
|
|
1324
1324
|
}
|
|
1325
1325
|
/**
|
|
1326
|
-
* TODO:
|
|
1326
|
+
* TODO: !!!!! [🧞♀️] Do not allow joker + foreach
|
|
1327
1327
|
* TODO: [🧠] Work with promptbookVersion
|
|
1328
1328
|
* TODO: Use here some json-schema, Zod or something similar and change it to:
|
|
1329
1329
|
* > /**
|
|
@@ -2135,9 +2135,10 @@ var MultipleLlmExecutionTools = /** @class */ (function () {
|
|
|
2135
2135
|
});
|
|
2136
2136
|
Object.defineProperty(MultipleLlmExecutionTools.prototype, "description", {
|
|
2137
2137
|
get: function () {
|
|
2138
|
-
return this.llmExecutionTools
|
|
2139
|
-
|
|
2140
|
-
.
|
|
2138
|
+
return this.llmExecutionTools.map(function (_a, index) {
|
|
2139
|
+
var title = _a.title;
|
|
2140
|
+
return "".concat(index + 1, ") `").concat(title, "`");
|
|
2141
|
+
}).join('\n');
|
|
2141
2142
|
},
|
|
2142
2143
|
enumerable: false,
|
|
2143
2144
|
configurable: true
|
|
@@ -2335,7 +2336,7 @@ var MultipleLlmExecutionTools = /** @class */ (function () {
|
|
|
2335
2336
|
throw new PipelineExecutionError("You have not provided any `LlmExecutionTools`");
|
|
2336
2337
|
}
|
|
2337
2338
|
else {
|
|
2338
|
-
throw new PipelineExecutionError(spaceTrim$1(function (block) { return "\n You have not provided any `LlmExecutionTools` that support model variant \"".concat(prompt.modelRequirements.modelVariant, "\n\n Available `LlmExecutionTools`:\n ").concat(block(_this.
|
|
2339
|
+
throw new PipelineExecutionError(spaceTrim$1(function (block) { return "\n You have not provided any `LlmExecutionTools` that support model variant \"".concat(prompt.modelRequirements.modelVariant, "\"\n\n Available `LlmExecutionTools`:\n ").concat(block(_this.description), "\n\n "); }));
|
|
2339
2340
|
}
|
|
2340
2341
|
}
|
|
2341
2342
|
});
|
|
@@ -5768,7 +5769,7 @@ var foreachCommandParser = {
|
|
|
5768
5769
|
/**
|
|
5769
5770
|
* Link to discussion
|
|
5770
5771
|
*/
|
|
5771
|
-
documentationUrl: 'https://github.com/webgptorg/promptbook/discussions
|
|
5772
|
+
documentationUrl: 'https://github.com/webgptorg/promptbook/discussions/148',
|
|
5772
5773
|
/**
|
|
5773
5774
|
* Example usages of the FOREACH command
|
|
5774
5775
|
*/
|
|
@@ -5776,7 +5777,6 @@ var foreachCommandParser = {
|
|
|
5776
5777
|
'FOREACH Text Line `{customers}` -> `{customer}`',
|
|
5777
5778
|
'FOR Csv Row `{customers}` -> `{firstName}`, `{lastName}`',
|
|
5778
5779
|
'EACH Csv Cell `{customers}` -> `{cell}`',
|
|
5779
|
-
// <- TODO: [🍭] !!!!!! More
|
|
5780
5780
|
],
|
|
5781
5781
|
/**
|
|
5782
5782
|
* Parses the FOREACH command
|
|
@@ -5791,7 +5791,6 @@ var foreachCommandParser = {
|
|
|
5791
5791
|
return __spreadArray([formatDefinition.formatName], __read((formatDefinition.aliases || [])), false).includes(formatName);
|
|
5792
5792
|
});
|
|
5793
5793
|
if (formatDefinition === undefined) {
|
|
5794
|
-
console.info({ args: args, formatName: formatName });
|
|
5795
5794
|
throw new ParseError(spaceTrim$1(function (block) { return "\n Unsupported format \"".concat(formatName, "\"\n\n Available formats:\n ").concat(block(FORMAT_DEFINITIONS.map(function (formatDefinition) { return formatDefinition.formatName; })
|
|
5796
5795
|
.map(function (formatName) { return "- ".concat(formatName); })
|
|
5797
5796
|
.join('\n')), "\n "); }));
|
|
@@ -5801,7 +5800,6 @@ var foreachCommandParser = {
|
|
|
5801
5800
|
return __spreadArray([subvalueDefinition.subvalueName], __read((subvalueDefinition.aliases || [])), false).includes(cellName);
|
|
5802
5801
|
});
|
|
5803
5802
|
if (subvalueDefinition === undefined) {
|
|
5804
|
-
console.info({ args: args, cellName: cellName });
|
|
5805
5803
|
throw new ParseError(spaceTrim$1(function (block) { return "\n Unsupported cell name \"".concat(cellName, "\" for format \"").concat(formatName, "\"\n\n Available cell names for format \"").concat(formatDefinition.formatName, "\":\n ").concat(block(formatDefinition.subvalueDefinitions
|
|
5806
5804
|
.map(function (subvalueDefinition) { return subvalueDefinition.subvalueName; })
|
|
5807
5805
|
.map(function (subvalueName) { return "- ".concat(subvalueName); })
|
|
@@ -5809,14 +5807,12 @@ var foreachCommandParser = {
|
|
|
5809
5807
|
// <- TODO: [🏢] List all supported cell names for the format
|
|
5810
5808
|
}
|
|
5811
5809
|
if (assignSign !== '->') {
|
|
5812
|
-
console.info({ args: args, assignSign: assignSign });
|
|
5813
5810
|
throw new ParseError("FOREACH command must have '->' to assign the value to the parameter");
|
|
5814
5811
|
}
|
|
5815
|
-
// TODO:
|
|
5812
|
+
// TODO: !!! Replace with propper parameter name validation `validateParameterName`
|
|
5816
5813
|
if ((parameterNameWrapped === null || parameterNameWrapped === void 0 ? void 0 : parameterNameWrapped.substring(0, 1)) !== '{' ||
|
|
5817
5814
|
(parameterNameWrapped === null || parameterNameWrapped === void 0 ? void 0 : parameterNameWrapped.substring(parameterNameWrapped.length - 1, parameterNameWrapped.length)) !== '}') {
|
|
5818
|
-
|
|
5819
|
-
throw new ParseError("!!!!!! 1 Here will be error (with rules and precise error) from validateParameterName");
|
|
5815
|
+
throw new ParseError("Invalid parameter name \"".concat(parameterNameWrapped, "\" - must be wrapped in curly brackets: {parameterName}"));
|
|
5820
5816
|
}
|
|
5821
5817
|
var parameterName = parameterNameWrapped.substring(1, parameterNameWrapped.length - 1);
|
|
5822
5818
|
var subparameterNames = args
|
|
@@ -5845,7 +5841,7 @@ var foreachCommandParser = {
|
|
|
5845
5841
|
// TODO: !!!!!! Detect double use
|
|
5846
5842
|
// TODO: !!!!!! Detect usage with JOKER and don't allow it
|
|
5847
5843
|
$templateJson.foreach = { formatName: formatName, cellName: cellName, parameterName: parameterName, subparameterNames: subparameterNames };
|
|
5848
|
-
keepUnused($pipelineJson); // <- TODO:
|
|
5844
|
+
keepUnused($pipelineJson); // <- TODO: [🧠] Maybe register subparameter from foreach into parameters of the pipeline
|
|
5849
5845
|
// Note: [🍭] FOREACH apply has some sideeffects on different places in codebase
|
|
5850
5846
|
},
|
|
5851
5847
|
/**
|
|
@@ -5868,7 +5864,6 @@ var foreachCommandParser = {
|
|
|
5868
5864
|
},
|
|
5869
5865
|
};
|
|
5870
5866
|
/**
|
|
5871
|
-
* TODO: !!!!!! Remove console logs
|
|
5872
5867
|
* TODO: [🧠][🦥] Better (less confusing) name for "cell" / "subvalue" / "subparameter"
|
|
5873
5868
|
* TODO: [🍭] !!!!!! Make .ptbk.md file with examples of the FOREACH command and also with wrong parsing and logic
|
|
5874
5869
|
*/
|