Help us improve
Share bugs, ideas, or general feedback.
From zoom-skills
Translates plain text synchronously (fast mode) or processes batch text files asynchronously (batch mode) using the Zoom AI Services API. Includes JWT auth, webhook-driven status updates, and one-target-language workflows.
npx claudepluginhub zoom/skills --plugin zoom-skillsHow this skill is triggered — by the user, by Claude, or both
Slash command
/zoom-skills:translatorThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Implementation guidance for Zoom AI Services Translator across:
Transcribes uploaded or stored media via Zoom AI Services Scribe using synchronous fast mode or batch S3 jobs with webhook callbacks, including Build-platform JWT auth.
Integrates Azure AI Text Translation SDK in Python for real-time translation, transliteration, language detection, and dictionary lookup in apps.
Azure AI Text Translation SDK for real-time text translation, transliteration, language detection, and dictionary lookup in Python.
Share bugs, ideas, or general feedback.
Implementation guidance for Zoom AI Services Translator across:
POST /aiservices/translator/translate)/aiservices/translator/jobs*)Official docs:
source_language and a single target_languages entry.result.translations.| Mode | Method | Path | Use |
|---|---|---|---|
| Fast | POST | /aiservices/translator/translate | Synchronous translation for one text input |
| Batch | POST | /aiservices/translator/jobs | Submit asynchronous batch translation job |
| Batch | GET | /aiservices/translator/jobs | List batch translation jobs |
| Batch | GET | /aiservices/translator/jobs/{jobId} | Inspect job summary/state |
| Batch | DELETE | /aiservices/translator/jobs/{jobId} | Cancel queued/processing job |
| Batch | GET | /aiservices/translator/jobs/{jobId}/files | Inspect per-file results |
| Batch | GET | /aiservices/translator/jobs/{jobId}/files/{fileId} | Inspect one per-file result |
| Need | Use |
|---|---|
One text value under 4,000 characters | Fast mode |
.txt files in S3 | Batch mode |
| Chat messages, UI strings, workflow actions | Fast mode |
| Large offline document archive | Batch mode |
source_language or target_languages set to en-US.en-US and es-ES, not short codes such as en.translatortranslatortranslator + ../webhooks/SKILL.md