|
| 1 | +## Claude 3.7 Sonnet and GPT 4.5 preview, New Hume AI Voice Provider, New Supabase Storage Provider, Enhanced Call Transfer Options |
| 2 | + |
| 3 | +1. **Claude 3.7 Sonnet with Thinking Configuration Support**: |
| 4 | +You can now use the latest claude-3-7-sonnet-20250219 model with a new "thinking" feature via the [`AnthropicThinkingConfig`](https://api.vapi.ai/api#:~:text=AnthropicThinkingConfig) schema. |
| 5 | +Configure it in `assistant.model` or `call.squad.members.assistant.model`: |
| 6 | +```json |
| 7 | +{ |
| 8 | + "model": "claude-3-7-sonnet-20250219", |
| 9 | + "provider": "anthropic", |
| 10 | + "thinking": { |
| 11 | + "type": "enabled", |
| 12 | + "budgetTokens": 5000 // min 1024, max 100000 |
| 13 | + } |
| 14 | +} |
| 15 | +``` |
| 16 | + |
| 17 | +2. **OpenAI GPT-4.5-Preview Support**: |
| 18 | +You can now use the latest gpt-4.5-preview model as a primary model or fallback option via the [`OpenAIModel`](https://api.vapi.ai/api#:~:text=OpenAIModel) schema. |
| 19 | +Configure it in `assistant.model` or `call.squad.members.assistant.model`: |
| 20 | +```json |
| 21 | +{ |
| 22 | + "model": "gpt-4.5-preview", |
| 23 | + "provider": "openai" |
| 24 | +} |
| 25 | +``` |
| 26 | + |
| 27 | +3. **New Hume Voice Provider**: |
| 28 | +Integrated Hume AI as a new voice provider with the "octave" model for text-to-speech synthesis. |
| 29 | + |
| 30 | +<Frame caption="Hume Voice Provider"> |
| 31 | + <img src="../static/images/changelog/hume-voice-configuration.png" alt="Hume Voice Provider" /> |
| 32 | +</Frame> |
| 33 | + |
| 34 | +4. **Supabase Storage Integration**: |
| 35 | +New Supabase S3-compatible storage support for file operations. This integration lets developers configure buckets and paths across 16 regions, enabling structured file storage with proper authentication. |
| 36 | +Configure [`SupabaseBucketPlan`](https://api.vapi.ai/api#:~:text=SupabaseBucketPlan) in `assistant.credentials.bucketPlan`,`call.squad.members.assistant.credentials.bucketPlan` |
| 37 | + |
| 38 | +5. **Voice Speed Control** |
| 39 | +Added a speed parameter to ElevenLabs voices ranging from 0.7 (slower) to 1.2 (faster) [`ElevenLabsVoice`](https://api.vapi.ai/api#:~:text=ElevenLabsVoice). This enhancement gives developers more control over speech cadence for more natural-sounding conversations. |
| 40 | + |
| 41 | +6. **Enhanced Call Transfer Options in TransferPlan** |
| 42 | +Added a new dial option to the sipVerb parameter for call transfers. This complements the existing refer (default) and bye options, providing more flexibility in call handling. |
| 43 | +- 'dial': Uses SIP DIAL to transfer the call |
| 44 | + |
| 45 | +7. **Zero-Value Minumum Subscription Minutes** |
| 46 | +Changed the minimum value for minutesUsed and minutesIncluded from 1 to 0. This supports tracking of new subscriptions and free tiers with no included minutes. |
| 47 | + |
| 48 | +8. **Zero-Value Minimum KeypadInputPlan Timeout** |
| 49 | +Adjusted the KeypadInputPlan.timeoutSeconds minimum from 0.5 to 0. |
0 commit comments