ChatTemplate constructor

const ChatTemplate({
  1. required String system,
  2. required String user,
  3. required String assistant,
  4. String systemDefault = 'You are a helpful assistant.',
})

Creates a ChatTemplate with the given format strings.

Implementation

const ChatTemplate({
  required this.system,
  required this.user,
  required this.assistant,
  this.systemDefault = 'You are a helpful assistant.',
});