@jaypie/llm 1.2.34 → 1.2.35
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/cjs/index.cjs +2 -2
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
package/dist/cjs/index.cjs
CHANGED
|
@@ -5284,7 +5284,7 @@ class OperateLoop {
|
|
|
5284
5284
|
};
|
|
5285
5285
|
const toolResultFormatted = this.adapter.formatToolResult(toolCall, errorResult);
|
|
5286
5286
|
state.responseBuilder.appendToHistory(toolResultFormatted);
|
|
5287
|
-
log.
|
|
5287
|
+
log.warn(`Error executing function call ${toolCall.name}`);
|
|
5288
5288
|
log.var({ error });
|
|
5289
5289
|
// Track consecutive errors and stop if threshold reached
|
|
5290
5290
|
state.consecutiveToolErrors++;
|
|
@@ -5779,7 +5779,7 @@ class StreamLoop {
|
|
|
5779
5779
|
call_id: toolCall.callId,
|
|
5780
5780
|
name: toolCall.name,
|
|
5781
5781
|
});
|
|
5782
|
-
log.
|
|
5782
|
+
log.warn(`Error executing function call ${toolCall.name}`);
|
|
5783
5783
|
log.var({ error });
|
|
5784
5784
|
// Track consecutive errors and stop if threshold reached
|
|
5785
5785
|
state.consecutiveToolErrors++;
|