GenerationHints constructor

const GenerationHints({
  1. double temperature = 0.7,
  2. int? maxTokens,
  3. double? topP,
  4. int? topK,
  5. bool stopAtFirstValidJSON = true,
  6. bool includeReasoning = false,
})

Implementation

const GenerationHints({
  this.temperature = 0.7,
  this.maxTokens,
  this.topP,
  this.topK,
  this.stopAtFirstValidJSON = true,
  this.includeReasoning = false,
});