@promptbook/pdf 0.84.0-18 → 0.84.0-21

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/README.md CHANGED
@@ -440,7 +440,17 @@ See [TODO.md](./TODO.md)
440
440
 
441
441
  ## 🤝 Partners
442
442
 
443
- [![Technology Incubation](./other/partners/CI-Technology-Incubation.png)](https://technologickainkubace.org/en/about-technology-incubation/about-the-project/)
443
+ <div style="display: flex; align-items: center; gap: 20px;">
444
+
445
+ <a href="https://promptbook.studio/">
446
+ <img src="./other/design/promptbook-studio-logo.png" alt="Partner 3" height="100">
447
+ </a>
448
+
449
+ <a href="https://technologickainkubace.org/en/about-technology-incubation/about-the-project/">
450
+ <img src="./other/partners/CI-Technology-Incubation.png" alt="Technology Incubation" height="100">
451
+ </a>
452
+
453
+ </div>
444
454
 
445
455
  ## 🖋️ Contributing
446
456
 
package/esm/index.es.js CHANGED
@@ -24,7 +24,7 @@ var BOOK_LANGUAGE_VERSION = '1.0.0';
24
24
  * @generated
25
25
  * @see https://github.com/webgptorg/promptbook
26
26
  */
27
- var PROMPTBOOK_ENGINE_VERSION = '0.84.0-17';
27
+ var PROMPTBOOK_ENGINE_VERSION = '0.84.0-20';
28
28
  /**
29
29
  * TODO: string_promptbook_version should be constrained to the all versions of Promptbook engine
30
30
  * Note: [💞] Ignore a discrepancy between file name and entity name
@@ -3077,7 +3077,7 @@ var MultipleLlmExecutionTools = /** @class */ (function () {
3077
3077
  if (!(error_1 instanceof Error) || error_1 instanceof UnexpectedError) {
3078
3078
  throw error_1;
3079
3079
  }
3080
- errors.push(error_1);
3080
+ errors.push({ llmExecutionTools: llmExecutionTools, error: error_1 });
3081
3081
  return [3 /*break*/, 13];
3082
3082
  case 13:
3083
3083
  _b = _a.next();
@@ -3104,7 +3104,10 @@ var MultipleLlmExecutionTools = /** @class */ (function () {
3104
3104
  // 2) AnthropicClaude throw PipelineExecutionError: Parameter `{knowledge}` is not defined
3105
3105
  // 3) ...
3106
3106
  spaceTrim(function (block) { return "\n All execution tools failed:\n\n ".concat(block(errors
3107
- .map(function (error, i) { return "".concat(i + 1, ") **").concat(error.name || 'Error', ":** ").concat(error.message); })
3107
+ .map(function (_a, i) {
3108
+ var error = _a.error, llmExecutionTools = _a.llmExecutionTools;
3109
+ return "".concat(i + 1, ") **").concat(llmExecutionTools.title, "** thrown **").concat(error.name || 'Error', ":** ").concat(error.message);
3110
+ })
3108
3111
  .join('\n')), "\n\n "); }));
3109
3112
  }
3110
3113
  else if (this.llmExecutionTools.length === 0) {