GptConfig constructor

const GptConfig({
  1. required GptModel model,
  2. required String description,
  3. required int maxInputLength,
  4. required double? temperature,
  5. required List<I18nLocale> excludes,
})

Implementation

const GptConfig({
  required this.model,
  required this.description,
  required this.maxInputLength,
  required this.temperature,
  required this.excludes,
});