@promptbook/markdown-utils 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.
@@ -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: @@@ This command is used as formfactor for new commands - it should NOT be used in any `.book` file
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: [👷‍♂️] @@@ Manual about construction of llmTools
17
- * @@@ write discussion about this and storages
18
- * @@@ write how to combine multiple interceptors
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/markdown-utils",
3
- "version": "0.92.0-23",
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,
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-23';
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
@@ -232,11 +232,20 @@
232
232
  */
233
233
  const DEFAULT_MAX_FILE_SIZE = 100 * 1024 * 1024; // 100MB
234
234
  /**
235
- * @@@
235
+ * Threshold value that determines when a dataset is considered "big"
236
+ * and may require special handling or optimizations
237
+ *
238
+ * For example, when error occurs in one item of the big dataset, it will not fail the whole pipeline
236
239
  *
237
240
  * @public exported from `@promptbook/core`
238
241
  */
239
242
  const BIG_DATASET_TRESHOLD = 50;
243
+ /**
244
+ * Placeholder text used to represent a placeholder value of failed operation
245
+ *
246
+ * @public exported from `@promptbook/core`
247
+ */
248
+ const FAILED_VALUE_PLACEHOLDER = '!?';
240
249
  // <- TODO: [🧠] Better system for generator warnings - not always "code" and "by `@promptbook/cli`"
241
250
  /**
242
251
  * The maximum number of iterations for a loops
@@ -1614,7 +1623,7 @@
1614
1623
  /**
1615
1624
  * Constructs a pipeline collection from pipelines
1616
1625
  *
1617
- * @param pipelines @@@
1626
+ * @param pipelines Array of pipeline JSON objects to include in the collection
1618
1627
  *
1619
1628
  * Note: During the construction logic of all pipelines are validated
1620
1629
  * Note: It is not recommended to use this constructor directly, use `createCollectionFromJson` *(or other variant)* instead
@@ -2777,7 +2786,8 @@
2777
2786
  */
2778
2787
 
2779
2788
  /**
2780
- * @@@
2789
+ * Safely retrieves the global scope object (window in browser, global in Node.js)
2790
+ * regardless of the JavaScript environment in which the code is running
2781
2791
  *
2782
2792
  * Note: `$` is used to indicate that this function is not a pure function - it access global scope
2783
2793
  *
@@ -4264,6 +4274,15 @@
4264
4274
  mappedData.push(mappedRow);
4265
4275
  if (onProgress) {
4266
4276
  // Note: Report the CSV with all rows mapped so far
4277
+ /*
4278
+ !!!!
4279
+ // Report progress with updated value
4280
+ const progressData = mappedData.map((row, i) =>
4281
+ i > index ? { ...row, [outputParameterName]: PENDING_VALUE_PLACEHOLDER } : row,
4282
+ );
4283
+
4284
+
4285
+ */
4267
4286
  await onProgress(papaparse.unparse(mappedData, { ...settings, ...MANDATORY_CSV_SETTINGS }));
4268
4287
  }
4269
4288
  }
@@ -5170,7 +5189,7 @@
5170
5189
  `));
5171
5190
  if (length > BIG_DATASET_TRESHOLD) {
5172
5191
  console.error(highLevelError);
5173
- return '~';
5192
+ return FAILED_VALUE_PLACEHOLDER;
5174
5193
  }
5175
5194
  throw highLevelError;
5176
5195
  }
@@ -5201,7 +5220,7 @@
5201
5220
  ${block(pipelineIdentification)}
5202
5221
  Subparameter index: ${index}
5203
5222
  `));
5204
- return '~';
5223
+ return FAILED_VALUE_PLACEHOLDER;
5205
5224
  }
5206
5225
  throw error;
5207
5226
  }