@promptbook/node 0.88.0-1 → 0.88.0-9
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/README.md +3 -26
- package/esm/index.es.js +82 -9
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/types.index.d.ts +2 -0
- package/esm/typings/src/_packages/utils.index.d.ts +2 -0
- package/esm/typings/src/cli/cli-commands/common/handleActionErrors.d.ts +11 -0
- package/esm/typings/src/execution/ExecutionTask.d.ts +24 -0
- package/esm/typings/src/utils/serialization/jsonStringsToJsons.d.ts +9 -0
- package/esm/typings/src/utils/serialization/jsonStringsToJsons.test.d.ts +1 -0
- package/package.json +2 -2
- package/umd/index.umd.js +81 -8
- package/umd/index.umd.js.map +1 -1
|
@@ -40,6 +40,7 @@ import type { ExecutionReportString } from '../execution/execution-report/Execut
|
|
|
40
40
|
import type { ExecutionReportStringOptions } from '../execution/execution-report/ExecutionReportStringOptions';
|
|
41
41
|
import type { ExecutionTask } from '../execution/ExecutionTask';
|
|
42
42
|
import type { PreparationTask } from '../execution/ExecutionTask';
|
|
43
|
+
import type { task_status } from '../execution/ExecutionTask';
|
|
43
44
|
import type { AbstractTask } from '../execution/ExecutionTask';
|
|
44
45
|
import type { Task } from '../execution/ExecutionTask';
|
|
45
46
|
import type { ExecutionTools } from '../execution/ExecutionTools';
|
|
@@ -322,6 +323,7 @@ export type { ExecutionReportString };
|
|
|
322
323
|
export type { ExecutionReportStringOptions };
|
|
323
324
|
export type { ExecutionTask };
|
|
324
325
|
export type { PreparationTask };
|
|
326
|
+
export type { task_status };
|
|
325
327
|
export type { AbstractTask };
|
|
326
328
|
export type { Task };
|
|
327
329
|
export type { ExecutionTools };
|
|
@@ -62,6 +62,7 @@ import { clonePipeline } from '../utils/serialization/clonePipeline';
|
|
|
62
62
|
import { deepClone } from '../utils/serialization/deepClone';
|
|
63
63
|
import { exportJson } from '../utils/serialization/exportJson';
|
|
64
64
|
import { isSerializableAsJson } from '../utils/serialization/isSerializableAsJson';
|
|
65
|
+
import { jsonStringsToJsons } from '../utils/serialization/jsonStringsToJsons';
|
|
65
66
|
import { difference } from '../utils/sets/difference';
|
|
66
67
|
import { intersection } from '../utils/sets/intersection';
|
|
67
68
|
import { union } from '../utils/sets/union';
|
|
@@ -143,6 +144,7 @@ export { clonePipeline };
|
|
|
143
144
|
export { deepClone };
|
|
144
145
|
export { exportJson };
|
|
145
146
|
export { isSerializableAsJson };
|
|
147
|
+
export { jsonStringsToJsons };
|
|
146
148
|
export { difference };
|
|
147
149
|
export { intersection };
|
|
148
150
|
export { union };
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import type { Command as Program } from 'commander';
|
|
2
|
+
type actionCallbackFunction = Parameters<Program['action']>[0];
|
|
3
|
+
/**
|
|
4
|
+
* Wraps action to handle error console logging and exit process with error code
|
|
5
|
+
*
|
|
6
|
+
* @param action Action to be wrapped in error handling
|
|
7
|
+
* @returns Wrapped action
|
|
8
|
+
* @private internal helper function for CLI commands
|
|
9
|
+
*/
|
|
10
|
+
export declare function handleActionErrors(action: actionCallbackFunction): actionCallbackFunction;
|
|
11
|
+
export {};
|
|
@@ -40,6 +40,10 @@ export type PreparationTask = AbstractTask<PipelineExecutorResult> & {
|
|
|
40
40
|
readonly taskType: 'PREPARATION';
|
|
41
41
|
readonly taskId: `prep-${task_id}`;
|
|
42
42
|
};
|
|
43
|
+
/**
|
|
44
|
+
* Status of a task
|
|
45
|
+
*/
|
|
46
|
+
export type task_status = 'RUNNING' | 'FINISHED' | 'ERROR';
|
|
43
47
|
/**
|
|
44
48
|
* Base interface for all task types
|
|
45
49
|
*/
|
|
@@ -52,6 +56,18 @@ export type AbstractTask<TTaskResult extends AbstractTaskResult> = {
|
|
|
52
56
|
* Unique identifier for the task
|
|
53
57
|
*/
|
|
54
58
|
readonly taskId: task_id;
|
|
59
|
+
/**
|
|
60
|
+
* Status of the task
|
|
61
|
+
*/
|
|
62
|
+
readonly status: task_status;
|
|
63
|
+
/**
|
|
64
|
+
* Date when the task was created
|
|
65
|
+
*/
|
|
66
|
+
readonly createdAt: Date;
|
|
67
|
+
/**
|
|
68
|
+
* Date when the task was last updated
|
|
69
|
+
*/
|
|
70
|
+
readonly updatedAt: Date;
|
|
55
71
|
/**
|
|
56
72
|
* Gets a promise that resolves with the task result
|
|
57
73
|
*/
|
|
@@ -66,6 +82,14 @@ export type AbstractTask<TTaskResult extends AbstractTaskResult> = {
|
|
|
66
82
|
* Gets just the current value which is mutated during the task processing
|
|
67
83
|
*/
|
|
68
84
|
currentValue: PartialDeep<TTaskResult>;
|
|
85
|
+
/**
|
|
86
|
+
* List of errors that occurred during the task processing
|
|
87
|
+
*/
|
|
88
|
+
readonly errors: Array<Error>;
|
|
89
|
+
/**
|
|
90
|
+
* List of warnings that occurred during the task processing
|
|
91
|
+
*/
|
|
92
|
+
readonly warnings: Array<Error>;
|
|
69
93
|
};
|
|
70
94
|
export type Task = ExecutionTask | PreparationTask;
|
|
71
95
|
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@promptbook/node",
|
|
3
|
-
"version": "0.88.0-
|
|
3
|
+
"version": "0.88.0-9",
|
|
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,
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"module": "./esm/index.es.js",
|
|
48
48
|
"typings": "./esm/typings/src/_packages/node.index.d.ts",
|
|
49
49
|
"peerDependencies": {
|
|
50
|
-
"@promptbook/core": "0.88.0-
|
|
50
|
+
"@promptbook/core": "0.88.0-9"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"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.88.0-
|
|
49
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.88.0-9';
|
|
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
|
|
@@ -1621,6 +1621,36 @@
|
|
|
1621
1621
|
* TODO: Maybe use nanoid instead https://github.com/ai/nanoid
|
|
1622
1622
|
*/
|
|
1623
1623
|
|
|
1624
|
+
/**
|
|
1625
|
+
* Recursively converts JSON strings to JSON objects
|
|
1626
|
+
|
|
1627
|
+
* @public exported from `@promptbook/utils`
|
|
1628
|
+
*/
|
|
1629
|
+
function jsonStringsToJsons(object) {
|
|
1630
|
+
if (object === null) {
|
|
1631
|
+
return object;
|
|
1632
|
+
}
|
|
1633
|
+
if (Array.isArray(object)) {
|
|
1634
|
+
return object.map(jsonStringsToJsons);
|
|
1635
|
+
}
|
|
1636
|
+
if (typeof object !== 'object') {
|
|
1637
|
+
return object;
|
|
1638
|
+
}
|
|
1639
|
+
const newObject = { ...object };
|
|
1640
|
+
for (const [key, value] of Object.entries(object)) {
|
|
1641
|
+
if (typeof value === 'string' && isValidJsonString(value)) {
|
|
1642
|
+
newObject[key] = JSON.parse(value);
|
|
1643
|
+
}
|
|
1644
|
+
else {
|
|
1645
|
+
newObject[key] = jsonStringsToJsons(value);
|
|
1646
|
+
}
|
|
1647
|
+
}
|
|
1648
|
+
return newObject;
|
|
1649
|
+
}
|
|
1650
|
+
/**
|
|
1651
|
+
* TODO: Type the return type correctly
|
|
1652
|
+
*/
|
|
1653
|
+
|
|
1624
1654
|
/**
|
|
1625
1655
|
* This error indicates errors during the execution of the pipeline
|
|
1626
1656
|
*
|
|
@@ -1886,21 +1916,43 @@
|
|
|
1886
1916
|
function createTask(options) {
|
|
1887
1917
|
const { taskType, taskProcessCallback } = options;
|
|
1888
1918
|
const taskId = `${taskType.toLowerCase().substring(0, 4)}-${$randomToken(8 /* <- TODO: To global config + Use Base58 to avoid simmilar char conflicts */)}`;
|
|
1889
|
-
|
|
1919
|
+
let status = 'RUNNING';
|
|
1920
|
+
const createdAt = new Date();
|
|
1921
|
+
let updatedAt = createdAt;
|
|
1922
|
+
const errors = [];
|
|
1923
|
+
const warnings = [];
|
|
1924
|
+
let currentValue = {};
|
|
1925
|
+
const partialResultSubject = new rxjs.Subject();
|
|
1926
|
+
// <- Note: Not using `BehaviorSubject` because on error we can't access the last value
|
|
1890
1927
|
const finalResultPromise = /* not await */ taskProcessCallback((newOngoingResult) => {
|
|
1928
|
+
Object.assign(currentValue, newOngoingResult);
|
|
1929
|
+
// <- TODO: assign deep
|
|
1891
1930
|
partialResultSubject.next(newOngoingResult);
|
|
1892
1931
|
});
|
|
1893
1932
|
finalResultPromise
|
|
1894
1933
|
.catch((error) => {
|
|
1934
|
+
errors.push(error);
|
|
1895
1935
|
partialResultSubject.error(error);
|
|
1896
1936
|
})
|
|
1897
|
-
.then((
|
|
1898
|
-
if (
|
|
1937
|
+
.then((executionResult) => {
|
|
1938
|
+
if (executionResult) {
|
|
1899
1939
|
try {
|
|
1900
|
-
|
|
1901
|
-
|
|
1940
|
+
updatedAt = new Date();
|
|
1941
|
+
errors.push(...executionResult.errors);
|
|
1942
|
+
warnings.push(...executionResult.warnings);
|
|
1943
|
+
// <- TODO: !!! Only unique errors and warnings should be added (or filtered)
|
|
1944
|
+
// TODO: [🧠] !!! errors, warning, isSuccessful are redundant both in `ExecutionTask` and `ExecutionTask.currentValue`
|
|
1945
|
+
// Also maybe move `ExecutionTask.currentValue.usage` -> `ExecutionTask.usage`
|
|
1946
|
+
// And delete `ExecutionTask.currentValue.preparedPipeline`
|
|
1947
|
+
assertsTaskSuccessful(executionResult);
|
|
1948
|
+
status = 'FINISHED';
|
|
1949
|
+
currentValue = jsonStringsToJsons(executionResult);
|
|
1950
|
+
// <- TODO: Convert JSON values in string to JSON objects
|
|
1951
|
+
partialResultSubject.next(executionResult);
|
|
1902
1952
|
}
|
|
1903
1953
|
catch (error) {
|
|
1954
|
+
status = 'ERROR';
|
|
1955
|
+
errors.push(error);
|
|
1904
1956
|
partialResultSubject.error(error);
|
|
1905
1957
|
}
|
|
1906
1958
|
}
|
|
@@ -1917,12 +1969,33 @@
|
|
|
1917
1969
|
return {
|
|
1918
1970
|
taskType,
|
|
1919
1971
|
taskId,
|
|
1972
|
+
get status() {
|
|
1973
|
+
return status;
|
|
1974
|
+
// <- Note: [1] Theese must be getters to allow changing the value in the future
|
|
1975
|
+
},
|
|
1976
|
+
get createdAt() {
|
|
1977
|
+
return createdAt;
|
|
1978
|
+
// <- Note: [1]
|
|
1979
|
+
},
|
|
1980
|
+
get updatedAt() {
|
|
1981
|
+
return updatedAt;
|
|
1982
|
+
// <- Note: [1]
|
|
1983
|
+
},
|
|
1920
1984
|
asPromise,
|
|
1921
1985
|
asObservable() {
|
|
1922
1986
|
return partialResultSubject.asObservable();
|
|
1923
1987
|
},
|
|
1988
|
+
get errors() {
|
|
1989
|
+
return errors;
|
|
1990
|
+
// <- Note: [1]
|
|
1991
|
+
},
|
|
1992
|
+
get warnings() {
|
|
1993
|
+
return warnings;
|
|
1994
|
+
// <- Note: [1]
|
|
1995
|
+
},
|
|
1924
1996
|
get currentValue() {
|
|
1925
|
-
return
|
|
1997
|
+
return currentValue;
|
|
1998
|
+
// <- Note: [1]
|
|
1926
1999
|
},
|
|
1927
2000
|
};
|
|
1928
2001
|
}
|
|
@@ -3689,7 +3762,7 @@
|
|
|
3689
3762
|
Last result:
|
|
3690
3763
|
${block($ongoingTaskResult.$resultString === null
|
|
3691
3764
|
? 'null'
|
|
3692
|
-
: $ongoingTaskResult.$resultString
|
|
3765
|
+
: spaceTrim.spaceTrim($ongoingTaskResult.$resultString)
|
|
3693
3766
|
.split('\n')
|
|
3694
3767
|
.map((line) => `> ${line}`)
|
|
3695
3768
|
.join('\n'))}
|