An unofficial Google Translate API for Python providing free text translation and language detection capabilities
Overall
score
100%
Evaluation — 100%
↑ 1.01xAgent success when using this tile
Build a tool that compares translation results from different service endpoint configurations.
Create a Python module that compares how translations behave when using different service endpoints:
The tool should:
For a given text and target language:
@generates
from typing import List, Dict
async def compare_translations(
text: str,
dest_lang: str,
service_urls: List[str]
) -> Dict[str, str]:
"""
Compare translations of the same text across different service endpoints.
Args:
text: The text to translate
dest_lang: Target language code (e.g., 'es', 'fr', 'ja')
service_urls: List of service URLs to use for translation
Returns:
Dictionary mapping service URL to translated text
"""
passProvides translation services with configurable backend URLs.
@satisfied-by
Install with Tessl CLI
npx tessl i tessl/pypi-googletrans@4.0.0docs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10