notifyToolComplete method
Show a tool completion notification.
Implementation
Future<void> notifyToolComplete(String toolName, {bool isError = false}) =>
notify(
title: isError ? 'Tool Failed' : 'Tool Complete',
body: toolName,
priority: isError
? NotificationPriority.high
: NotificationPriority.low,
category: 'tool',
);