@promptbook/utils 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
@@ -402,7 +402,7 @@ function removeContentComments(content) {
402
402
  /**
403
403
  * The version of the Promptbook library
404
404
  */
405
- var PROMPTBOOK_VERSION = '0.44.0-5';
405
+ var PROMPTBOOK_VERSION = '0.44.0-7';
406
406
 
407
407
  /**
408
408
  * Parses the given script and returns the list of all used variables that are not defined in the script
@@ -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/utils",
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,
package/umd/index.umd.js CHANGED
@@ -409,7 +409,7 @@
409
409
  /**
410
410
  * The version of the Promptbook library
411
411
  */
412
- var PROMPTBOOK_VERSION = '0.44.0-5';
412
+ var PROMPTBOOK_VERSION = '0.44.0-7';
413
413
 
414
414
  /**
415
415
  * Parses the given script and returns the list of all used variables that are not defined in the script
@@ -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;