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,
),