topP method
Sets the top-p (nucleus) sampling parameter
Implementation
LLMBuilder topP(double topP) {
_config = _config.copyWith(topP: topP);
return this;
}
Sets the top-p (nucleus) sampling parameter
LLMBuilder topP(double topP) {
_config = _config.copyWith(topP: topP);
return this;
}