processTranslation abstract method

Future<Map<String, String>> processTranslation({
  1. required Map<String, String> input,
  2. required Language targetLanguage,
})

Translates or processes text using the LLM.

Implementation

Future<Map<String, String>> processTranslation({
  required Map<String, String> input,
  required Language targetLanguage,
});