@promptbook/markdown-utils 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 +11 -1
- package/esm/index.es.js +6 -3
- package/esm/index.es.js.map +1 -1
- package/esm/typings/src/cli/cli-commands/about.d.ts +3 -1
- package/esm/typings/src/cli/cli-commands/hello.d.ts +3 -1
- package/esm/typings/src/cli/cli-commands/list-models.d.ts +3 -1
- package/esm/typings/src/cli/cli-commands/list-scrapers.d.ts +13 -0
- package/esm/typings/src/cli/cli-commands/make.d.ts +3 -1
- package/esm/typings/src/cli/cli-commands/prettify.d.ts +3 -1
- package/esm/typings/src/cli/cli-commands/run.d.ts +3 -1
- package/esm/typings/src/cli/cli-commands/runInteractiveChatbot.d.ts +1 -1
- package/esm/typings/src/cli/cli-commands/test-command.d.ts +3 -1
- package/package.json +1 -1
- package/umd/index.umd.js +6 -3
- package/umd/index.umd.js.map +1 -1
package/README.md
CHANGED
|
@@ -438,7 +438,17 @@ See [TODO.md](./TODO.md)
|
|
|
438
438
|
|
|
439
439
|
## 🤝 Partners
|
|
440
440
|
|
|
441
|
-
|
|
441
|
+
<div style="display: flex; align-items: center; gap: 20px;">
|
|
442
|
+
|
|
443
|
+
<a href="https://promptbook.studio/">
|
|
444
|
+
<img src="./other/design/promptbook-studio-logo.png" alt="Partner 3" height="100">
|
|
445
|
+
</a>
|
|
446
|
+
|
|
447
|
+
<a href="https://technologickainkubace.org/en/about-technology-incubation/about-the-project/">
|
|
448
|
+
<img src="./other/partners/CI-Technology-Incubation.png" alt="Technology Incubation" height="100">
|
|
449
|
+
</a>
|
|
450
|
+
|
|
451
|
+
</div>
|
|
442
452
|
|
|
443
453
|
## 🖋️ Contributing
|
|
444
454
|
|
package/esm/index.es.js
CHANGED
|
@@ -23,7 +23,7 @@ var BOOK_LANGUAGE_VERSION = '1.0.0';
|
|
|
23
23
|
* @generated
|
|
24
24
|
* @see https://github.com/webgptorg/promptbook
|
|
25
25
|
*/
|
|
26
|
-
var PROMPTBOOK_ENGINE_VERSION = '0.84.0-
|
|
26
|
+
var PROMPTBOOK_ENGINE_VERSION = '0.84.0-20';
|
|
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
|
|
@@ -2743,7 +2743,7 @@ var MultipleLlmExecutionTools = /** @class */ (function () {
|
|
|
2743
2743
|
if (!(error_1 instanceof Error) || error_1 instanceof UnexpectedError) {
|
|
2744
2744
|
throw error_1;
|
|
2745
2745
|
}
|
|
2746
|
-
errors.push(error_1);
|
|
2746
|
+
errors.push({ llmExecutionTools: llmExecutionTools, error: error_1 });
|
|
2747
2747
|
return [3 /*break*/, 13];
|
|
2748
2748
|
case 13:
|
|
2749
2749
|
_b = _a.next();
|
|
@@ -2770,7 +2770,10 @@ var MultipleLlmExecutionTools = /** @class */ (function () {
|
|
|
2770
2770
|
// 2) AnthropicClaude throw PipelineExecutionError: Parameter `{knowledge}` is not defined
|
|
2771
2771
|
// 3) ...
|
|
2772
2772
|
spaceTrim(function (block) { return "\n All execution tools failed:\n\n ".concat(block(errors
|
|
2773
|
-
.map(function (
|
|
2773
|
+
.map(function (_a, i) {
|
|
2774
|
+
var error = _a.error, llmExecutionTools = _a.llmExecutionTools;
|
|
2775
|
+
return "".concat(i + 1, ") **").concat(llmExecutionTools.title, "** thrown **").concat(error.name || 'Error', ":** ").concat(error.message);
|
|
2776
|
+
})
|
|
2774
2777
|
.join('\n')), "\n\n "); }));
|
|
2775
2778
|
}
|
|
2776
2779
|
else if (this.llmExecutionTools.length === 0) {
|