@promptbook/remote-client 0.92.0-27 → 0.92.0-28
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 -10
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/_packages/core.index.d.ts +4 -4
- package/esm/typings/src/commands/FOREACH/foreachCommandParser.d.ts +0 -2
- package/esm/typings/src/constants.d.ts +35 -0
- package/esm/typings/src/executables/$provideExecutablesForNode.d.ts +1 -1
- package/esm/typings/src/executables/apps/locateLibreoffice.d.ts +2 -1
- package/esm/typings/src/executables/apps/locatePandoc.d.ts +2 -1
- package/esm/typings/src/executables/platforms/locateAppOnLinux.d.ts +2 -1
- package/esm/typings/src/executables/platforms/locateAppOnMacOs.d.ts +2 -1
- package/esm/typings/src/executables/platforms/locateAppOnWindows.d.ts +2 -1
- package/esm/typings/src/execution/AbstractTaskResult.d.ts +1 -1
- package/esm/typings/src/execution/LlmExecutionToolsConstructor.d.ts +2 -1
- package/esm/typings/src/execution/PipelineExecutorResult.d.ts +1 -1
- package/esm/typings/src/execution/createPipelineExecutor/$OngoingTaskResult.d.ts +12 -9
- package/esm/typings/src/execution/createPipelineExecutor/40-executeAttempts.d.ts +20 -14
- package/esm/typings/src/execution/createPipelineExecutor/filterJustOutputParameters.d.ts +7 -6
- package/esm/typings/src/execution/createPipelineExecutor/getContextForTask.d.ts +5 -1
- package/esm/typings/src/execution/createPipelineExecutor/getExamplesForTask.d.ts +1 -1
- package/esm/typings/src/execution/createPipelineExecutor/getKnowledgeForTask.d.ts +8 -11
- package/esm/typings/src/execution/translation/automatic-translate/automatic-translators/LindatAutomaticTranslator.d.ts +4 -4
- package/esm/typings/src/formats/csv/CsvSettings.d.ts +2 -2
- package/esm/typings/src/formfactors/chatbot/ChatbotFormfactorDefinition.d.ts +2 -2
- package/esm/typings/src/formfactors/completion/CompletionFormfactorDefinition.d.ts +1 -1
- package/esm/typings/src/formfactors/generator/GeneratorFormfactorDefinition.d.ts +2 -1
- package/esm/typings/src/formfactors/generic/GenericFormfactorDefinition.d.ts +2 -2
- package/esm/typings/src/formfactors/index.d.ts +3 -3
- package/esm/typings/src/llm-providers/_common/register/LlmToolsMetadata.d.ts +4 -37
- package/esm/typings/src/llm-providers/anthropic-claude/anthropic-claude-models.d.ts +1 -1
- package/esm/typings/src/llm-providers/deepseek/deepseek-models.d.ts +1 -1
- package/esm/typings/src/llm-providers/google/google-models.d.ts +1 -1
- package/esm/typings/src/llm-providers/openai/openai-models.d.ts +1 -1
- package/esm/typings/src/llm-providers/openai/register-configuration.d.ts +2 -2
- package/esm/typings/src/llm-providers/openai/register-constructor.d.ts +2 -2
- package/esm/typings/src/version.d.ts +1 -1
- package/package.json +2 -2
- package/umd/index.umd.js +9 -10
- package/umd/index.umd.js.map +1 -1
|
@@ -10,9 +10,9 @@ import type { Registration } from '../../utils/$Register';
|
|
|
10
10
|
*/
|
|
11
11
|
export declare const _OpenAiMetadataRegistration: Registration;
|
|
12
12
|
/**
|
|
13
|
-
*
|
|
13
|
+
* Registration of the OpenAI Assistant metadata
|
|
14
14
|
*
|
|
15
|
-
* Note: [🏐] Configurations registrations are done in
|
|
15
|
+
* Note: [🏐] Configurations registrations are done in the metadata registration section, but the constructor registration is handled separately.
|
|
16
16
|
*
|
|
17
17
|
* @public exported from `@promptbook/core`
|
|
18
18
|
* @public exported from `@promptbook/wizzard`
|
|
@@ -10,9 +10,9 @@ import type { Registration } from '../../utils/$Register';
|
|
|
10
10
|
*/
|
|
11
11
|
export declare const _OpenAiRegistration: Registration;
|
|
12
12
|
/**
|
|
13
|
-
*
|
|
13
|
+
* Registration of the OpenAI Assistant provider
|
|
14
14
|
*
|
|
15
|
-
* Note: [🏐] Configurations registrations are done in
|
|
15
|
+
* Note: [🏐] Configurations registrations are done in register-constructor.ts BUT constructor register-constructor.ts
|
|
16
16
|
*
|
|
17
17
|
* @public exported from `@promptbook/openai`
|
|
18
18
|
* @public exported from `@promptbook/wizzard`
|
|
@@ -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.92.0-
|
|
18
|
+
* It follows semantic versioning (e.g., `0.92.0-27`).
|
|
19
19
|
*
|
|
20
20
|
* @generated
|
|
21
21
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@promptbook/remote-client",
|
|
3
|
-
"version": "0.92.0-
|
|
3
|
+
"version": "0.92.0-28",
|
|
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-client.index.d.ts",
|
|
53
53
|
"peerDependencies": {
|
|
54
|
-
"@promptbook/core": "0.92.0-
|
|
54
|
+
"@promptbook/core": "0.92.0-28"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
57
|
"crypto": "1.0.1",
|
package/umd/index.umd.js
CHANGED
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
* @generated
|
|
24
24
|
* @see https://github.com/webgptorg/promptbook
|
|
25
25
|
*/
|
|
26
|
-
const PROMPTBOOK_ENGINE_VERSION = '0.92.0-
|
|
26
|
+
const PROMPTBOOK_ENGINE_VERSION = '0.92.0-28';
|
|
27
27
|
/**
|
|
28
28
|
* TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
|
|
29
29
|
* Note: [💞] Ignore a discrepancy between file name and entity name
|
|
@@ -1828,7 +1828,7 @@
|
|
|
1828
1828
|
};
|
|
1829
1829
|
|
|
1830
1830
|
/**
|
|
1831
|
-
*
|
|
1831
|
+
* Contains configuration options for parsing and generating CSV files, such as delimiters and quoting rules.
|
|
1832
1832
|
*
|
|
1833
1833
|
* @public exported from `@promptbook/core`
|
|
1834
1834
|
*/
|
|
@@ -2653,8 +2653,6 @@
|
|
|
2653
2653
|
/**
|
|
2654
2654
|
* Parses the foreach command
|
|
2655
2655
|
*
|
|
2656
|
-
* Note: @@@ This command is used as foreach for new commands - it should NOT be used in any `.book` file
|
|
2657
|
-
*
|
|
2658
2656
|
* @see `documentationUrl` for more details
|
|
2659
2657
|
* @public exported from `@promptbook/editable`
|
|
2660
2658
|
*/
|
|
@@ -2895,14 +2893,14 @@
|
|
|
2895
2893
|
};
|
|
2896
2894
|
|
|
2897
2895
|
/**
|
|
2898
|
-
*
|
|
2896
|
+
* Chatbot form factor definition for conversational interfaces that interact with users in a chat-like manner.
|
|
2899
2897
|
*
|
|
2900
2898
|
* @public exported from `@promptbook/core`
|
|
2901
2899
|
*/
|
|
2902
2900
|
const ChatbotFormfactorDefinition = {
|
|
2903
2901
|
name: 'CHATBOT',
|
|
2904
2902
|
aliasNames: ['CHAT'],
|
|
2905
|
-
description:
|
|
2903
|
+
description: `A chatbot form factor for conversational user interfaces.`,
|
|
2906
2904
|
documentationUrl: `https://github.com/webgptorg/promptbook/discussions/174`,
|
|
2907
2905
|
pipelineInterface: {
|
|
2908
2906
|
inputParameters: [
|
|
@@ -2935,7 +2933,7 @@
|
|
|
2935
2933
|
*/
|
|
2936
2934
|
const CompletionFormfactorDefinition = {
|
|
2937
2935
|
name: 'COMPLETION',
|
|
2938
|
-
description:
|
|
2936
|
+
description: `Completion is formfactor that emulates completion models`,
|
|
2939
2937
|
documentationUrl: `https://github.com/webgptorg/promptbook/discussions/@@`,
|
|
2940
2938
|
// <- TODO: https://github.com/webgptorg/promptbook/discussions/new?category=concepts
|
|
2941
2939
|
// "🔠 Completion Formfactor"
|
|
@@ -2966,7 +2964,8 @@
|
|
|
2966
2964
|
};
|
|
2967
2965
|
|
|
2968
2966
|
/**
|
|
2969
|
-
* Generator
|
|
2967
|
+
* Generator form factor represents an application that generates content or data based on user input or predefined rules.
|
|
2968
|
+
* This form factor is used for apps that produce outputs, such as text, images, or other media, based on provided input.
|
|
2970
2969
|
*
|
|
2971
2970
|
* @public exported from `@promptbook/core`
|
|
2972
2971
|
*/
|
|
@@ -3010,13 +3009,13 @@
|
|
|
3010
3009
|
*/
|
|
3011
3010
|
|
|
3012
3011
|
/**
|
|
3013
|
-
*
|
|
3012
|
+
* A generic pipeline
|
|
3014
3013
|
*
|
|
3015
3014
|
* @public exported from `@promptbook/core`
|
|
3016
3015
|
*/
|
|
3017
3016
|
const GenericFormfactorDefinition = {
|
|
3018
3017
|
name: 'GENERIC',
|
|
3019
|
-
description:
|
|
3018
|
+
description: `A generic pipeline`,
|
|
3020
3019
|
documentationUrl: `https://github.com/webgptorg/promptbook/discussions/173`,
|
|
3021
3020
|
pipelineInterface: GENERIC_PIPELINE_INTERFACE,
|
|
3022
3021
|
};
|