AlpacaFormat constructor

AlpacaFormat({
  1. String defaultSystemPrompt = "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
})

Implementation

AlpacaFormat({
  this.defaultSystemPrompt =
      "Below is an instruction that describes a task. Write a response that appropriately completes the request.",
}) : super(
        PromptFormatType.alpaca,
        inputSequence: '### Input:\n',
        outputSequence: '### Response:\n',
        systemSequence: '### Instruction:\n',
        stopSequence: '\n###',
      );