agent-swarm-kit 1.1.52 → 1.1.53
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/build/index.cjs +1 -1
- package/build/index.mjs +1 -1
- package/package.json +1 -1
package/build/index.cjs
CHANGED
|
@@ -3854,7 +3854,7 @@ const RUN_FN = async (incoming, self) => {
|
|
|
3854
3854
|
*/
|
|
3855
3855
|
const EXECUTE_FN = async (incoming, mode, self) => {
|
|
3856
3856
|
GLOBAL_CONFIG.CC_LOGGER_ENABLE_DEBUG &&
|
|
3857
|
-
self.params.logger.debug(`ClientAgent agentName=${self.params.agentName} clientId=${self.params.clientId} execute begin`, { incoming, mode });
|
|
3857
|
+
self.params.logger.debug(`ClientAgent agentName=${self.params.agentName} clientId=${self.params.clientId} maxToolCalls=${self.params.maxToolCalls} execute begin`, { incoming, mode });
|
|
3858
3858
|
self.params.onExecute &&
|
|
3859
3859
|
self.params.onExecute(self.params.clientId, self.params.agentName, incoming, mode);
|
|
3860
3860
|
await self.params.history.push({
|
package/build/index.mjs
CHANGED
|
@@ -3852,7 +3852,7 @@ const RUN_FN = async (incoming, self) => {
|
|
|
3852
3852
|
*/
|
|
3853
3853
|
const EXECUTE_FN = async (incoming, mode, self) => {
|
|
3854
3854
|
GLOBAL_CONFIG.CC_LOGGER_ENABLE_DEBUG &&
|
|
3855
|
-
self.params.logger.debug(`ClientAgent agentName=${self.params.agentName} clientId=${self.params.clientId} execute begin`, { incoming, mode });
|
|
3855
|
+
self.params.logger.debug(`ClientAgent agentName=${self.params.agentName} clientId=${self.params.clientId} maxToolCalls=${self.params.maxToolCalls} execute begin`, { incoming, mode });
|
|
3856
3856
|
self.params.onExecute &&
|
|
3857
3857
|
self.params.onExecute(self.params.clientId, self.params.agentName, incoming, mode);
|
|
3858
3858
|
await self.params.history.push({
|