@promptbook/cli 0.66.0-9 → 0.66.0
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 +15 -11
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/core.index.d.ts +2 -0
- package/esm/typings/src/config.d.ts +6 -0
- package/package.json +1 -1
- package/umd/index.umd.js +15 -11
- package/umd/index.umd.js.map +1 -1
|
@@ -17,6 +17,7 @@ import { PIPELINE_COLLECTION_BASE_FILENAME } from '../config';
|
|
|
17
17
|
import { RESERVED_PARAMETER_NAMES } from '../config';
|
|
18
18
|
import { DEFAULT_REMOTE_URL } from '../config';
|
|
19
19
|
import { DEFAULT_REMOTE_URL_PATH } from '../config';
|
|
20
|
+
import { IS_VERBOSE } from '../config';
|
|
20
21
|
import { pipelineJsonToString } from '../conversion/pipelineJsonToString';
|
|
21
22
|
import type { PipelineStringToJsonOptions } from '../conversion/pipelineStringToJson';
|
|
22
23
|
import { pipelineStringToJson } from '../conversion/pipelineStringToJson';
|
|
@@ -88,6 +89,7 @@ export { PIPELINE_COLLECTION_BASE_FILENAME };
|
|
|
88
89
|
export { RESERVED_PARAMETER_NAMES };
|
|
89
90
|
export { DEFAULT_REMOTE_URL };
|
|
90
91
|
export { DEFAULT_REMOTE_URL_PATH };
|
|
92
|
+
export { IS_VERBOSE };
|
|
91
93
|
export { pipelineJsonToString };
|
|
92
94
|
export type { PipelineStringToJsonOptions };
|
|
93
95
|
export { pipelineStringToJson };
|
|
@@ -119,6 +119,12 @@ export declare const DEFAULT_REMOTE_URL = "https://api.pavolhejny.com/";
|
|
|
119
119
|
* @public exported from `@promptbook/core`
|
|
120
120
|
*/
|
|
121
121
|
export declare const DEFAULT_REMOTE_URL_PATH = "/promptbook/socket.io";
|
|
122
|
+
/**
|
|
123
|
+
* @@@
|
|
124
|
+
*
|
|
125
|
+
* @public exported from `@promptbook/core`
|
|
126
|
+
*/
|
|
127
|
+
export declare const IS_VERBOSE = false;
|
|
122
128
|
/**
|
|
123
129
|
* @@@
|
|
124
130
|
*
|
package/package.json
CHANGED
package/umd/index.umd.js
CHANGED
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
/**
|
|
40
40
|
* The version of the Promptbook library
|
|
41
41
|
*/
|
|
42
|
-
var PROMPTBOOK_VERSION = '0.66.0-
|
|
42
|
+
var PROMPTBOOK_VERSION = '0.66.0-9';
|
|
43
43
|
// TODO: !!!! List here all the versions and annotate + put into script
|
|
44
44
|
|
|
45
45
|
/*! *****************************************************************************
|
|
@@ -354,6 +354,13 @@
|
|
|
354
354
|
* @public exported from `@promptbook/core`
|
|
355
355
|
*/
|
|
356
356
|
var DEFAULT_REMOTE_URL_PATH = '/promptbook/socket.io';
|
|
357
|
+
// <- TODO: [🧜♂️]
|
|
358
|
+
/**
|
|
359
|
+
* @@@
|
|
360
|
+
*
|
|
361
|
+
* @public exported from `@promptbook/core`
|
|
362
|
+
*/
|
|
363
|
+
var IS_VERBOSE = false;
|
|
357
364
|
/**
|
|
358
365
|
* TODO: [🧠][🧜♂️] Maybe join remoteUrl and path into single value
|
|
359
366
|
*/
|
|
@@ -886,7 +893,7 @@
|
|
|
886
893
|
});
|
|
887
894
|
}
|
|
888
895
|
|
|
889
|
-
var PipelineCollection = [{title:"Prepare Knowledge from Markdown",pipelineUrl:"https://promptbook.studio/promptbook/prepare-knowledge-from-markdown.ptbk.md",promptbookVersion:"0.66.0-
|
|
896
|
+
var PipelineCollection = [{title:"Prepare Knowledge from Markdown",pipelineUrl:"https://promptbook.studio/promptbook/prepare-knowledge-from-markdown.ptbk.md",promptbookVersion:"0.66.0-9",parameters:[{name:"knowledgeContent",description:"Markdown document content",isInput:true,isOutput:false},{name:"knowledgePieces",description:"The knowledge JSON object",isInput:false,isOutput:true}],promptTemplates:[{blockType:"PROMPT_TEMPLATE",name:"knowledge",title:"Knowledge",modelRequirements:{modelVariant:"CHAT",modelName:"claude-3-opus-20240229"},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}",dependentParameterNames:["knowledgeContent"],resultingParameterName:"knowledgePieces"}],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.66.0-9",parameters:[{name:"knowledgePieceContent",description:"The content",isInput:true,isOutput:false},{name:"keywords",description:"Keywords separated by comma",isInput:false,isOutput:true}],promptTemplates:[{blockType:"PROMPT_TEMPLATE",name:"knowledge",title:"Knowledge",modelRequirements:{modelVariant:"CHAT",modelName:"claude-3-opus-20240229"},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}",dependentParameterNames:["knowledgePieceContent"],resultingParameterName:"keywords"}],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.66.0-9",parameters:[{name:"knowledgePieceContent",description:"The content",isInput:true,isOutput:false},{name:"title",description:"The title of the document",isInput:false,isOutput:true}],promptTemplates:[{blockType:"PROMPT_TEMPLATE",name:"knowledge",title:"Knowledge",modelRequirements:{modelVariant:"CHAT",modelName:"claude-3-opus-20240229"},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}",expectations:{words:{min:1,max:8}},dependentParameterNames:["knowledgePieceContent"],resultingParameterName:"title"}],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.66.0-9",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}],promptTemplates:[{blockType:"PROMPT_TEMPLATE",name:"make-model-requirements",title:"Make modelRequirements",modelRequirements:{modelVariant:"CHAT",modelName:"gpt-4-turbo"},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### Option `modelName`\n\nPick from the following models:\n\n- {availableModelNames}\n\n### Option `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### Option `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}",expectFormat:"JSON",dependentParameterNames:["availableModelNames","personaDescription"],resultingParameterName:"modelRequirements"}],knowledgeSources:[],knowledgePieces:[],personas:[],preparations:[],sourceFile:"./promptbook-collection/prepare-persona.ptbk.md"}];
|
|
890
897
|
|
|
891
898
|
/**
|
|
892
899
|
* This error indicates that the promptbook in a markdown format cannot be parsed into a valid promptbook object
|
|
@@ -2743,7 +2750,7 @@
|
|
|
2743
2750
|
function createPipelineExecutor(options) {
|
|
2744
2751
|
var _this = this;
|
|
2745
2752
|
var pipeline = options.pipeline, tools = options.tools, _a = options.settings, settings = _a === void 0 ? {} : _a;
|
|
2746
|
-
var _b = settings.maxExecutionAttempts, maxExecutionAttempts = _b === void 0 ? MAX_EXECUTION_ATTEMPTS : _b, _c = settings.maxParallelCount, maxParallelCount = _c === void 0 ? MAX_PARALLEL_COUNT : _c, _d = settings.isVerbose, isVerbose = _d === void 0 ?
|
|
2753
|
+
var _b = settings.maxExecutionAttempts, maxExecutionAttempts = _b === void 0 ? MAX_EXECUTION_ATTEMPTS : _b, _c = settings.maxParallelCount, maxParallelCount = _c === void 0 ? MAX_PARALLEL_COUNT : _c, _d = settings.isVerbose, isVerbose = _d === void 0 ? IS_VERBOSE : _d, _e = settings.isNotPreparedWarningSupressed, isNotPreparedWarningSupressed = _e === void 0 ? false : _e;
|
|
2747
2754
|
validatePipeline(pipeline);
|
|
2748
2755
|
var llmTools = joinLlmExecutionTools.apply(void 0, __spreadArray([], __read(arrayableToArray(tools.llm)), false));
|
|
2749
2756
|
var preparedPipeline;
|
|
@@ -3538,7 +3545,7 @@
|
|
|
3538
3545
|
return __generator(this, function (_j) {
|
|
3539
3546
|
switch (_j.label) {
|
|
3540
3547
|
case 0:
|
|
3541
|
-
llmTools = options.llmTools, _a = options.maxParallelCount, maxParallelCount = _a === void 0 ? MAX_PARALLEL_COUNT : _a, _b = options.isVerbose, isVerbose = _b === void 0 ?
|
|
3548
|
+
llmTools = options.llmTools, _a = options.maxParallelCount, maxParallelCount = _a === void 0 ? MAX_PARALLEL_COUNT : _a, _b = options.isVerbose, isVerbose = _b === void 0 ? IS_VERBOSE : _b;
|
|
3542
3549
|
TODO_USE(maxParallelCount); // <- [🪂]
|
|
3543
3550
|
collection = createCollectionFromJson.apply(void 0, __spreadArray([], __read(PipelineCollection), false));
|
|
3544
3551
|
_c = createPipelineExecutor;
|
|
@@ -3825,7 +3832,7 @@
|
|
|
3825
3832
|
return __generator(this, function (_d) {
|
|
3826
3833
|
switch (_d.label) {
|
|
3827
3834
|
case 0:
|
|
3828
|
-
llmTools = options.llmTools, _a = options.isVerbose, isVerbose = _a === void 0 ?
|
|
3835
|
+
llmTools = options.llmTools, _a = options.isVerbose, isVerbose = _a === void 0 ? IS_VERBOSE : _a;
|
|
3829
3836
|
collection = createCollectionFromJson.apply(void 0, __spreadArray([], __read(PipelineCollection), false));
|
|
3830
3837
|
_b = createPipelineExecutor;
|
|
3831
3838
|
_c = {};
|
|
@@ -3982,7 +3989,7 @@
|
|
|
3982
3989
|
if (isPipelinePrepared(pipeline)) {
|
|
3983
3990
|
return [2 /*return*/, pipeline];
|
|
3984
3991
|
}
|
|
3985
|
-
llmTools = options.llmTools, _a = options.maxParallelCount, maxParallelCount = _a === void 0 ? MAX_PARALLEL_COUNT : _a, _b = options.isVerbose, isVerbose = _b === void 0 ?
|
|
3992
|
+
llmTools = options.llmTools, _a = options.maxParallelCount, maxParallelCount = _a === void 0 ? MAX_PARALLEL_COUNT : _a, _b = options.isVerbose, isVerbose = _b === void 0 ? IS_VERBOSE : _b;
|
|
3986
3993
|
parameters = pipeline.parameters, promptTemplates = pipeline.promptTemplates, knowledgeSources = pipeline.knowledgeSources, personas = pipeline.personas;
|
|
3987
3994
|
llmToolsWithUsage = countTotalUsage(llmTools);
|
|
3988
3995
|
currentPreparation = {
|
|
@@ -6338,7 +6345,7 @@
|
|
|
6338
6345
|
// TODO: !! Implement;
|
|
6339
6346
|
// TODO: [🌗]
|
|
6340
6347
|
}
|
|
6341
|
-
_a = options || {}, _b = _a.isRecursive, isRecursive = _b === void 0 ? true : _b, _c = _a.isVerbose, isVerbose = _c === void 0 ?
|
|
6348
|
+
_a = options || {}, _b = _a.isRecursive, isRecursive = _b === void 0 ? true : _b, _c = _a.isVerbose, isVerbose = _c === void 0 ? IS_VERBOSE : _c, _d = _a.isLazyLoaded, isLazyLoaded = _d === void 0 ? false : _d, _e = _a.isCrashedOnError, isCrashedOnError = _e === void 0 ? true : _e;
|
|
6342
6349
|
collection = createCollectionFromPromise(function () { return __awaiter(_this, void 0, void 0, function () {
|
|
6343
6350
|
var fileNames, collection, _loop_1, fileNames_1, fileNames_1_1, fileName, e_1_1;
|
|
6344
6351
|
var e_1, _a;
|
|
@@ -6713,13 +6720,10 @@
|
|
|
6713
6720
|
var packageName = registered.packageName, className = registered.className;
|
|
6714
6721
|
var existingRegistrationIndex = this.storage.findIndex(function (item) { return item.packageName === packageName && item.className === className; });
|
|
6715
6722
|
var existingRegistration = this.storage[existingRegistrationIndex];
|
|
6716
|
-
// TODO: !!!!!! Global IS_VERBOSE mode
|
|
6717
6723
|
if (!existingRegistration) {
|
|
6718
|
-
console.warn("[\uD83D\uDCE6] Registering `".concat(packageName, ".").concat(className, "` to `").concat(this.storageName, "`"));
|
|
6719
6724
|
this.storage.push(registered);
|
|
6720
6725
|
}
|
|
6721
6726
|
else {
|
|
6722
|
-
console.warn("[\uD83D\uDCE6] Re-registering `".concat(packageName, ".").concat(className, "` to `").concat(this.storageName, "`"));
|
|
6723
6727
|
this.storage[existingRegistrationIndex] = registered;
|
|
6724
6728
|
}
|
|
6725
6729
|
};
|
|
@@ -6849,7 +6853,7 @@
|
|
|
6849
6853
|
*/
|
|
6850
6854
|
function createLlmToolsFromConfiguration(configuration, options) {
|
|
6851
6855
|
if (options === void 0) { options = {}; }
|
|
6852
|
-
var _a = options.isVerbose, isVerbose = _a === void 0 ?
|
|
6856
|
+
var _a = options.isVerbose, isVerbose = _a === void 0 ? IS_VERBOSE : _a;
|
|
6853
6857
|
var llmTools = configuration.map(function (llmConfiguration) {
|
|
6854
6858
|
var registeredItem = $llmToolsRegister
|
|
6855
6859
|
.list()
|