ZooGram
04/07/2025, 6:50 AMVapi Support Bot
04/07/2025, 6:52 AMvoice.chunkPlan.formatPlan.enabled = false
### 2. Use modelOutputInMessages
You might want to try using modelOutputInMessages
instead of transcribed output. This can be enabled by making an UPDATE request to your assistant:
curl -X PATCH https://api.vapi.ai/assistant/insert-your-assistant-id-here \
-H "Authorization: Bearer insert-your-private-key-here" \
-H "Content-Type: application/json" \
-d '{
"modelOutputInMessagesEnabled": true
}'
### 3. Follow Best Practices for User Input
The [Vapi Prompting Guide](https://docs.vapi.ai/prompting-guide) emphasizes: "Do not modify or attempt to correct user input parameters or user input, Pass them directly into the function or tool as given."
### 4. Time Format Information
From what I can see, the BrightSmile_Booking_CheckAvailability function seems to expect the datetime parameter as a string in ISO format. The function returns available timeslots in formats like "2025-01-20T09:00:00+01:00" according to [Discord discussions](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1330221332452999321).
Is there anything specific about these approaches you'd like me to elaborate on, or would you like to try a different solution?
Sources:
- [Voice Formatting Plan documentation](https://docs.vapi.ai/assistants/voice-formatting-plan)
- [Vapi Prompting Guide](https://docs.vapi.ai/prompting-guide)Vapi Support Bot
04/07/2025, 6:52 AMZooGram
04/07/2025, 7:12 AMKings Big
04/07/2025, 8:05 AM