@promptbook/documents 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 +25 -6
- 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 +25 -6
- 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/documents",
|
|
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/documents.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
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
* @generated
|
|
27
27
|
* @see https://github.com/webgptorg/promptbook
|
|
28
28
|
*/
|
|
29
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.92.0-
|
|
29
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.92.0-24';
|
|
30
30
|
/**
|
|
31
31
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
32
32
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -103,11 +103,20 @@
|
|
|
103
103
|
*/
|
|
104
104
|
const DEFAULT_MAX_FILE_SIZE = 100 * 1024 * 1024; // 100MB
|
|
105
105
|
/**
|
|
106
|
-
*
|
|
106
|
+
* Threshold value that determines when a dataset is considered "big"
|
|
107
|
+
* and may require special handling or optimizations
|
|
108
|
+
*
|
|
109
|
+
* For example, when error occurs in one item of the big dataset, it will not fail the whole pipeline
|
|
107
110
|
*
|
|
108
111
|
* @public exported from `@promptbook/core`
|
|
109
112
|
*/
|
|
110
113
|
const BIG_DATASET_TRESHOLD = 50;
|
|
114
|
+
/**
|
|
115
|
+
* Placeholder text used to represent a placeholder value of failed operation
|
|
116
|
+
*
|
|
117
|
+
* @public exported from `@promptbook/core`
|
|
118
|
+
*/
|
|
119
|
+
const FAILED_VALUE_PLACEHOLDER = '!?';
|
|
111
120
|
// <- TODO: [🧠] Better system for generator warnings - not always "code" and "by `@promptbook/cli`"
|
|
112
121
|
/**
|
|
113
122
|
* The maximum number of iterations for a loops
|
|
@@ -2131,7 +2140,7 @@
|
|
|
2131
2140
|
/**
|
|
2132
2141
|
* Constructs a pipeline collection from pipelines
|
|
2133
2142
|
*
|
|
2134
|
-
* @param pipelines
|
|
2143
|
+
* @param pipelines Array of pipeline JSON objects to include in the collection
|
|
2135
2144
|
*
|
|
2136
2145
|
* Note: During the construction logic of all pipelines are validated
|
|
2137
2146
|
* Note: It is not recommended to use this constructor directly, use `createCollectionFromJson` *(or other variant)* instead
|
|
@@ -3250,7 +3259,8 @@
|
|
|
3250
3259
|
*/
|
|
3251
3260
|
|
|
3252
3261
|
/**
|
|
3253
|
-
*
|
|
3262
|
+
* Safely retrieves the global scope object (window in browser, global in Node.js)
|
|
3263
|
+
* regardless of the JavaScript environment in which the code is running
|
|
3254
3264
|
*
|
|
3255
3265
|
* Note: `$` is used to indicate that this function is not a pure function - it access global scope
|
|
3256
3266
|
*
|
|
@@ -4341,6 +4351,15 @@
|
|
|
4341
4351
|
mappedData.push(mappedRow);
|
|
4342
4352
|
if (onProgress) {
|
|
4343
4353
|
// Note: Report the CSV with all rows mapped so far
|
|
4354
|
+
/*
|
|
4355
|
+
!!!!
|
|
4356
|
+
// Report progress with updated value
|
|
4357
|
+
const progressData = mappedData.map((row, i) =>
|
|
4358
|
+
i > index ? { ...row, [outputParameterName]: PENDING_VALUE_PLACEHOLDER } : row,
|
|
4359
|
+
);
|
|
4360
|
+
|
|
4361
|
+
|
|
4362
|
+
*/
|
|
4344
4363
|
await onProgress(papaparse.unparse(mappedData, { ...settings, ...MANDATORY_CSV_SETTINGS }));
|
|
4345
4364
|
}
|
|
4346
4365
|
}
|
|
@@ -5349,7 +5368,7 @@
|
|
|
5349
5368
|
`));
|
|
5350
5369
|
if (length > BIG_DATASET_TRESHOLD) {
|
|
5351
5370
|
console.error(highLevelError);
|
|
5352
|
-
return
|
|
5371
|
+
return FAILED_VALUE_PLACEHOLDER;
|
|
5353
5372
|
}
|
|
5354
5373
|
throw highLevelError;
|
|
5355
5374
|
}
|
|
@@ -5380,7 +5399,7 @@
|
|
|
5380
5399
|
${block(pipelineIdentification)}
|
|
5381
5400
|
Subparameter index: ${index}
|
|
5382
5401
|
`));
|
|
5383
|
-
return
|
|
5402
|
+
return FAILED_VALUE_PLACEHOLDER;
|
|
5384
5403
|
}
|
|
5385
5404
|
throw error;
|
|
5386
5405
|
}
|