tessl install tessl/pypi-googletrans@4.0.0An unofficial Google Translate API for Python providing free text translation and language detection capabilities
Agent Success
Agent success rate when using this tile
100%
Improvement
Agent success rate improvement when using this tile compared to baseline
1.01x
Baseline
Agent success rate without this tile
99%
A translation service that handles network timeouts gracefully when performing language translation operations.
@generates
async def translate_text(text: str, target_language: str) -> str:
"""
Translates the given text to the target language using a translator
with configured timeouts.
Args:
text: The text to translate
target_language: The target language code (e.g., 'es', 'fr', 'de')
Returns:
The translated text as a string
"""
passProvides translation capabilities with timeout configuration support.