FakeLocalAiSession constructor

FakeLocalAiSession({
  1. required int id,
  2. required double temperature,
  3. required int topK,
  4. double? topP,
  5. int? maxOutputTokens,
  6. String? systemInstruction,
  7. List<String> toolNames = const [],
})

Implementation

FakeLocalAiSession({
  required this.id,
  required this.temperature,
  required this.topK,
  this.topP,
  this.maxOutputTokens,
  this.systemInstruction,
  this.toolNames = const [],
});