Text Translator Pack
★Trustedv1.0.0MIT★Gold Verified95by AgentNode · published 1 month ago · toolpack
Translate text between 50+ languages with automatic language detection.
Wraps deep-translator for reliable multi-language text translation.
Quick Start
agentnode install text-translator-packRuns in a subprocess with filtered environment by default. Declared permissions are policy-checked, not sandboxed.
Usage
From packagefrom text_translator_pack.tool import run
result = run(
text="Künstliche Intelligenz verändert die Art und Weise, wie wir Software entwickeln.",
target_language="en"
)
print(f"Detected language: {result['source_language']}")
print(f"Translation: {result['translated_text']}")
# Detected language: de
# Translation: Artificial intelligence is changing the way we develop software.
# Translate to multiple languages at once
result = run(
text="Welcome to our platform",
source_language="en",
target_languages=["es", "fr", "ja", "pt"]
)
for lang, translation in result["translations"].items():
print(f"{lang}: {translation}")Runs locally on your machine. No execution data is sent to AgentNode. Permissions are checked before execution. Learn how this works
Verification
Package installs and imports correctly. runtime checks passed. publisher tests passed.
This package was executed and validated by AgentNode before listing. Install, import, and runtime checks passed.
Verified in fixture mode
Last verified 9d ago· Runner v2.0.0
Use this when you need to...
- ›Translate user-submitted support tickets to English for triage
- ›Localize product UI strings into 20+ target languages
- ›Auto-detect and translate incoming chat messages in real time
- ›Batch-translate CSV content columns for multilingual datasets
- ›Translate API documentation snippets for international developer portals
README
Version History
Capabilities
Permissions
Declared by the publisher. Checked before execution by the policy gate.
Permissions are policy-checked before execution. Network and filesystem access are not sandboxed at runtime. Learn more
Privacy
All tool execution happens locally on your machine. AgentNode never receives:
- • Tool inputs or outputs
- • Execution logs
- • Data your agent processes
Only install events and search queries are sent to the registry.
agentnode install text-translator-packFiles (3)
License
MITStats
Compatibility
Frameworks
Runtime
pythonPython Version
>=3.10Trust & Security
Publisher
AgentNode
@agentnode