@promptbook/remote-client 0.59.0-23 → 0.59.0-25

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 CHANGED
@@ -156,7 +156,7 @@ var RemoteLlmExecutionTools = /** @class */ (function () {
156
156
  /**
157
157
  * The version of the Promptbook library
158
158
  */
159
- var PROMPTBOOK_VERSION = '0.59.0-21';
159
+ var PROMPTBOOK_VERSION = '0.59.0-24';
160
160
 
161
161
  export { PROMPTBOOK_VERSION, RemoteLlmExecutionTools };
162
162
  //# sourceMappingURL=index.es.js.map
@@ -4,7 +4,7 @@ export { PROMPTBOOK_VERSION };
4
4
  /**
5
5
  * Hidden utilities which should not be used by external consumers.
6
6
  */
7
- declare const __: {
8
- promptbookCli: typeof promptbookCli;
7
+ declare const __CLI: {
8
+ __initialize: typeof promptbookCli;
9
9
  };
10
- export { __ };
10
+ export { __CLI };
@@ -6,3 +6,7 @@ export declare const LOOP_LIMIT = 1000;
6
6
  * The maximum number of iterations for a loops which adds characters one by one
7
7
  */
8
8
  export declare const CHARACTER_LOOP_LIMIT = 100000;
9
+ /**
10
+ * The name of the builded promptbook library made by CLI `promptbook make` and for lookup in `createLibraryFromDirectory`
11
+ */
12
+ export declare const PROMPTBOOK_MAKED_BASE_FILENAME = "promptbook-library";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promptbook/remote-client",
3
- "version": "0.59.0-23",
3
+ "version": "0.59.0-25",
4
4
  "description": "Library to supercharge your use of large language models",
5
5
  "private": false,
6
6
  "sideEffects": false,
@@ -47,7 +47,7 @@
47
47
  }
48
48
  ],
49
49
  "peerDependencies": {
50
- "@promptbook/core": "0.59.0-23"
50
+ "@promptbook/core": "0.59.0-25"
51
51
  },
52
52
  "main": "./umd/index.umd.js",
53
53
  "module": "./esm/index.es.js",
package/umd/index.umd.js CHANGED
@@ -160,7 +160,7 @@
160
160
  /**
161
161
  * The version of the Promptbook library
162
162
  */
163
- var PROMPTBOOK_VERSION = '0.59.0-21';
163
+ var PROMPTBOOK_VERSION = '0.59.0-24';
164
164
 
165
165
  exports.PROMPTBOOK_VERSION = PROMPTBOOK_VERSION;
166
166
  exports.RemoteLlmExecutionTools = RemoteLlmExecutionTools;
@@ -4,7 +4,7 @@ export { PROMPTBOOK_VERSION };
4
4
  /**
5
5
  * Hidden utilities which should not be used by external consumers.
6
6
  */
7
- declare const __: {
8
- promptbookCli: typeof promptbookCli;
7
+ declare const __CLI: {
8
+ __initialize: typeof promptbookCli;
9
9
  };
10
- export { __ };
10
+ export { __CLI };
@@ -6,3 +6,7 @@ export declare const LOOP_LIMIT = 1000;
6
6
  * The maximum number of iterations for a loops which adds characters one by one
7
7
  */
8
8
  export declare const CHARACTER_LOOP_LIMIT = 100000;
9
+ /**
10
+ * The name of the builded promptbook library made by CLI `promptbook make` and for lookup in `createLibraryFromDirectory`
11
+ */
12
+ export declare const PROMPTBOOK_MAKED_BASE_FILENAME = "promptbook-library";