disableThinking property

  1. @TagNumber.new(17)
bool get disableThinking

When true, suppress the model's thinking/reasoning phase during tool-enabled generation (commons prepends the model no-think directive at the prompt level — same contract as LLMGenerationOptions.disable_thinking). Default false.

Implementation

@$pb.TagNumber(17)
$core.bool get disableThinking => $_getBF(12);
  1. @TagNumber.new(17)
set disableThinking (bool value)

Implementation

@$pb.TagNumber(17)
set disableThinking($core.bool value) => $_setBool(12, value);