@promptbook/node 0.101.0-14 → 0.101.0-16
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 +9 -8
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/components.index.d.ts +4 -0
- package/esm/typings/src/_packages/core.index.d.ts +2 -0
- package/esm/typings/src/_packages/types.index.d.ts +2 -0
- package/esm/typings/src/book-2.0/agent-source/AgentModelRequirements.d.ts +3 -0
- package/esm/typings/src/book-2.0/agent-source/createAgentModelRequirements.d.ts +3 -25
- package/esm/typings/src/book-2.0/agent-source/createAgentModelRequirementsWithCommitments.d.ts +1 -26
- package/esm/typings/src/book-2.0/commitments/MODEL/MODEL.d.ts +23 -2
- package/esm/typings/src/book-2.0/commitments/NOTE/NOTE.d.ts +14 -2
- package/esm/typings/src/book-2.0/commitments/index.d.ts +1 -1
- package/esm/typings/src/book-components/BookEditor/BookEditor.d.ts +5 -0
- package/esm/typings/src/book-components/BookEditor/BookEditorInner.d.ts +1 -0
- package/esm/typings/src/book-components/Chat/utils/parseMessageButtons.d.ts +22 -0
- package/esm/typings/src/formats/csv/CsvFormatError.d.ts +1 -1
- package/esm/typings/src/llm-providers/_common/register/$provideLlmToolsConfigurationFromEnv.d.ts +1 -1
- package/esm/typings/src/llm-providers/_common/register/$provideLlmToolsForTestingAndScriptsAndPlayground.d.ts +1 -1
- package/esm/typings/src/llm-providers/_common/utils/removeUnsupportedModelRequirements.d.ts +25 -0
- package/esm/typings/src/llm-providers/openai/OpenAiCompatibleExecutionTools.d.ts +15 -8
- package/esm/typings/src/remote-server/openapi-types.d.ts +31 -31
- package/esm/typings/src/types/ModelRequirements.d.ts +2 -4
- package/esm/typings/src/utils/color/utils/colorSaturation.d.ts +1 -1
- package/esm/typings/src/utils/editable/edit-pipeline-string/addPipelineCommand.d.ts +1 -1
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +9 -8
- package/umd/index.umd.js.map +1 -1
@@ -1,8 +1,5 @@
|
|
1
1
|
import type { ModelVariant } from './ModelVariant';
|
2
|
-
import type { number_model_temperature } from './typeAliases';
|
3
|
-
import type { number_seed } from './typeAliases';
|
4
|
-
import type { string_model_name } from './typeAliases';
|
5
|
-
import type { string_system_message } from './typeAliases';
|
2
|
+
import type { number_model_temperature, number_seed, string_model_name, string_system_message } from './typeAliases';
|
6
3
|
/**
|
7
4
|
* Abstract way to specify the LLM.
|
8
5
|
* It does not specify the LLM with concrete version itself, only the requirements for the LLM.
|
@@ -99,4 +96,5 @@ export type CommonModelRequirements = {
|
|
99
96
|
* TODO: Add here more requirement options like max context size, max tokens, etc.
|
100
97
|
* TODO: [💕][🧠] Just selecting gpt3 or gpt4 level of model
|
101
98
|
* TODO: [🧄] Replace all "github.com/webgptorg/promptbook#xxx" with "ptbk.io/xxx"
|
99
|
+
* TODO: [🐤] DRY `AgentModelRequirements` and `ModelRequirements`
|
102
100
|
*/
|
@@ -15,7 +15,7 @@ export declare const BOOK_LANGUAGE_VERSION: string_semantic_version;
|
|
15
15
|
export declare const PROMPTBOOK_ENGINE_VERSION: string_promptbook_version;
|
16
16
|
/**
|
17
17
|
* Represents the version string of the Promptbook engine.
|
18
|
-
* It follows semantic versioning (e.g., `0.101.0-
|
18
|
+
* It follows semantic versioning (e.g., `0.101.0-15`).
|
19
19
|
*
|
20
20
|
* @generated
|
21
21
|
*/
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@promptbook/node",
|
3
|
-
"version": "0.101.0-
|
3
|
+
"version": "0.101.0-16",
|
4
4
|
"description": "Promptbook: Run AI apps in plain human language across multiple models and platforms",
|
5
5
|
"private": false,
|
6
6
|
"sideEffects": false,
|
@@ -93,7 +93,7 @@
|
|
93
93
|
"module": "./esm/index.es.js",
|
94
94
|
"typings": "./esm/typings/src/_packages/node.index.d.ts",
|
95
95
|
"peerDependencies": {
|
96
|
-
"@promptbook/core": "0.101.0-
|
96
|
+
"@promptbook/core": "0.101.0-16"
|
97
97
|
},
|
98
98
|
"dependencies": {
|
99
99
|
"colors": "1.4.0",
|
package/umd/index.umd.js
CHANGED
@@ -45,7 +45,7 @@
|
|
45
45
|
* @generated
|
46
46
|
* @see https://github.com/webgptorg/promptbook
|
47
47
|
*/
|
48
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.101.0-
|
48
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.101.0-16';
|
49
49
|
/**
|
50
50
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
51
51
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
@@ -5145,13 +5145,13 @@
|
|
5145
5145
|
// Calculate and update tldr based on pipeline progress
|
5146
5146
|
const cv = newOngoingResult;
|
5147
5147
|
// Calculate progress based on parameters resolved vs total parameters
|
5148
|
-
const totalParameters = pipeline.parameters.filter(p => !p.isInput).length;
|
5148
|
+
const totalParameters = pipeline.parameters.filter((p) => !p.isInput).length;
|
5149
5149
|
let resolvedParameters = 0;
|
5150
5150
|
let currentTaskTitle = '';
|
5151
5151
|
// Get the resolved parameters from output parameters
|
5152
5152
|
if (cv === null || cv === void 0 ? void 0 : cv.outputParameters) {
|
5153
5153
|
// Count how many output parameters have non-empty values
|
5154
|
-
resolvedParameters = Object.values(cv.outputParameters).filter(value => value !== undefined && value !== null && String(value).trim() !== '').length;
|
5154
|
+
resolvedParameters = Object.values(cv.outputParameters).filter((value) => value !== undefined && value !== null && String(value).trim() !== '').length;
|
5155
5155
|
}
|
5156
5156
|
// Try to determine current task from execution report
|
5157
5157
|
if (((_a = cv === null || cv === void 0 ? void 0 : cv.executionReport) === null || _a === void 0 ? void 0 : _a.promptExecutions) && cv.executionReport.promptExecutions.length > 0) {
|
@@ -11647,11 +11647,12 @@
|
|
11647
11647
|
catch (error) {
|
11648
11648
|
// Note: If we can't write to cache, silently ignore the error
|
11649
11649
|
// This handles read-only filesystems, permission issues, and missing parent directories
|
11650
|
-
if (error instanceof Error &&
|
11651
|
-
error.message.includes('
|
11652
|
-
|
11653
|
-
|
11654
|
-
|
11650
|
+
if (error instanceof Error &&
|
11651
|
+
(error.message.includes('EROFS') ||
|
11652
|
+
error.message.includes('read-only') ||
|
11653
|
+
error.message.includes('EACCES') ||
|
11654
|
+
error.message.includes('EPERM') ||
|
11655
|
+
error.message.includes('ENOENT'))) {
|
11655
11656
|
// Silently ignore filesystem errors - caching is optional
|
11656
11657
|
return;
|
11657
11658
|
}
|