From 643f5e808833a0f0aa7b81a35eab8f670f73f7b2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 5 May 2026 18:02:51 +0000 Subject: [PATCH] docs: update default Inworld TTS model to inworld-tts-2 Updates documentation to reflect the change in PR #4422 where the default TTS model was changed from inworld-tts-1.5-max to inworld-tts-2 across InworldRealtimeLLMService, InworldTTSService, and InworldHttpTTSService. Changes: - Updated default value in Configuration sections - Updated code examples to use new default model - Both old models (inworld-tts-1.5-max and inworld-tts-1.5-mini) remain valid --- api-reference/server/services/s2s/inworld.mdx | 8 ++++---- api-reference/server/services/tts/inworld.mdx | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/api-reference/server/services/s2s/inworld.mdx b/api-reference/server/services/s2s/inworld.mdx index a89adec2..6d1575e5 100644 --- a/api-reference/server/services/s2s/inworld.mdx +++ b/api-reference/server/services/s2s/inworld.mdx @@ -91,8 +91,8 @@ Before using Inworld Realtime services, you need: `session_properties.audio.output.voice`. - - TTS model to use (e.g. "inworld-tts-1.5-max"). Shorthand for + + TTS model to use (e.g. "inworld-tts-2"). Shorthand for `session_properties.audio.output.model`. @@ -217,7 +217,7 @@ llm = InworldRealtimeLLMService( api_key=os.getenv("INWORLD_API_KEY"), llm_model="openai/gpt-4.1-nano", voice="Sarah", - tts_model="inworld-tts-1.5-max", + tts_model="inworld-tts-2", stt_model="assemblyai/universal-streaming-multilingual", ) ``` @@ -255,7 +255,7 @@ session_properties = SessionProperties( ), output=AudioOutput( format=PCMAudioFormat(rate=24000), - model="inworld-tts-1.5-max", + model="inworld-tts-2", voice="Sarah", ), ), diff --git a/api-reference/server/services/tts/inworld.mdx b/api-reference/server/services/tts/inworld.mdx index 5d1e2c2c..17e07a4a 100644 --- a/api-reference/server/services/tts/inworld.mdx +++ b/api-reference/server/services/tts/inworld.mdx @@ -75,7 +75,7 @@ WebSocket-based service for lowest latency streaming. `settings=InworldTTSService.Settings(voice=...)` instead._ - + ID of the model to use for synthesis. _Deprecated in v0.0.105. Use `settings=InworldTTSService.Settings(model=...)` instead._ @@ -155,7 +155,7 @@ HTTP-based service supporting both streaming and non-streaming modes. `settings=InworldHttpTTSService.Settings(voice=...)` instead._ - + ID of the model to use for synthesis. _Deprecated in v0.0.105. Use `settings=InworldHttpTTSService.Settings(model=...)` instead._ @@ -208,7 +208,7 @@ tts = InworldTTSService( api_key=os.getenv("INWORLD_API_KEY"), settings=InworldTTSService.Settings( voice="Ashley", - model="inworld-tts-1.5-max", + model="inworld-tts-2", temperature=0.8, speaking_rate=1.1, ),