diff --git a/services/translator/src/api.py b/services/translator/src/api.py index a80cc65..95857d4 100644 --- a/services/translator/src/api.py +++ b/services/translator/src/api.py @@ -1,5 +1,8 @@ -import requests -import argostranslate.package -import argostranslate.translate -from googletrans import Translator as FreeGoogleTranslator -from cachetools import TTLCache \ No newline at end of file + # Backup models + self.marian_models = {} # Will load specific language pairs + + # Free translation services + self.free_google_translator = None + + # Argos translate + self.argos_installed_packages = set() \ No newline at end of file