@promptbook/remote-client 0.92.0-29 → 0.92.0-30

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.
@@ -294,7 +294,7 @@ export declare const DEFAULT_GET_PIPELINE_COLLECTION_FUNCTION_NAME = "getPipelin
294
294
  *
295
295
  * @public exported from `@promptbook/core`
296
296
  */
297
- export declare const DEFAULT_RPM = 60;
297
+ export declare const DEFAULT_MAX_REQUESTS_PER_MINUTE = 60;
298
298
  /**
299
299
  * Indicates whether pipeline logic validation is enabled. When true, the pipeline logic is checked for consistency.
300
300
  *
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @private !!!! Decide how to expose this
2
+ * @private [🥺] Decide how to expose this
3
3
  */
4
4
  export declare const openapiJson: {
5
5
  openapi: string;
@@ -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-28`).
18
+ * It follows semantic versioning (e.g., `0.92.0-29`).
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-29",
3
+ "version": "0.92.0-30",
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-29"
54
+ "@promptbook/core": "0.92.0-30"
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-29';
26
+ const PROMPTBOOK_ENGINE_VERSION = '0.92.0-30';
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
@@ -1930,13 +1930,10 @@
1930
1930
  if (onProgress) {
1931
1931
  // Note: Report the CSV with all rows mapped so far
1932
1932
  /*
1933
- !!!!
1934
- // Report progress with updated value
1935
- const progressData = mappedData.map((row, i) =>
1936
- i > index ? { ...row, [outputParameterName]: PENDING_VALUE_PLACEHOLDER } : row,
1937
- );
1938
-
1939
-
1933
+ // TODO: [🛕] Report progress with all the rows including the pending ones
1934
+ const progressData = mappedData.map((row, i) =>
1935
+ i > index ? { ...row, [outputParameterName]: PENDING_VALUE_PLACEHOLDER } : row,
1936
+ );
1940
1937
  */
1941
1938
  await onProgress(papaparse.unparse(mappedData, { ...settings, ...MANDATORY_CSV_SETTINGS }));
1942
1939
  }