autoExecute property

  1. @TagNumber.new(3)
bool get autoExecute

Unset = true: the SDK runs your registered executor and closes the loop. Explicit false returns the parsed ToolCall without invoking it. Presence-tracked so "unset" is never confused with "explicitly false".

Implementation

@$pb.TagNumber(3)
$core.bool get autoExecute => $_getBF(1);
  1. @TagNumber.new(3)
set autoExecute (bool value)

Implementation

@$pb.TagNumber(3)
set autoExecute($core.bool value) => $_setBool(1, value);