OpenAITranslationService class
Translator that uses Open AI API for translation Open AI API Documentation: https://platform.openai.com/docs/api-reference/introduction
- Inheritance
-
- Object
- AbstractTranslationService
- OpenAITranslationService
- Mixed-in types
Constructors
- OpenAITranslationService({required String baseUrl, required String apiKey, required Logger logger, String? model})
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
-
translate(
String source, LanguageCode sourceLanguage, LanguageCode target) → Future< String> -
Translates given text to specified language
source- text which should be translatedsourceLanguage- the language in whichsourcewas giventarget- language to whichsourceshould be translatedoverride -
translateBulkToSingleTarget(
List< String> sources, LanguageCode sourceLanguage, LanguageCode target) → Future<List< String> > -
Translates given texts to specified language
sources- list of text which should be translatedsourceLanguage- the language in whichsourceswere giventarget- language to whichsourcesshould be translatedoverride -
translateToTargetsList(
String source, LanguageCode sourceLanguage, List< LanguageCode> targets) → Future<Translation> -
Translates given text to specified languages
source- text which should be translatedsourceLanguage- the language in whichsourcewas giventargets- list of languages to whichsourceshould be translatedoverride
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited