Skip to content

Commit 78ea7d6

Browse files
Add changelog for 2025-06-11 (#504)
1 parent 7326eac commit 78ea7d6

File tree

2 files changed

+29
-0
lines changed

2 files changed

+29
-0
lines changed

fern/changelog/2025-06-11.mdx

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# Assembly AI Transcriber Improvements, chat cost tracking, and API tool enhancements
2+
3+
1. **Chat Cost Tracking**: You can now access detailed cost information per [Chat](https://api.vapi.ai/api#:~:text=FunctionCall-,Chat,-CreateChatDTO) and [Call](https://api.vapi.ai/api#:~:text=SchedulePlan-,Call,-CallBatchError), including total and per-component breakdowns. Use `Call.cost` and `Chat.cost` to get the total cost, and `Call.costs` and `Chat.costs` to get the breakdown.`
4+
5+
<CodeBlocks>
6+
```json title="Chat Schema (excerpt)"
7+
{
8+
"cost": 0.12,
9+
"costs": [
10+
{ "type": "model", "cost": 0.22 },
11+
{ "type": "chat", "cost": 0.10 },
12+
]
13+
}
14+
```
15+
</CodeBlocks>
16+
17+
2. **Enhanced AssemblyAI Transcriber Configuration**: You can now fine-tune the AssemblyAI transcriber with:
18+
- `maxTurnSilence`: The maximum amount of silence in milliseconds before a turn is considered complete.
19+
- `endOfTurnConfidenceThreshold`: The confidence threshold for determining the end of a turn.
20+
- `minEndOfTurnSilenceWhenConfident`: The minimum amount of silence in milliseconds before a turn is considered complete when the confidence is high.
21+
- `wordFinalizationMaxWaitTime`: The maximum amount of time in milliseconds to wait for word finalization.
22+
23+
3. **New Cartesia Transcriber Option**: You can now use the [Cartesia "Ink Whisper" transcriber](https://api.vapi.ai/api#:~:text=CartesiaTranscriber) for your for assistants and workflow nodes using `Assistant.transcriber` and `ConversationNode.transcriber`. Set this in your [Vapi Assistant dashboard today](https://dashboard.vapi.ai/assistants#:~:text=Transcriber).
24+
25+
<Frame caption="Cartesia Transcriber">
26+
<img src="../static/images/changelog/cartesia-transcriber.png" alt="Cartesia Transcriber" />
27+
</Frame>
28+
29+
4. **API Request Tool Variable Extraction**: You can now use [`assistant.model.tools[type=apiRequest].variableExtractionPlan`](https://api.vapi.ai/api#:~:text=VariableExtractionPlan) to extract and validate variables from API responses by defining a variable schema.
49.3 KB
Loading

0 commit comments

Comments
 (0)