@promptbook/remote-server 0.92.0-18 → 0.92.0-20
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 +8 -2
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/core.index.d.ts +2 -0
- package/esm/typings/src/migrations/migratePipeline.d.ts +7 -0
- package/esm/typings/src/pipeline/PipelineJson/PipelineJson.d.ts +1 -0
- package/package.json +2 -2
- package/umd/index.umd.js +8 -2
- package/umd/index.umd.js.map +1 -1
|
@@ -105,6 +105,7 @@ import { joinLlmExecutionTools } from '../llm-providers/multiple/joinLlmExecutio
|
|
|
105
105
|
import { MultipleLlmExecutionTools } from '../llm-providers/multiple/MultipleLlmExecutionTools';
|
|
106
106
|
import { _OpenAiMetadataRegistration } from '../llm-providers/openai/register-configuration';
|
|
107
107
|
import { _OpenAiAssistantMetadataRegistration } from '../llm-providers/openai/register-configuration';
|
|
108
|
+
import { migratePipeline } from '../migrations/migratePipeline';
|
|
108
109
|
import { preparePersona } from '../personas/preparePersona';
|
|
109
110
|
import { book } from '../pipeline/book-notation';
|
|
110
111
|
import { isValidPipelineString } from '../pipeline/isValidPipelineString';
|
|
@@ -247,6 +248,7 @@ export { joinLlmExecutionTools };
|
|
|
247
248
|
export { MultipleLlmExecutionTools };
|
|
248
249
|
export { _OpenAiMetadataRegistration };
|
|
249
250
|
export { _OpenAiAssistantMetadataRegistration };
|
|
251
|
+
export { migratePipeline };
|
|
250
252
|
export { preparePersona };
|
|
251
253
|
export { book };
|
|
252
254
|
export { isValidPipelineString };
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import type { PipelineJson } from '../pipeline/PipelineJson/PipelineJson';
|
|
2
|
+
/**
|
|
3
|
+
* Migrates the pipeline to the latest version
|
|
4
|
+
*
|
|
5
|
+
* @public exported from `@promptbook/core`
|
|
6
|
+
*/
|
|
7
|
+
export declare function migratePipeline(deprecatedPipeline: PipelineJson): PipelineJson;
|
|
@@ -103,6 +103,7 @@ export type PipelineJson = {
|
|
|
103
103
|
}>;
|
|
104
104
|
};
|
|
105
105
|
/**
|
|
106
|
+
* TODO: [🌪] Make type for deprecated pipelines
|
|
106
107
|
* TODO: [🛳] Default PERSONA for the pipeline `defaultPersonaName` (same as `defaultModelRequirements`)
|
|
107
108
|
* TODO: [🍙] Make some standard order of json properties
|
|
108
109
|
* TODO: [🧠] Maybe wrap all {parameterNames} in brackets for example { "resultingParameterName": "{foo}" }
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@promptbook/remote-server",
|
|
3
|
-
"version": "0.92.0-
|
|
3
|
+
"version": "0.92.0-20",
|
|
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/remote-server.index.d.ts",
|
|
53
53
|
"peerDependencies": {
|
|
54
|
-
"@promptbook/core": "0.92.0-
|
|
54
|
+
"@promptbook/core": "0.92.0-20"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
57
|
"colors": "1.4.0",
|
package/umd/index.umd.js
CHANGED
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
* @generated
|
|
49
49
|
* @see https://github.com/webgptorg/promptbook
|
|
50
50
|
*/
|
|
51
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.92.0-
|
|
51
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.92.0-20';
|
|
52
52
|
/**
|
|
53
53
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
54
54
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -1800,12 +1800,18 @@
|
|
|
1800
1800
|
// Note: Ignoring `pipeline.preparations` @@@
|
|
1801
1801
|
// Note: Ignoring `pipeline.knowledgePieces` @@@
|
|
1802
1802
|
if (pipeline.title === undefined || pipeline.title === '' || pipeline.title === DEFAULT_BOOK_TITLE) {
|
|
1803
|
+
// TODO: !!! Comment this out
|
|
1804
|
+
console.log('Pipeline is not prepared because title is undefined or empty', pipeline);
|
|
1803
1805
|
return false;
|
|
1804
1806
|
}
|
|
1805
1807
|
if (!pipeline.personas.every((persona) => persona.modelsRequirements !== undefined)) {
|
|
1808
|
+
// TODO: !!! Comment this out
|
|
1809
|
+
console.log('Pipeline is not prepared because personas are not prepared', pipeline.personas);
|
|
1806
1810
|
return false;
|
|
1807
1811
|
}
|
|
1808
1812
|
if (!pipeline.knowledgeSources.every((knowledgeSource) => knowledgeSource.preparationIds !== undefined)) {
|
|
1813
|
+
// TODO: !!! Comment this out
|
|
1814
|
+
console.log('Pipeline is not prepared because knowledge sources are not prepared', pipeline.knowledgeSources);
|
|
1809
1815
|
return false;
|
|
1810
1816
|
}
|
|
1811
1817
|
/*
|
|
@@ -5712,7 +5718,7 @@
|
|
|
5712
5718
|
const usedParameterNames = extractParameterNamesFromTask(currentTask);
|
|
5713
5719
|
const dependentParameterNames = new Set(currentTask.dependentParameterNames);
|
|
5714
5720
|
// TODO: [👩🏾🤝👩🏻] Use here `mapAvailableToExpectedParameters`
|
|
5715
|
-
if (union(difference(usedParameterNames, dependentParameterNames), difference(dependentParameterNames, usedParameterNames)).size !== 0) {
|
|
5721
|
+
if (difference(union(difference(usedParameterNames, dependentParameterNames), difference(dependentParameterNames, usedParameterNames)), new Set(RESERVED_PARAMETER_NAMES)).size !== 0) {
|
|
5716
5722
|
throw new UnexpectedError(spaceTrim.spaceTrim((block) => `
|
|
5717
5723
|
Dependent parameters are not consistent with used parameters:
|
|
5718
5724
|
|