AgentStack
SKILL verified MIT Self-run

Inworld

skill-itechmeat-llm-code-inworld · by itechmeat

Inworld TTS API. Covers voice cloning, audio markups, timestamps. Use when integrating Inworld text-to-speech, cloning voices, adding audio markups (SSML-like), or aligning viseme timestamps. Keywords: Inworld, text-to-speech, TTS, voice cloning, visemes.

No reviews yet
0 installs
14 views
0.0% view→install

Install

$ agentstack add skill-itechmeat-llm-code-inworld

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets Used
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Inworld? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Inworld AI

Text-to-Speech platform with voice cloning, audio markups, and timestamp alignment.

Quick Navigation

| Topic | Reference | | ------------- | ----------------------------------------------- | | Installation | [installation.md](references/installation.md) | | Voice Cloning | [cloning.md](references/cloning.md) | | Voice Control | [voice-control.md](references/voice-control.md) | | API Reference | [api.md](references/api.md) |

When to Use

  • Text-to-speech audio generation
  • Voice cloning from 5-15 seconds of audio
  • Emotion-controlled speech ([happy], [sad], etc.)
  • Word/phoneme timestamps for lip sync
  • Custom pronunciation with IPA

Models

| Model | ID | Latency | Price | | ------------ | ---------------------- | ------- | ----------- | | TTS-2 | inworld-tts-2 | latest | see pricing | | TTS 1.5 Max | inworld-tts-1.5-max | legacy | legacy | | TTS 1.5 Mini | inworld-tts-1.5-mini | legacy | legacy |

Minimal Example

import requests, base64, os

response = requests.post(
    "https://api.inworld.ai/tts/v1/voice",
    headers={"Authorization": f"Basic {os.getenv('INWORLD_API_KEY')}"},
    json={"text": "Hello!", "voiceId": "Ashley", "modelId": "inworld-tts-1.5-max"}
)
audio = base64.b64decode(response.json()['audioContent'])

Key Features

  • 15 languages — en, zh, ja, ko, ru, it, es, pt, fr, de, pl, nl, hi, he, ar
  • Instant cloning — 5-15 seconds audio, no training
  • Audio markups[happy], [laughing], [sigh] (English only)
  • Timestamps — word, phoneme, viseme timing for lip sync
  • Streaming/voice:stream endpoint
  • TTS-2 steering — natural-language bracketed directions such as [say excitedly] or [whisper in a hushed style]
  • Delivery modeSTABLE, BALANCED, CREATIVE trade consistency for emotional range
  • Cross-lingual synthesis — reuse one voice across multiple languages; voice localization improves native-sounding output

Release Highlights (TTS-2)

  • Realtime TTS-2 becomes the new primary model line via modelId="inworld-tts-2".
  • Steering moves beyond the older fixed emotion tags: free-form bracketed directions can control style, pitch, speed, intensity, and non-verbals.
  • Multilingual coverage expands with production quality across 15 languages and broader experimental coverage beyond that.
  • deliveryMode adds a stability-vs-creativity knob, and specifying language matters more for cross-lingual output quality.

Prohibitions

  • Audio markups work only in English
  • Use ONE emotion markup at text beginning
  • Match voice language to text language
  • Instant cloning may not work for children's voices or unique accents

Links

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.