firefly_0206
03/07/2025, 1:15 AMKyle
03/08/2025, 1:05 AMfirefly_0206
03/10/2025, 6:37 AMfirefly_0206
03/11/2025, 5:17 AMKyle
03/12/2025, 9:18 PMKyle
03/12/2025, 9:35 PMfirefly_0206
03/13/2025, 4:47 AMfirefly_0206
03/14/2025, 4:04 AMfirefly_0206
03/20/2025, 7:13 AMKyle
03/22/2025, 3:50 AMKyle
03/22/2025, 3:51 AMfirefly_0206
04/02/2025, 3:50 AMShubham Bajaj
04/02/2025, 4:07 AMfirefly_0206
04/02/2025, 5:21 AMfirefly_0206
04/04/2025, 12:45 AMKyle
04/06/2025, 12:40 PMShubham Bajaj
04/07/2025, 3:36 PMShubham Bajaj
04/07/2025, 3:43 PMShubham Bajaj
04/07/2025, 3:45 PMbash
curl -X PATCH "https://api.vapi.ai/assistant/{ASSISTANT_ID}" \
-H "Authorization: Bearer {YOUR_API_KEY}" \
-H "Content-Type: application/json" \
-d '{
"voice": {
"chunkPlan": {
"enabled": true,
"formatPlan": {
"enabled": true,
"formattersEnabled": [
"acronym",
"dollarAmount",
"email",
"date",
"time",
"distance",
"unit",
"percentage",
"phoneNumber",
"number"
]
}
}
}
}'
This configuration:
1. Explicitly keeps the chunk plan enabled ("enabled": true
)
2. Explicitly keeps the format plan enabled ("enabled": true
)
3. Only includes non-markdown related formatters by removing:
- "markdown"
- directly handles markdown symbols like underscores, backticks, tildes
- "asterisk"
- handles text between asterisks (markdown for bold/italic)
- "quote"
- handles quotes (can be part of markdown formatting)
- "dash"
- handles dashes (used in markdown for lists)
- "newline"
- handles newlines (markdown uses these for formatting)
- "colon"
- handles colons (can be used in markdown formatting)
The remaining formatters focus only on content-specific formatting like numbers, dates, acronyms, etc., rather than markdown-specific syntax elements.
Remember to replace:
- {ASSISTANT_ID}
with your actual assistant ID
- {YOUR_API_KEY}
with your Vapi API keyfirefly_0206
04/08/2025, 2:49 AMfirefly_0206
04/08/2025, 3:18 AMfirefly_0206
04/08/2025, 3:40 AMKyle
04/09/2025, 4:16 AMKyle
04/09/2025, 4:22 AMKyle
04/09/2025, 4:25 AM"voice": {
"provider": "11labs",
"voiceId": "LtPsVjX1k0Kl4StEMZPK",
"stability": 0.6,
"similarityBoost": 1,
"style": 0.1,
"useSpeakerBoost": false,
"speed": 1,
"optimizeStreamingLatency": 3,
"model": "eleven_turbo_v2_5",
"chunkPlan": {
"enabled": true,
"minCharacters": 30,
"punctuationBoundaries": [
".",
",",
"!",
"?",
"،"
],
"formatPlan": {
"enabled": true,
"formattersEnabled": [
"markdown",
"asterisk",
"newline",
"colon",
"acronym",
"dollarAmount",
"email",
"date",
"time",
"distance",
"unit",
"percentage",
"phoneNumber",
"number"
],
"numberToDigitsCutoff": 2100,
"replacements": []
}
},
"fallbackPlan": {
"voices": []
},
"inputMinCharacters": 30,
"inputPunctuationBoundaries": [
".",
",",
"!",
"?",
"،"
],
"inputPreprocessingEnabled": true,
"inputReformattingEnabled": true
},
Kyle
04/09/2025, 4:26 AM