maxTokens method
Sets the maximum number of tokens to generate
Implementation
LLMBuilder maxTokens(int tokens) {
_config = _config.copyWith(maxTokens: tokens);
return this;
}
Sets the maximum number of tokens to generate
LLMBuilder maxTokens(int tokens) {
_config = _config.copyWith(maxTokens: tokens);
return this;
}