@promptbook/cli 0.89.0-32 → 0.89.0-33

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
@@ -46,7 +46,7 @@ const BOOK_LANGUAGE_VERSION = '1.0.0';
46
46
  * @generated
47
47
  * @see https://github.com/webgptorg/promptbook
48
48
  */
49
- const PROMPTBOOK_ENGINE_VERSION = '0.89.0-32';
49
+ const PROMPTBOOK_ENGINE_VERSION = '0.89.0-33';
50
50
  /**
51
51
  * TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
52
52
  * Note: [💞] Ignore a discrepancy between file name and entity name
@@ -13389,13 +13389,7 @@ function startRemoteServer(options) {
13389
13389
  }
13390
13390
  else if (isAnonymous === false && createLlmExecutionTools !== null) {
13391
13391
  // Note: Application mode
13392
- const { appId, userId, customOptions } = identification;
13393
- llm = await createLlmExecutionTools({
13394
- isAnonymous: false,
13395
- appId,
13396
- userId,
13397
- customOptions,
13398
- });
13392
+ llm = await createLlmExecutionTools(identification);
13399
13393
  }
13400
13394
  else {
13401
13395
  throw new PipelineExecutionError(`You must provide either llmToolsConfiguration or non-anonymous mode must be propperly configured`);