April 29, 2026

LLM Model Updates & Cartesia Speed Control

GPT-5.5 LLM Model Support

OpenAI’s GPT-5.5 model is now available as a managed LLM in the Voice Agent API. GPT-5.5 is an Advanced tier model.

Set the model in your agent configuration:

1{
2 "agent": {
3 "think": {
4 "provider": {
5 "type": "open_ai",
6 "model": "gpt-5.5",
7 "temperature": 0.7
8 }
9 }
10 }
11}

For the full list of supported models and pricing tiers, see the Voice Agent LLM Models documentation.

Llama Nemotron Super 49B Removed

The llama-nemotron-super-49B (Llama Nemotron Super 49B) model has been removed from the NVIDIA provider due to poor performance. The nemotron-3-nano-30B-A3B model remains available. See the NVIDIA models table for current options.

Cartesia TTS Speed Control

The agent.speak.provider.speed parameter now supports Cartesia TTS in addition to Deepgram TTS. For Cartesia, the parameter accepts the following preset values:

  • slowest
  • slow
  • normal
  • fast
  • fastest

You can also pass a numerical value for more granular control. See the Cartesia speed documentation for details.

1{
2 "agent": {
3 "speak": {
4 "provider": {
5 "type": "cartesia",
6 "model_id": "sonic-2",
7 "voice": {
8 "mode": "id",
9 "id": "a167e0f3-df7e-4d52-a9c3-f949145efdab"
10 },
11 "speed": "fast"
12 }
13 }
14 }
15}

For more details, see the TTS Models documentation.