CompletionRequest constructor

const CompletionRequest({
  1. required String prompt,
  2. int? maxTokens,
  3. double? temperature,
  4. double? topP,
  5. int? topK,
  6. List<String>? stop,
})

Implementation

const CompletionRequest({
  required this.prompt,
  this.maxTokens,
  this.temperature,
  this.topP,
  this.topK,
  this.stop,
});