GenerationConfig constructor

GenerationConfig({
  1. int? maxTokens,
  2. List<String>? stopWords,
  3. int? stopCount,
  4. int? nPast,
  5. SamplerConfig? samplerConfig,
  6. List<String>? imagePaths,
  7. int? imageCount,
  8. List<String>? audioPaths,
  9. int? audioCount,
})

Implementation

GenerationConfig({
  this.maxTokens,
  this.stopWords,
  this.stopCount,
  this.nPast,
  this.samplerConfig,
  this.imagePaths,
  this.imageCount,
  this.audioPaths,
  this.audioCount,
});