Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions api-reference/server/services/s2s/inworld.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -91,8 +91,8 @@ Before using Inworld Realtime services, you need:
`session_properties.audio.output.voice`.
</ParamField>

<ParamField path="tts_model" type="str" default="inworld-tts-1.5-max">
TTS model to use (e.g. "inworld-tts-1.5-max"). Shorthand for
<ParamField path="tts_model" type="str" default="inworld-tts-2">
TTS model to use (e.g. "inworld-tts-2"). Shorthand for
`session_properties.audio.output.model`.
</ParamField>

Expand Down Expand Up @@ -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",
)
```
Expand Down Expand Up @@ -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",
),
),
Expand Down
6 changes: 3 additions & 3 deletions api-reference/server/services/tts/inworld.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ WebSocket-based service for lowest latency streaming.
`settings=InworldTTSService.Settings(voice=...)` instead._
</ParamField>

<ParamField path="model" type="str" default="inworld-tts-1.5-max" deprecated>
<ParamField path="model" type="str" default="inworld-tts-2" deprecated>
ID of the model to use for synthesis. _Deprecated in v0.0.105. Use
`settings=InworldTTSService.Settings(model=...)` instead._
</ParamField>
Expand Down Expand Up @@ -155,7 +155,7 @@ HTTP-based service supporting both streaming and non-streaming modes.
`settings=InworldHttpTTSService.Settings(voice=...)` instead._
</ParamField>

<ParamField path="model" type="str" default="inworld-tts-1.5-max" deprecated>
<ParamField path="model" type="str" default="inworld-tts-2" deprecated>
ID of the model to use for synthesis. _Deprecated in v0.0.105. Use
`settings=InworldHttpTTSService.Settings(model=...)` instead._
</ParamField>
Expand Down Expand Up @@ -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,
),
Expand Down
Loading