Remove one extra print() statement

This commit is contained in:
Laine
2025-03-14 10:26:58 -04:00
parent 2472558f0c
commit 8d2099fa8e

View File

@@ -493,7 +493,6 @@ def dynamic_tool_activity(args: Sequence[RawValue]) -> dict:
# Delegate to the relevant function # Delegate to the relevant function
handler = get_handler(tool_name) handler = get_handler(tool_name)
result = handler(tool_args) result = handler(tool_args)
print(f"in dynamic tool activity, result: {result}")
# Optionally log or augment the result # Optionally log or augment the result
activity.logger.info(f"Tool '{tool_name}' result: {result}") activity.logger.info(f"Tool '{tool_name}' result: {result}")