5e4dc8e4
tangwang
翻译架构按“一个翻译服务 +
|
1
2
3
4
5
6
7
8
9
10
11
|
"""Translation backend registry."""
from .deepl import DeepLTranslationBackend
from .llm import LLMTranslationBackend
from .qwen_mt import QwenMTTranslationBackend
__all__ = [
"DeepLTranslationBackend",
"LLMTranslationBackend",
"QwenMTTranslationBackend",
]
|