GenerationConfig constructor

GenerationConfig({
  1. double? temperature,
  2. int? topK,
  3. double? topP,
  4. int? candidateCount,
  5. int? maxOutputTokens,
  6. List<String>? stopSequences,
})

Implementation

GenerationConfig({
  this.temperature,
  this.topK,
  this.topP,
  this.candidateCount,
  this.maxOutputTokens,
  this.stopSequences,
});