@promptbook/types 0.92.0-17 → 0.92.0-19
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.
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { ReadonlyDeep } from 'type-fest';
|
|
2
2
|
import type { PipelineJson } from '../../pipeline/PipelineJson/PipelineJson';
|
|
3
3
|
import type { TaskJson } from '../../pipeline/PipelineJson/TaskJson';
|
|
4
|
+
import type { Parameters } from '../../types/typeAliases';
|
|
4
5
|
import type { string_markdown } from '../../types/typeAliases';
|
|
5
6
|
import type { string_parameter_value } from '../../types/typeAliases';
|
|
6
7
|
import type { ExecutionTools } from '../ExecutionTools';
|
|
@@ -22,6 +23,12 @@ type GetKnowledgeForTaskOptions = {
|
|
|
22
23
|
* @@@
|
|
23
24
|
*/
|
|
24
25
|
readonly task: ReadonlyDeep<TaskJson>;
|
|
26
|
+
/**
|
|
27
|
+
* @@@
|
|
28
|
+
*
|
|
29
|
+
* Parameters to complete the content of the task for embedding
|
|
30
|
+
*/
|
|
31
|
+
readonly parameters: Readonly<Parameters>;
|
|
25
32
|
};
|
|
26
33
|
/**
|
|
27
34
|
* @@@
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import type { ReadonlyDeep } from 'type-fest';
|
|
2
2
|
import type { PipelineJson } from '../../pipeline/PipelineJson/PipelineJson';
|
|
3
3
|
import type { TaskJson } from '../../pipeline/PipelineJson/TaskJson';
|
|
4
|
+
import type { Parameters } from '../../types/typeAliases';
|
|
4
5
|
import type { ReservedParameters } from '../../types/typeAliases';
|
|
5
6
|
import type { ExecutionTools } from '../ExecutionTools';
|
|
6
7
|
/**
|
|
@@ -21,6 +22,12 @@ type GetReservedParametersForTaskOptions = {
|
|
|
21
22
|
* @@@
|
|
22
23
|
*/
|
|
23
24
|
readonly task: ReadonlyDeep<TaskJson>;
|
|
25
|
+
/**
|
|
26
|
+
* @@@
|
|
27
|
+
*
|
|
28
|
+
* Parameters to complete the content of the task for embedding
|
|
29
|
+
*/
|
|
30
|
+
readonly parameters: Readonly<Parameters>;
|
|
24
31
|
/**
|
|
25
32
|
* @@@
|
|
26
33
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@promptbook/types",
|
|
3
|
-
"version": "0.92.0-
|
|
3
|
+
"version": "0.92.0-19",
|
|
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,
|
|
@@ -49,6 +49,6 @@
|
|
|
49
49
|
},
|
|
50
50
|
"typings": "./esm/typings/src/_packages/types.index.d.ts",
|
|
51
51
|
"peerDependencies": {
|
|
52
|
-
"@promptbook/core": "0.92.0-
|
|
52
|
+
"@promptbook/core": "0.92.0-19"
|
|
53
53
|
}
|
|
54
54
|
}
|