An unofficial Google Translate API for Python providing free text translation and language detection capabilities
100
—
Does it follow best practices?
Impact
100%
1.02xAverage score across 10 eval scenarios
—
The risk profile of this skill
This plugin was archived by the owner on Jun 4, 2026
Reason: Retiring all tiles created prior to the transition to plugin support
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.
docs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10