ModelConfig constructor

ModelConfig({
  1. int? nCtx,
  2. int? maxTokens,
  3. bool? enableThinking,
  4. String? npuLibFolderPath,
  5. String? npuModelFolderPath,
})

Implementation

ModelConfig({
  this.nCtx,
  this.maxTokens,
  this.enableThinking,
  this.npuLibFolderPath,
  this.npuModelFolderPath,
});