invoke method
Invokes the function with the given arguments.
Implementation
Future<Object?> invoke(
AIFunctionArguments? arguments, {
CancellationToken? cancellationToken,
}) =>
invokeCore(
arguments ?? AIFunctionArguments(),
cancellationToken: cancellationToken,
);