fix: Add more logging for tool calls

This commit is contained in:
google-labs-jules[bot] 2025-08-02 21:40:17 +00:00
parent 2464d9406e
commit 66b0ca88d7

View file

@ -71,7 +71,8 @@ ${parsedThread}`,
call.name as SupportedFunctionCall,
)
) {
logger.log("Function called invoked:", call.name);
logger.log("Function call invoked:", call.name);
logger.log("Function call arguments:", call.args);
const functionResponse = await tools.handler(
call as typeof call & { name: SupportedFunctionCall },