llm-exe 2.3.3 → 2.3.4

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/dist/index.js CHANGED
@@ -283,6 +283,10 @@ var BaseExecutor = class {
283
283
  try {
284
284
  hookFn(_metadata, this.getMetadata());
285
285
  } catch (error) {
286
+ console.warn(
287
+ `[llm-exe] Error in "${String(hook)}" hook:`,
288
+ error
289
+ );
286
290
  }
287
291
  }
288
292
  }
package/dist/index.mjs CHANGED
@@ -220,6 +220,10 @@ var BaseExecutor = class {
220
220
  try {
221
221
  hookFn(_metadata, this.getMetadata());
222
222
  } catch (error) {
223
+ console.warn(
224
+ `[llm-exe] Error in "${String(hook)}" hook:`,
225
+ error
226
+ );
223
227
  }
224
228
  }
225
229
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "llm-exe",
3
- "version": "2.3.3",
3
+ "version": "2.3.4",
4
4
  "description": "Simplify building LLM-powered apps with easy-to-use base components, supporting text and chat-based prompts with handlebars template engine, output parsers, and flexible function calling capabilities.",
5
5
  "keywords": [
6
6
  "ai",