@promptbook/remote-client 0.63.0-3 → 0.63.0-4
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 +2 -0
- package/esm/index.es.js +1 -1
- package/esm/typings/src/config.d.ts +6 -0
- package/esm/typings/src/conversion/pipelineJsonToString.d.ts +1 -0
- package/esm/typings/src/conversion/pipelineStringToJson.d.ts +1 -0
- package/esm/typings/src/types/execution-report/executionReportJsonToString.d.ts +1 -0
- package/package.json +2 -2
- package/umd/index.umd.js +1 -1
package/README.md
CHANGED
package/esm/index.es.js
CHANGED
|
@@ -3,7 +3,7 @@ import { io } from 'socket.io-client';
|
|
|
3
3
|
/**
|
|
4
4
|
* The version of the Promptbook library
|
|
5
5
|
*/
|
|
6
|
-
var PROMPTBOOK_VERSION = '0.63.0-
|
|
6
|
+
var PROMPTBOOK_VERSION = '0.63.0-3';
|
|
7
7
|
// TODO: !!!! List here all the versions and annotate + put into script
|
|
8
8
|
|
|
9
9
|
/*! *****************************************************************************
|
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Warning message for the generated sections and files files
|
|
3
|
+
*
|
|
4
|
+
* @private within the repository
|
|
5
|
+
*/
|
|
6
|
+
export declare const GENERATOR_WARNING = "\u26A0\uFE0F WARNING: This section has been generated so that any manual changes will be overwritten";
|
|
1
7
|
/**
|
|
2
8
|
* The maximum number of iterations for a loops
|
|
3
9
|
*
|
|
@@ -13,4 +13,5 @@ export declare function pipelineJsonToString(pipelineJson: PipelineJson): Pipeli
|
|
|
13
13
|
* TODO: [🧠] Is there a way to auto-detect missing features in pipelineJsonToString
|
|
14
14
|
* TODO: [🏛] Maybe make some markdown builder
|
|
15
15
|
* TODO: [🏛] Escape all
|
|
16
|
+
* TODO: [🧠] Should be in generated .ptbk.md file GENERATOR_WARNING
|
|
16
17
|
*/
|
|
@@ -35,4 +35,5 @@ export declare function pipelineStringToJson(pipelineString: PipelineString, opt
|
|
|
35
35
|
/**
|
|
36
36
|
* TODO: [🏏] Leverage the batch API and build queues @see https://platform.openai.com/docs/guides/batch
|
|
37
37
|
* TODO: [🛠] Actions, instruments (and maybe knowledge) => Functions and tools
|
|
38
|
+
* TODO: [🧠] Should be in generated JSON file GENERATOR_WARNING
|
|
38
39
|
*/
|
|
@@ -10,4 +10,5 @@ export declare function executionReportJsonToString(executionReportJson: Executi
|
|
|
10
10
|
/**
|
|
11
11
|
* TODO: Add mermaid chart for every report
|
|
12
12
|
* TODO: [🧠] Allow to filter out some parts of the report by options
|
|
13
|
+
* TODO: [🧠] Should be in generated file GENERATOR_WARNING
|
|
13
14
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@promptbook/remote-client",
|
|
3
|
-
"version": "0.63.0-
|
|
3
|
+
"version": "0.63.0-4",
|
|
4
4
|
"description": "Supercharge your use of large language models",
|
|
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/remote-client.index.d.ts",
|
|
49
49
|
"peerDependencies": {
|
|
50
|
-
"@promptbook/core": "0.63.0-
|
|
50
|
+
"@promptbook/core": "0.63.0-4"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
53
|
"socket.io-client": "4.7.2"
|
package/umd/index.umd.js
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
/**
|
|
8
8
|
* The version of the Promptbook library
|
|
9
9
|
*/
|
|
10
|
-
var PROMPTBOOK_VERSION = '0.63.0-
|
|
10
|
+
var PROMPTBOOK_VERSION = '0.63.0-3';
|
|
11
11
|
// TODO: !!!! List here all the versions and annotate + put into script
|
|
12
12
|
|
|
13
13
|
/*! *****************************************************************************
|