big-controller-60015
08/12/2025, 9:08 AMtall-airline-16756
08/12/2025, 9:08 AMtall-airline-16756
08/12/2025, 9:08 AM# Using Cartesia STT with a specific model
stt = cartesia.STT(
model="ink-whisper",
language="en"
)
2. Change the STT Model on the Fly: You can switch models during a call by using the update_options
method like this: # Switching to a different model
await agent.stt.update_options(
model="nova-phonecall"
)
3. Switch Between STT Providers: If you want to change the STT provider entirely, just create a new AgentSession
with the configuration you want: # Switching to a different STT provider
await session.update_agent(
ShortAgent(
stt=openai.STT(
model="gpt-4o-transcribe"
)
)
)
If you have a particular STT provider or model in mind, just give me a shout! I’d be happy to help you with some more personalized advice.