@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/esm/index.js
CHANGED
|
@@ -5282,7 +5282,7 @@ class OperateLoop {
|
|
|
5282
5282
|
};
|
|
5283
5283
|
const toolResultFormatted = this.adapter.formatToolResult(toolCall, errorResult);
|
|
5284
5284
|
state.responseBuilder.appendToHistory(toolResultFormatted);
|
|
5285
|
-
log.
|
|
5285
|
+
log.warn(`Error executing function call ${toolCall.name}`);
|
|
5286
5286
|
log.var({ error });
|
|
5287
5287
|
// Track consecutive errors and stop if threshold reached
|
|
5288
5288
|
state.consecutiveToolErrors++;
|
|
@@ -5777,7 +5777,7 @@ class StreamLoop {
|
|
|
5777
5777
|
call_id: toolCall.callId,
|
|
5778
5778
|
name: toolCall.name,
|
|
5779
5779
|
});
|
|
5780
|
-
log.
|
|
5780
|
+
log.warn(`Error executing function call ${toolCall.name}`);
|
|
5781
5781
|
log.var({ error });
|
|
5782
5782
|
// Track consecutive errors and stop if threshold reached
|
|
5783
5783
|
state.consecutiveToolErrors++;
|