Short name describing what triggered the graph break
hints_wrapper: improper args/kwargs
Values or code snippet captured at the break point
args: {args}, kwargs: {kwargs}
Explanation of why the graph break was triggered
hints_wrapper expects 3 positional arguments (got {len(args)}) and 1 keyword argument (got {len(kwargs)}). Usage: hints_wrapper(body_fn, args, kwargs, hints=…). args is expected to be list/tuple and kwargs is expected to be a dict.
Hints on how to resolve the graph break