@promptbook/cli 0.44.0-6 → 0.44.0-8

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
@@ -143,7 +143,7 @@ new Function("\n try {\n if (typeof WorkerGlobalScope !== 'undefined'
143
143
  /**
144
144
  * The version of the Promptbook library
145
145
  */
146
- var PROMPTBOOK_VERSION = '0.44.0-5';
146
+ var PROMPTBOOK_VERSION = '0.44.0-7';
147
147
 
148
148
  /**
149
149
  * This error indicates that the promptbook in a markdown format cannot be parsed into a valid promptbook object
@@ -2,3 +2,7 @@
2
2
  * The maximum number of iterations for a loops
3
3
  */
4
4
  export declare const LOOP_LIMIT = 1000;
5
+ /**
6
+ * The maximum number of iterations for a loops which adds characters one by one
7
+ */
8
+ export declare const CHARACTER_LOOP_LIMIT = 100000;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promptbook/cli",
3
- "version": "0.44.0-6",
3
+ "version": "0.44.0-8",
4
4
  "description": "Library to supercharge your use of large language models",
5
5
  "private": false,
6
6
  "sideEffects": false,
@@ -42,7 +42,7 @@
42
42
  "waitasecond": "1.11.33"
43
43
  },
44
44
  "peerDependencies": {
45
- "@promptbook/core": "0.44.0-6"
45
+ "@promptbook/core": "0.44.0-8"
46
46
  },
47
47
  "main": "./umd/index.umd.js",
48
48
  "module": "./esm/index.es.js",
package/umd/index.umd.js CHANGED
@@ -147,7 +147,7 @@
147
147
  /**
148
148
  * The version of the Promptbook library
149
149
  */
150
- var PROMPTBOOK_VERSION = '0.44.0-5';
150
+ var PROMPTBOOK_VERSION = '0.44.0-7';
151
151
 
152
152
  /**
153
153
  * This error indicates that the promptbook in a markdown format cannot be parsed into a valid promptbook object
@@ -2,3 +2,7 @@
2
2
  * The maximum number of iterations for a loops
3
3
  */
4
4
  export declare const LOOP_LIMIT = 1000;
5
+ /**
6
+ * The maximum number of iterations for a loops which adds characters one by one
7
+ */
8
+ export declare const CHARACTER_LOOP_LIMIT = 100000;