topP method

LLMBuilder topP(
  1. double topP
)

Sets the top-p (nucleus) sampling parameter

Implementation

LLMBuilder topP(double topP) {
  _config = _config.copyWith(topP: topP);
  return this;
}