maxTokens method

LLMBuilder maxTokens(
  1. int tokens
)

Sets the maximum number of tokens to generate

Implementation

LLMBuilder maxTokens(int tokens) {
  _config = _config.copyWith(maxTokens: tokens);
  return this;
}