RAGQueryOptions constructor

const RAGQueryOptions({
  1. required String question,
  2. String? systemPrompt,
  3. int maxTokens = 512,
  4. double temperature = 0.7,
  5. double topP = 0.9,
  6. int topK = 40,
})

Implementation

const RAGQueryOptions({
  required this.question,
  this.systemPrompt,
  this.maxTokens = 512,
  this.temperature = 0.7,
  this.topP = 0.9,
  this.topK = 40,
});