topP property

double? get topP

Top-P sampling

Implementation

double? get topP => _topP;
set topP (double? value)

Implementation

set topP(double? value) {
  _topP = value;
  notifyListeners();
}