@promptbook/node 0.92.0-23 → 0.92.0-24
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 +30 -10
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/collection/PipelineCollection.d.ts +0 -2
- package/esm/typings/src/collection/SimplePipelineCollection.d.ts +1 -1
- package/esm/typings/src/commands/FORMFACTOR/formfactorCommandParser.d.ts +1 -1
- package/esm/typings/src/config.d.ts +8 -4
- package/esm/typings/src/formats/_common/FormatSubvalueParser.d.ts +10 -10
- package/esm/typings/src/formfactors/_boilerplate/BoilerplateFormfactorDefinition.d.ts +3 -2
- package/esm/typings/src/formfactors/_common/string_formfactor_name.d.ts +2 -1
- package/esm/typings/src/formfactors/index.d.ts +1 -1
- package/esm/typings/src/formfactors/sheets/SheetsFormfactorDefinition.d.ts +3 -2
- package/esm/typings/src/llm-providers/_common/utils/cache/cacheLlmTools.d.ts +3 -3
- package/esm/typings/src/utils/environment/$getGlobalScope.d.ts +2 -1
- package/package.json +2 -2
- package/umd/index.umd.js +30 -10
- package/umd/index.umd.js.map +1 -1
|
@@ -4,8 +4,6 @@ import type { Prompt } from '../types/Prompt';
|
|
|
4
4
|
import type { string_pipeline_url } from '../types/typeAliases';
|
|
5
5
|
/**
|
|
6
6
|
* Collection that groups together pipelines, knowledge, personas, tools and actions
|
|
7
|
-
*
|
|
8
|
-
* @see @@@ https://github.com/webgptorg/pipeline#pipeline-collection
|
|
9
7
|
*/
|
|
10
8
|
export type PipelineCollection = {
|
|
11
9
|
/**
|
|
@@ -14,7 +14,7 @@ export declare class SimplePipelineCollection implements PipelineCollection {
|
|
|
14
14
|
/**
|
|
15
15
|
* Constructs a pipeline collection from pipelines
|
|
16
16
|
*
|
|
17
|
-
* @param pipelines
|
|
17
|
+
* @param pipelines Array of pipeline JSON objects to include in the collection
|
|
18
18
|
*
|
|
19
19
|
* Note: During the construction logic of all pipelines are validated
|
|
20
20
|
* Note: It is not recommended to use this constructor directly, use `createCollectionFromJson` *(or other variant)* instead
|
|
@@ -3,7 +3,7 @@ import type { FormfactorCommand } from './FormfactorCommand';
|
|
|
3
3
|
/**
|
|
4
4
|
* Parses the formfactor command
|
|
5
5
|
*
|
|
6
|
-
* Note:
|
|
6
|
+
* Note: This command is used as a formfactor for new commands and defines the app type format - it should NOT be used in any `.book` file
|
|
7
7
|
*
|
|
8
8
|
* @see `documentationUrl` for more details
|
|
9
9
|
* @public exported from `@promptbook/editable`
|
|
@@ -69,19 +69,23 @@ export declare const DEFAULT_BOOK_OUTPUT_PARAMETER_NAME = "result";
|
|
|
69
69
|
*/
|
|
70
70
|
export declare const DEFAULT_MAX_FILE_SIZE: number;
|
|
71
71
|
/**
|
|
72
|
-
*
|
|
72
|
+
* Threshold value that determines when a dataset is considered "big"
|
|
73
|
+
* and may require special handling or optimizations
|
|
74
|
+
*
|
|
75
|
+
* For example, when error occurs in one item of the big dataset, it will not fail the whole pipeline
|
|
73
76
|
*
|
|
74
77
|
* @public exported from `@promptbook/core`
|
|
75
78
|
*/
|
|
76
79
|
export declare const BIG_DATASET_TRESHOLD = 50;
|
|
77
80
|
/**
|
|
78
|
-
*
|
|
81
|
+
* Placeholder text used to represent a placeholder value of failed operation
|
|
79
82
|
*
|
|
80
83
|
* @public exported from `@promptbook/core`
|
|
81
84
|
*/
|
|
82
|
-
export declare const FAILED_VALUE_PLACEHOLDER = "
|
|
85
|
+
export declare const FAILED_VALUE_PLACEHOLDER = "!?";
|
|
83
86
|
/**
|
|
84
|
-
*
|
|
87
|
+
* Placeholder text used to represent operations or values that are still in progress
|
|
88
|
+
* or awaiting completion in UI displays and logging
|
|
85
89
|
*
|
|
86
90
|
* @public exported from `@promptbook/core`
|
|
87
91
|
*/
|
|
@@ -32,32 +32,32 @@ export type FormatSubvalueParser<TValue extends string, TSettings extends empty_
|
|
|
32
32
|
*/
|
|
33
33
|
export type FormatSubvalueParserMapValuesOptions<TValue extends string, TSettings extends empty_object> = {
|
|
34
34
|
/**
|
|
35
|
-
*
|
|
35
|
+
* The input string value to parse for subvalues
|
|
36
36
|
*/
|
|
37
37
|
readonly value: TValue;
|
|
38
38
|
/**
|
|
39
|
-
*
|
|
39
|
+
* The name of the output parameter where the processed value will be stored
|
|
40
40
|
*/
|
|
41
41
|
readonly outputParameterName: string_parameter_name;
|
|
42
42
|
/**
|
|
43
|
-
*
|
|
43
|
+
* Format-specific settings that control how subvalues are parsed or processed
|
|
44
44
|
*/
|
|
45
45
|
readonly settings: TSettings;
|
|
46
46
|
/**
|
|
47
|
-
*
|
|
47
|
+
* Callback function that processes each subvalue and returns the transformed value
|
|
48
48
|
*
|
|
49
|
-
* @param subvalues
|
|
49
|
+
* @param subvalues Object containing the extracted subvalues
|
|
50
50
|
* @param index Current index of the subvalue which is being mapped
|
|
51
51
|
* @param length Full length of the subvalues
|
|
52
|
-
* @param number
|
|
53
|
-
* @returns
|
|
52
|
+
* @param number Total number of subvalues to process
|
|
53
|
+
* @returns Transformed value after processing
|
|
54
54
|
*/
|
|
55
55
|
mapCallback(subvalues: Parameters, index: number, length: number): Promisable<TValue>;
|
|
56
56
|
/**
|
|
57
|
-
*
|
|
57
|
+
* Progress callback that receives partial results during processing
|
|
58
58
|
*
|
|
59
|
-
* @param partialResultString
|
|
60
|
-
* @returns
|
|
59
|
+
* @param partialResultString The current partial result as processing progresses
|
|
60
|
+
* @returns Promise or void to continue execution
|
|
61
61
|
*/
|
|
62
62
|
onProgress(partialResultString: TValue): Promisable<void>;
|
|
63
63
|
};
|
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Boilerplate is form of app that
|
|
2
|
+
* Boilerplate is form of app that serves as a template structure for creating other formfactors
|
|
3
|
+
* and should not be used directly in production.
|
|
3
4
|
*
|
|
4
5
|
* @public exported from `@promptbook/core`
|
|
5
6
|
*/
|
|
6
7
|
export declare const BoilerplateFormfactorDefinition: {
|
|
7
8
|
readonly name: "BOILERPLATE";
|
|
8
|
-
readonly description: "
|
|
9
|
+
readonly description: "A template structure for creating new formfactors, providing the base architecture and interfaces that should be implemented.";
|
|
9
10
|
readonly documentationUrl: "https://github.com/webgptorg/promptbook/discussions/@@";
|
|
10
11
|
readonly pipelineInterface: {
|
|
11
12
|
readonly inputParameters: readonly [];
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import type { FormfactorDefinition } from './FormfactorDefinition';
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* A type alias representing the name of a formfactor, used for type checking and validation
|
|
4
|
+
* in the formfactor registry and selection processes
|
|
4
5
|
*/
|
|
5
6
|
export type string_formfactor_name = FormfactorDefinition['name'];
|
|
@@ -71,7 +71,7 @@ export declare const FORMFACTOR_DEFINITIONS: readonly [{
|
|
|
71
71
|
}, {
|
|
72
72
|
readonly name: "SHEETS";
|
|
73
73
|
readonly aliasNames: readonly ["SHEETS", "SHEET"];
|
|
74
|
-
readonly description: "
|
|
74
|
+
readonly description: "A formfactor for processing spreadsheet-like data in CSV format, enabling AI transformations on tabular data";
|
|
75
75
|
readonly documentationUrl: "https://github.com/webgptorg/promptbook/discussions/176";
|
|
76
76
|
readonly pipelineInterface: {
|
|
77
77
|
readonly inputParameters: readonly [{
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Sheets is form of app that
|
|
2
|
+
* Sheets is form of app that processes tabular data in CSV format, allowing transformation
|
|
3
|
+
* and analysis of structured data through AI-powered operations
|
|
3
4
|
*
|
|
4
5
|
* @public exported from `@promptbook/core`
|
|
5
6
|
*/
|
|
6
7
|
export declare const SheetsFormfactorDefinition: {
|
|
7
8
|
readonly name: "SHEETS";
|
|
8
9
|
readonly aliasNames: readonly ["SHEETS", "SHEET"];
|
|
9
|
-
readonly description: "
|
|
10
|
+
readonly description: "A formfactor for processing spreadsheet-like data in CSV format, enabling AI transformations on tabular data";
|
|
10
11
|
readonly documentationUrl: "https://github.com/webgptorg/promptbook/discussions/176";
|
|
11
12
|
readonly pipelineInterface: {
|
|
12
13
|
readonly inputParameters: readonly [{
|
|
@@ -13,7 +13,7 @@ export declare function cacheLlmTools<TLlmTools extends LlmExecutionTools>(llmTo
|
|
|
13
13
|
/**
|
|
14
14
|
* TODO: [🧠][💸] Maybe make some common abstraction `interceptLlmTools` and use here (or use javascript Proxy?)
|
|
15
15
|
* TODO: [🧠] Is there some meaningfull way how to test this util
|
|
16
|
-
* TODO: [👷♂️]
|
|
17
|
-
*
|
|
18
|
-
*
|
|
16
|
+
* TODO: [👷♂️] Comprehensive manual about construction of llmTools
|
|
17
|
+
* Detailed explanation about caching strategies and appropriate storage selection for different use cases
|
|
18
|
+
* Examples of how to combine multiple interceptors for advanced caching, logging, and usage tracking
|
|
19
19
|
*/
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { really_any } from '../organization/really_any';
|
|
2
2
|
/**
|
|
3
|
-
*
|
|
3
|
+
* Safely retrieves the global scope object (window in browser, global in Node.js)
|
|
4
|
+
* regardless of the JavaScript environment in which the code is running
|
|
4
5
|
*
|
|
5
6
|
* Note: `$` is used to indicate that this function is not a pure function - it access global scope
|
|
6
7
|
*
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@promptbook/node",
|
|
3
|
-
"version": "0.92.0-
|
|
3
|
+
"version": "0.92.0-24",
|
|
4
4
|
"description": "It's time for a paradigm shift. The future of software in plain English, French or Latin",
|
|
5
5
|
"private": false,
|
|
6
6
|
"sideEffects": false,
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"module": "./esm/index.es.js",
|
|
52
52
|
"typings": "./esm/typings/src/_packages/node.index.d.ts",
|
|
53
53
|
"peerDependencies": {
|
|
54
|
-
"@promptbook/core": "0.92.0-
|
|
54
|
+
"@promptbook/core": "0.92.0-24"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
57
|
"colors": "1.4.0",
|
package/umd/index.umd.js
CHANGED
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
* @generated
|
|
47
47
|
* @see https://github.com/webgptorg/promptbook
|
|
48
48
|
*/
|
|
49
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.92.0-
|
|
49
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.92.0-24';
|
|
50
50
|
/**
|
|
51
51
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
52
52
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -118,11 +118,20 @@
|
|
|
118
118
|
*/
|
|
119
119
|
const DEFAULT_MAX_FILE_SIZE = 100 * 1024 * 1024; // 100MB
|
|
120
120
|
/**
|
|
121
|
-
*
|
|
121
|
+
* Threshold value that determines when a dataset is considered "big"
|
|
122
|
+
* and may require special handling or optimizations
|
|
123
|
+
*
|
|
124
|
+
* For example, when error occurs in one item of the big dataset, it will not fail the whole pipeline
|
|
122
125
|
*
|
|
123
126
|
* @public exported from `@promptbook/core`
|
|
124
127
|
*/
|
|
125
128
|
const BIG_DATASET_TRESHOLD = 50;
|
|
129
|
+
/**
|
|
130
|
+
* Placeholder text used to represent a placeholder value of failed operation
|
|
131
|
+
*
|
|
132
|
+
* @public exported from `@promptbook/core`
|
|
133
|
+
*/
|
|
134
|
+
const FAILED_VALUE_PLACEHOLDER = '!?';
|
|
126
135
|
// <- TODO: [🧠] Better system for generator warnings - not always "code" and "by `@promptbook/cli`"
|
|
127
136
|
/**
|
|
128
137
|
* The maximum number of iterations for a loops
|
|
@@ -1552,7 +1561,7 @@
|
|
|
1552
1561
|
/**
|
|
1553
1562
|
* Constructs a pipeline collection from pipelines
|
|
1554
1563
|
*
|
|
1555
|
-
* @param pipelines
|
|
1564
|
+
* @param pipelines Array of pipeline JSON objects to include in the collection
|
|
1556
1565
|
*
|
|
1557
1566
|
* Note: During the construction logic of all pipelines are validated
|
|
1558
1567
|
* Note: It is not recommended to use this constructor directly, use `createCollectionFromJson` *(or other variant)* instead
|
|
@@ -2642,6 +2651,15 @@
|
|
|
2642
2651
|
mappedData.push(mappedRow);
|
|
2643
2652
|
if (onProgress) {
|
|
2644
2653
|
// Note: Report the CSV with all rows mapped so far
|
|
2654
|
+
/*
|
|
2655
|
+
!!!!
|
|
2656
|
+
// Report progress with updated value
|
|
2657
|
+
const progressData = mappedData.map((row, i) =>
|
|
2658
|
+
i > index ? { ...row, [outputParameterName]: PENDING_VALUE_PLACEHOLDER } : row,
|
|
2659
|
+
);
|
|
2660
|
+
|
|
2661
|
+
|
|
2662
|
+
*/
|
|
2645
2663
|
await onProgress(papaparse.unparse(mappedData, { ...settings, ...MANDATORY_CSV_SETTINGS }));
|
|
2646
2664
|
}
|
|
2647
2665
|
}
|
|
@@ -4139,7 +4157,7 @@
|
|
|
4139
4157
|
`));
|
|
4140
4158
|
if (length > BIG_DATASET_TRESHOLD) {
|
|
4141
4159
|
console.error(highLevelError);
|
|
4142
|
-
return
|
|
4160
|
+
return FAILED_VALUE_PLACEHOLDER;
|
|
4143
4161
|
}
|
|
4144
4162
|
throw highLevelError;
|
|
4145
4163
|
}
|
|
@@ -4170,7 +4188,7 @@
|
|
|
4170
4188
|
${block(pipelineIdentification)}
|
|
4171
4189
|
Subparameter index: ${index}
|
|
4172
4190
|
`));
|
|
4173
|
-
return
|
|
4191
|
+
return FAILED_VALUE_PLACEHOLDER;
|
|
4174
4192
|
}
|
|
4175
4193
|
throw error;
|
|
4176
4194
|
}
|
|
@@ -5009,7 +5027,8 @@
|
|
|
5009
5027
|
*/
|
|
5010
5028
|
|
|
5011
5029
|
/**
|
|
5012
|
-
*
|
|
5030
|
+
* Safely retrieves the global scope object (window in browser, global in Node.js)
|
|
5031
|
+
* regardless of the JavaScript environment in which the code is running
|
|
5013
5032
|
*
|
|
5014
5033
|
* Note: `$` is used to indicate that this function is not a pure function - it access global scope
|
|
5015
5034
|
*
|
|
@@ -7176,14 +7195,15 @@
|
|
|
7176
7195
|
};
|
|
7177
7196
|
|
|
7178
7197
|
/**
|
|
7179
|
-
* Sheets is form of app that
|
|
7198
|
+
* Sheets is form of app that processes tabular data in CSV format, allowing transformation
|
|
7199
|
+
* and analysis of structured data through AI-powered operations
|
|
7180
7200
|
*
|
|
7181
7201
|
* @public exported from `@promptbook/core`
|
|
7182
7202
|
*/
|
|
7183
7203
|
const SheetsFormfactorDefinition = {
|
|
7184
7204
|
name: 'SHEETS',
|
|
7185
7205
|
aliasNames: ['SHEETS', 'SHEET'],
|
|
7186
|
-
description:
|
|
7206
|
+
description: `A formfactor for processing spreadsheet-like data in CSV format, enabling AI transformations on tabular data`,
|
|
7187
7207
|
documentationUrl: `https://github.com/webgptorg/promptbook/discussions/176`,
|
|
7188
7208
|
pipelineInterface: {
|
|
7189
7209
|
inputParameters: [
|
|
@@ -7259,7 +7279,7 @@
|
|
|
7259
7279
|
/**
|
|
7260
7280
|
* Parses the formfactor command
|
|
7261
7281
|
*
|
|
7262
|
-
* Note:
|
|
7282
|
+
* Note: This command is used as a formfactor for new commands and defines the app type format - it should NOT be used in any `.book` file
|
|
7263
7283
|
*
|
|
7264
7284
|
* @see `documentationUrl` for more details
|
|
7265
7285
|
* @public exported from `@promptbook/editable`
|
|
@@ -7281,7 +7301,7 @@
|
|
|
7281
7301
|
/**
|
|
7282
7302
|
* Description of the FORMFACTOR command
|
|
7283
7303
|
*/
|
|
7284
|
-
description:
|
|
7304
|
+
description: `Specifies the application type and interface requirements that this promptbook should conform to`,
|
|
7285
7305
|
/**
|
|
7286
7306
|
* Link to documentation
|
|
7287
7307
|
*/
|