PromptSnapshot constructor

const PromptSnapshot({
  1. required String text,
  2. required List<String> stopSequences,
  3. required int maxTokens,
  4. required double temperature,
  5. required int? topK,
  6. required double? topP,
  7. required int? seed,
  8. required int imageCount,
  9. required int contextSize,
  10. required DateTime capturedAt,
})

Implementation

const PromptSnapshot({
  required this.text,
  required this.stopSequences,
  required this.maxTokens,
  required this.temperature,
  required this.topK,
  required this.topP,
  required this.seed,
  required this.imageCount,
  required this.contextSize,
  required this.capturedAt,
});