nBatch property

int? get nBatch

logical maximum batch size that can be submitted to llama_decode

Implementation

int? get nBatch => _nBatch;
set nBatch (int? value)

Implementation

set nBatch(int? value) {
  _nBatch = value;
  notifyListeners();
}