SyniRuntimeGenerationConfig constructor

const SyniRuntimeGenerationConfig({
  1. int? maxTokens,
  2. int? ttftTimeoutMs,
  3. int? seed,
  4. double? temperature,
  5. int? topK,
  6. double? topP,
  7. double? minP,
  8. double? penaltyRepeat,
  9. double? penaltyFreq,
  10. double? dryMultiplier,
})

Implementation

const SyniRuntimeGenerationConfig({
  this.maxTokens,
  this.ttftTimeoutMs,
  this.seed,
  this.temperature,
  this.topK,
  this.topP,
  this.minP,
  this.penaltyRepeat,
  this.penaltyFreq,
  this.dryMultiplier,
});