defaultTransformers function

Map<String, ConversationTransformerBuilderFn> defaultTransformers()

Maps builder names to their builder functions.

Implementation

Map<String, ConversationTransformerBuilderFn> defaultTransformers() {
  return {
    'Participants': (config, progress, cache) => Participants(config),
    'HtmlStrip': (config, progress, cache) => HtmlStrip(config),
    'RenameParticipants': (config, progress, cache) =>
        RenameParticipants(config),
    'Encoding': (config, progress, cache) => Encoding(config),
    'Trim': (config, progress, cache) => Trim(config),
    'RegexReplace': (config, progress, cache) => RegexReplace(config),
    'RegexExtract': (config, progress, cache) => RegexOutput(config),
    'CsvInput': (config, progress, cache) =>
        CsvInput(config, progress: progress),
    'CsvOutput': (config, progress, cache) => CsvOutput(config),
    'ExactReplace': (config, progress, cache) =>
        ExactReplace(config, cache: cache),
    'FullMatch': (config, progress, cache) => FullMatch(config),
    'FastChatInput': (config, progress, cache) => FastChatInput(config),
    'FastChatOutput': (config, progress, cache) => FastChatOutput(config),
    'FileConcatenate': (config, progress, cache) => FileConcatenate(config),
    'RawOutput': (config, progress, cache) => RawOutput(config),
    'DsBuildOutput': (config, progress, cache) => DsBuildOutput(config),
    'StatsCountOccurrences': (config, progress, cache) =>
        StatsCountOccurrences(config, cache: cache),
    'StatsAddColMerge': (config, progress, cache) => StatsAddColMerge(config)
  };
}