maxOutputTokens property

  1. @TagNumber.new(1)
int get maxOutputTokens

Every knob below has explicit presence: ABSENT means the annotated default applies, and any value the caller sets -- including 0 -- is honoured verbatim. Nothing treats 0 as unset.

Sampler chain order is fixed: repeat_penalty -> top_k -> top_p -> min_p -> temperature (llama.cpp order, minus the samplers we do not expose). top_k/min_p/repeat_penalty default ON to match llama.cpp and Ollama, which both ship these on because small quantized models loop without them.

Implementation

@$pb.TagNumber(1)
$core.int get maxOutputTokens => $_getIZ(0);
  1. @TagNumber.new(1)
set maxOutputTokens (int value)

Implementation

@$pb.TagNumber(1)
set maxOutputTokens($core.int value) => $_setSignedInt32(0, value);