@promptbook/pdf 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/pdf",
|
|
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/pdf.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
|
"crypto": "1.0.1",
|
package/umd/index.umd.js
CHANGED
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
* @generated
|
|
26
26
|
* @see https://github.com/webgptorg/promptbook
|
|
27
27
|
*/
|
|
28
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.92.0-
|
|
28
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.92.0-24';
|
|
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
|
|
@@ -102,11 +102,20 @@
|
|
|
102
102
|
*/
|
|
103
103
|
const DEFAULT_MAX_FILE_SIZE = 100 * 1024 * 1024; // 100MB
|
|
104
104
|
/**
|
|
105
|
-
*
|
|
105
|
+
* Threshold value that determines when a dataset is considered "big"
|
|
106
|
+
* and may require special handling or optimizations
|
|
107
|
+
*
|
|
108
|
+
* For example, when error occurs in one item of the big dataset, it will not fail the whole pipeline
|
|
106
109
|
*
|
|
107
110
|
* @public exported from `@promptbook/core`
|
|
108
111
|
*/
|
|
109
112
|
const BIG_DATASET_TRESHOLD = 50;
|
|
113
|
+
/**
|
|
114
|
+
* Placeholder text used to represent a placeholder value of failed operation
|
|
115
|
+
*
|
|
116
|
+
* @public exported from `@promptbook/core`
|
|
117
|
+
*/
|
|
118
|
+
const FAILED_VALUE_PLACEHOLDER = '!?';
|
|
110
119
|
// <- TODO: [🧠] Better system for generator warnings - not always "code" and "by `@promptbook/cli`"
|
|
111
120
|
/**
|
|
112
121
|
* The maximum number of iterations for a loops
|
|
@@ -1953,7 +1962,7 @@
|
|
|
1953
1962
|
/**
|
|
1954
1963
|
* Constructs a pipeline collection from pipelines
|
|
1955
1964
|
*
|
|
1956
|
-
* @param pipelines
|
|
1965
|
+
* @param pipelines Array of pipeline JSON objects to include in the collection
|
|
1957
1966
|
*
|
|
1958
1967
|
* Note: During the construction logic of all pipelines are validated
|
|
1959
1968
|
* Note: It is not recommended to use this constructor directly, use `createCollectionFromJson` *(or other variant)* instead
|
|
@@ -3090,7 +3099,8 @@
|
|
|
3090
3099
|
*/
|
|
3091
3100
|
|
|
3092
3101
|
/**
|
|
3093
|
-
*
|
|
3102
|
+
* Safely retrieves the global scope object (window in browser, global in Node.js)
|
|
3103
|
+
* regardless of the JavaScript environment in which the code is running
|
|
3094
3104
|
*
|
|
3095
3105
|
* Note: `$` is used to indicate that this function is not a pure function - it access global scope
|
|
3096
3106
|
*
|
|
@@ -4191,6 +4201,15 @@
|
|
|
4191
4201
|
mappedData.push(mappedRow);
|
|
4192
4202
|
if (onProgress) {
|
|
4193
4203
|
// Note: Report the CSV with all rows mapped so far
|
|
4204
|
+
/*
|
|
4205
|
+
!!!!
|
|
4206
|
+
// Report progress with updated value
|
|
4207
|
+
const progressData = mappedData.map((row, i) =>
|
|
4208
|
+
i > index ? { ...row, [outputParameterName]: PENDING_VALUE_PLACEHOLDER } : row,
|
|
4209
|
+
);
|
|
4210
|
+
|
|
4211
|
+
|
|
4212
|
+
*/
|
|
4194
4213
|
await onProgress(papaparse.unparse(mappedData, { ...settings, ...MANDATORY_CSV_SETTINGS }));
|
|
4195
4214
|
}
|
|
4196
4215
|
}
|
|
@@ -5199,7 +5218,7 @@
|
|
|
5199
5218
|
`));
|
|
5200
5219
|
if (length > BIG_DATASET_TRESHOLD) {
|
|
5201
5220
|
console.error(highLevelError);
|
|
5202
|
-
return
|
|
5221
|
+
return FAILED_VALUE_PLACEHOLDER;
|
|
5203
5222
|
}
|
|
5204
5223
|
throw highLevelError;
|
|
5205
5224
|
}
|
|
@@ -5230,7 +5249,7 @@
|
|
|
5230
5249
|
${block(pipelineIdentification)}
|
|
5231
5250
|
Subparameter index: ${index}
|
|
5232
5251
|
`));
|
|
5233
|
-
return
|
|
5252
|
+
return FAILED_VALUE_PLACEHOLDER;
|
|
5234
5253
|
}
|
|
5235
5254
|
throw error;
|
|
5236
5255
|
}
|