topK method
Sets the top-k sampling parameter
Implementation
LLMBuilder topK(int topK) {
_config = _config.copyWith(topK: topK);
return this;
}
Sets the top-k sampling parameter
LLMBuilder topK(int topK) {
_config = _config.copyWith(topK: topK);
return this;
}