godlike
04/06/2025, 6:22 AMvapi.send
with a message type of system to handle this, but it caused issues. The agent started repeating itself and seemed to enter a corrupted or broken state. I also considered using vapi.say
, but that doesn't quite fit, since I don't want the agent to blurt something out abruptly or break the conversational context.
For reference, I'm using the @Vapi-ai/web SDK version 2.2.5 and dynamically generating agents per conversation.
Additionally, even if the call slightly exceeds the set time limit, Iβd like the agent to clearly communicate that the call is coming to an end, rather than just abruptly hanging up.
How do I implement this use case?godlike
04/06/2025, 6:22 AMVapi Support Bot
04/06/2025, 6:24 AMcurl -X PATCH 'https://api.vapi.ai/assistant/{ASSISTANT_ID}' \
-H 'Authorization: Bearer {YOUR_API_TOKEN}' \
-H 'Content-Type: application/json' \
-d '{
"maxDurationSeconds": 1800
}'
## Informing Users About Time Limits
To maintain a smooth conversation when approaching the time limit:
1. **Use Effective Prompting**: According to the [prompting guide](https://docs.vapi.ai/prompting-guide), structure your prompts with clear sections for identity, style, response guidelines, and goals. This helps the agent maintain context when it needs to introduce time-related information.
2. **Add Natural Speech Patterns**: Incorporate natural speech elements like hesitations and pauses to make the time limit warning feel more conversational. For example, use fillers like "uh," "um," or "well" when mentioning the time.
3. **Implement Context Management**: [Information shows](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1344181455567196170) you should maintain a running list of collected information and store current progress. This ensures the agent can smoothly return to the conversation after mentioning the time limit.
## Gracefully Ending the Call
For a smooth wrap-up when the time limit approaches:Vapi Support Bot
04/06/2025, 6:24 AMsay
Method Properly**: When it's time to end the call, use the say
method with the endCallAfterSpoken
parameter set to true
to gracefully end the call.
3. **Adjust Conversation Flow**: [Information indicates](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1335054553250533439) you should adjust the conversation flow in your VAPI script, incorporating conditions and branching to handle different scenarios based on the remaining time.
Would you like more specific information about any of these strategies for implementing time awareness in your voice agent?
Sources:
- [Discord discussion on call duration limits](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1343732017426071653)
- [Vapi Prompting Guide](https://docs.vapi.ai/prompting-guide)
- [Discord discussion on context management](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1344181455567196170)
- [Discord discussion on graceful call completion](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1336004944150401166)
- [Discord discussion on conversation flow](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1335054553250533439)Vapi Support Bot
04/06/2025, 6:24 AMcurl -X PATCH 'https://api.vapi.ai/assistant/{ASSISTANT_ID}' \
-H 'Authorization: Bearer {YOUR_API_TOKEN}' \
-H 'Content-Type: application/json' \
-d '{
"maxDurationSeconds": 1800
}'
## Informing Users About Time Limits
To maintain a smooth conversation when approaching the time limit:
1. **Use Effective Prompting**: According to the [prompting guide](https://docs.vapi.ai/prompting-guide), structure your prompts with clear sections for identity, style, response guidelines, and goals. This helps the agent maintain context when it needs to introduce time-related information.
2. **Add Natural Speech Patterns**: Incorporate natural speech elements like hesitations and pauses to make the time limit warning feel more conversational. For example, use fillers like "uh," "um," or "well" when mentioning the time.
3. **Implement Context Management**: [Information shows](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1344181455567196170) you should maintain a running list of collected information and store current progress. This ensures the agent can smoothly return to the conversation after mentioning the time limit.
## Gracefully Ending the Call
For a smooth wrap-up when the time limit approaches:Vapi Support Bot
04/06/2025, 6:24 AMsay
Method Properly**: When it's time to end the call, use the say
method with the endCallAfterSpoken
parameter set to true
to gracefully end the call.
3. **Adjust Conversation Flow**: [Information indicates](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1335054553250533439) you should adjust the conversation flow in your VAPI script, incorporating conditions and branching to handle different scenarios based on the remaining time.
Would you like more specific information about any of these strategies for implementing time awareness in your voice agent?
Sources:
- [Discord discussion on call duration limits](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1343732017426071653)
- [Vapi Prompting Guide](https://docs.vapi.ai/prompting-guide)
- [Discord discussion on context management](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1344181455567196170)
- [Discord discussion on graceful call completion](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1336004944150401166)
- [Discord discussion on conversation flow](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1335054553250533439)Vapi Support Bot
04/06/2025, 6:25 AMcurl -X PATCH 'https://api.vapi.ai/assistant/{ASSISTANT_ID}' \
-H 'Authorization: Bearer {YOUR_API_TOKEN}' \
-H 'Content-Type: application/json' \
-d '{
"maxDurationSeconds": 1800
}'
## Informing Users About Time Limits
To maintain a smooth conversation when approaching the time limit:
1. **Use Effective Prompting**: According to the [prompting guide](https://docs.vapi.ai/prompting-guide), structure your prompts with clear sections for identity, style, response guidelines, and goals. This helps the agent maintain context when it needs to introduce time-related information.
2. **Add Natural Speech Patterns**: Incorporate natural speech elements like hesitations and pauses to make the time limit warning feel more conversational. For example, use fillers like "uh," "um," or "well" when mentioning the time.
3. **Implement Context Management**: [Information shows](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1344181455567196170) you should maintain a running list of collected information and store current progress. This ensures the agent can smoothly return to the conversation after mentioning the time limit.
## Gracefully Ending the Call
For a smooth wrap-up when the time limit approaches:Vapi Support Bot
04/06/2025, 6:25 AMsay
Method Properly**: When it's time to end the call, use the say
method with the endCallAfterSpoken
parameter set to true
to gracefully end the call.
3. **Adjust Conversation Flow**: [Information indicates](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1335054553250533439) you should adjust the conversation flow in your VAPI script, incorporating conditions and branching to handle different scenarios based on the remaining time.
Would you like more specific information about any of these strategies for implementing time awareness in your voice agent?
Sources:
- [Discord discussion on call duration limits](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1343732017426071653)
- [Vapi Prompting Guide](https://docs.vapi.ai/prompting-guide)
- [Discord discussion on context management](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1344181455567196170)
- [Discord discussion on graceful call completion](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1336004944150401166)
- [Discord discussion on conversation flow](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1335054553250533439)Vapi Support Bot
04/06/2025, 6:26 AMcurl -X PATCH 'https://api.vapi.ai/assistant/{ASSISTANT_ID}' \
-H 'Authorization: Bearer {YOUR_API_TOKEN}' \
-H 'Content-Type: application/json' \
-d '{
"maxDurationSeconds": 1800
}'
## Informing Users About Time Limits
To maintain a smooth conversation when approaching the time limit:
1. **Use Effective Prompting**: According to the [prompting guide](https://docs.vapi.ai/prompting-guide), structure your prompts with clear sections for identity, style, response guidelines, and goals. This helps the agent maintain context when it needs to introduce time-related information.
2. **Add Natural Speech Patterns**: Incorporate natural speech elements like hesitations and pauses to make the time limit warning feel more conversational. For example, use fillers like "uh," "um," or "well" when mentioning the time.
3. **Implement Context Management**: [Information shows](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1344181455567196170) you should maintain a running list of collected information and store current progress. This ensures the agent can smoothly return to the conversation after mentioning the time limit.
## Gracefully Ending the Call
For a smooth wrap-up when the time limit approaches:Vapi Support Bot
04/06/2025, 6:26 AMsay
Method Properly**: When it's time to end the call, use the say
method with the endCallAfterSpoken
parameter set to true
to gracefully end the call.
3. **Adjust Conversation Flow**: [Information indicates](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1335054553250533439) you should adjust the conversation flow in your VAPI script, incorporating conditions and branching to handle different scenarios based on the remaining time.
Would you like more specific information about any of these strategies for implementing time awareness in your voice agent?
Sources:
- [Discord discussion on call duration limits](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1343732017426071653)
- [Vapi Prompting Guide](https://docs.vapi.ai/prompting-guide)
- [Discord discussion on context management](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1344181455567196170)
- [Discord discussion on graceful call completion](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1336004944150401166)
- [Discord discussion on conversation flow](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1335054553250533439)Vapi Support Bot
04/06/2025, 6:26 AMcurl -X PATCH 'https://api.vapi.ai/assistant/{ASSISTANT_ID}' \
-H 'Authorization: Bearer {YOUR_API_TOKEN}' \
-H 'Content-Type: application/json' \
-d '{
"maxDurationSeconds": 1800
}'
## Informing Users About Time Limits
To maintain a smooth conversation when approaching the time limit:
1. **Use Effective Prompting**: According to the [prompting guide](https://docs.vapi.ai/prompting-guide), structure your prompts with clear sections for identity, style, response guidelines, and goals. This helps the agent maintain context when it needs to introduce time-related information.
2. **Add Natural Speech Patterns**: Incorporate natural speech elements like hesitations and pauses to make the time limit warning feel more conversational. For example, use fillers like "uh," "um," or "well" when mentioning the time.
3. **Implement Context Management**: [Information shows](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1344181455567196170) you should maintain a running list of collected information and store current progress. This ensures the agent can smoothly return to the conversation after mentioning the time limit.
## Gracefully Ending the Call
For a smooth wrap-up when the time limit approaches:Vapi Support Bot
04/06/2025, 6:26 AMsay
Method Properly**: When it's time to end the call, use the say
method with the endCallAfterSpoken
parameter set to true
to gracefully end the call.
3. **Adjust Conversation Flow**: [Information indicates](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1335054553250533439) you should adjust the conversation flow in your VAPI script, incorporating conditions and branching to handle different scenarios based on the remaining time.
Would you like more specific information about any of these strategies for implementing time awareness in your voice agent?
Sources:
- [Discord discussion on call duration limits](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1343732017426071653)
- [Vapi Prompting Guide](https://docs.vapi.ai/prompting-guide)
- [Discord discussion on context management](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1344181455567196170)
- [Discord discussion on graceful call completion](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1336004944150401166)
- [Discord discussion on conversation flow](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1335054553250533439)Vapi Support Bot
04/06/2025, 6:27 AMcurl -X PATCH 'https://api.vapi.ai/assistant/{ASSISTANT_ID}' \
-H 'Authorization: Bearer {YOUR_API_TOKEN}' \
-H 'Content-Type: application/json' \
-d '{
"maxDurationSeconds": 1800
}'
## Informing Users About Time Limits
To maintain a smooth conversation when approaching the time limit:
1. **Use Effective Prompting**: According to the [prompting guide](https://docs.vapi.ai/prompting-guide), structure your prompts with clear sections for identity, style, response guidelines, and goals. This helps the agent maintain context when it needs to introduce time-related information.
2. **Add Natural Speech Patterns**: Incorporate natural speech elements like hesitations and pauses to make the time limit warning feel more conversational. For example, use fillers like "uh," "um," or "well" when mentioning the time.
3. **Implement Context Management**: [Information shows](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1344181455567196170) you should maintain a running list of collected information and store current progress. This ensures the agent can smoothly return to the conversation after mentioning the time limit.
## Gracefully Ending the Call
For a smooth wrap-up when the time limit approaches:Vapi Support Bot
04/06/2025, 6:27 AMsay
Method Properly**: When it's time to end the call, use the say
method with the endCallAfterSpoken
parameter set to true
to gracefully end the call.
3. **Adjust Conversation Flow**: [Information indicates](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1335054553250533439) you should adjust the conversation flow in your VAPI script, incorporating conditions and branching to handle different scenarios based on the remaining time.
Would you like more specific information about any of these strategies for implementing time awareness in your voice agent?
Sources:
- [Discord discussion on call duration limits](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1343732017426071653)
- [Vapi Prompting Guide](https://docs.vapi.ai/prompting-guide)
- [Discord discussion on context management](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1344181455567196170)
- [Discord discussion on graceful call completion](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1336004944150401166)
- [Discord discussion on conversation flow](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1335054553250533439)Vapi Support Bot
04/06/2025, 6:28 AMcurl -X PATCH 'https://api.vapi.ai/assistant/{ASSISTANT_ID}' \
-H 'Authorization: Bearer {YOUR_API_TOKEN}' \
-H 'Content-Type: application/json' \
-d '{
"maxDurationSeconds": 1800
}'
## Informing Users About Time Limits
To maintain a smooth conversation when approaching the time limit:
1. **Use Effective Prompting**: According to the [prompting guide](https://docs.vapi.ai/prompting-guide), structure your prompts with clear sections for identity, style, response guidelines, and goals. This helps the agent maintain context when it needs to introduce time-related information.
2. **Add Natural Speech Patterns**: Incorporate natural speech elements like hesitations and pauses to make the time limit warning feel more conversational. For example, use fillers like "uh," "um," or "well" when mentioning the time.
3. **Implement Context Management**: [Information shows](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1344181455567196170) you should maintain a running list of collected information and store current progress. This ensures the agent can smoothly return to the conversation after mentioning the time limit.
## Gracefully Ending the Call
For a smooth wrap-up when the time limit approaches:Vapi Support Bot
04/06/2025, 6:28 AMsay
Method Properly**: When it's time to end the call, use the say
method with the endCallAfterSpoken
parameter set to true
to gracefully end the call.
3. **Adjust Conversation Flow**: [Information indicates](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1335054553250533439) you should adjust the conversation flow in your VAPI script, incorporating conditions and branching to handle different scenarios based on the remaining time.
Would you like more specific information about any of these strategies for implementing time awareness in your voice agent?
Sources:
- [Discord discussion on call duration limits](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1343732017426071653)
- [Vapi Prompting Guide](https://docs.vapi.ai/prompting-guide)
- [Discord discussion on context management](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1344181455567196170)
- [Discord discussion on graceful call completion](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1336004944150401166)
- [Discord discussion on conversation flow](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1335054553250533439)Vapi Support Bot
04/06/2025, 6:29 AMcurl -X PATCH 'https://api.vapi.ai/assistant/{ASSISTANT_ID}' \
-H 'Authorization: Bearer {YOUR_API_TOKEN}' \
-H 'Content-Type: application/json' \
-d '{
"maxDurationSeconds": 1800
}'
## Informing Users About Time Limits
To maintain a smooth conversation when approaching the time limit:
1. **Use Effective Prompting**: According to the [prompting guide](https://docs.vapi.ai/prompting-guide), structure your prompts with clear sections for identity, style, response guidelines, and goals. This helps the agent maintain context when it needs to introduce time-related information.
2. **Add Natural Speech Patterns**: Incorporate natural speech elements like hesitations and pauses to make the time limit warning feel more conversational. For example, use fillers like "uh," "um," or "well" when mentioning the time.
3. **Implement Context Management**: [Information shows](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1344181455567196170) you should maintain a running list of collected information and store current progress. This ensures the agent can smoothly return to the conversation after mentioning the time limit.
## Gracefully Ending the Call
For a smooth wrap-up when the time limit approaches:Vapi Support Bot
04/06/2025, 6:29 AMsay
Method Properly**: When it's time to end the call, use the say
method with the endCallAfterSpoken
parameter set to true
to gracefully end the call.
3. **Adjust Conversation Flow**: [Information indicates](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1335054553250533439) you should adjust the conversation flow in your VAPI script, incorporating conditions and branching to handle different scenarios based on the remaining time.
Would you like more specific information about any of these strategies for implementing time awareness in your voice agent?
Sources:
- [Discord discussion on call duration limits](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1343732017426071653)
- [Vapi Prompting Guide](https://docs.vapi.ai/prompting-guide)
- [Discord discussion on context management](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1344181455567196170)
- [Discord discussion on graceful call completion](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1336004944150401166)
- [Discord discussion on conversation flow](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1335054553250533439)Vapi Support Bot
04/06/2025, 6:29 AMcurl -X PATCH 'https://api.vapi.ai/assistant/{ASSISTANT_ID}' \
-H 'Authorization: Bearer {YOUR_API_TOKEN}' \
-H 'Content-Type: application/json' \
-d '{
"maxDurationSeconds": 1800
}'
## Informing Users About Time Limits
To maintain a smooth conversation when approaching the time limit:
1. **Use Effective Prompting**: According to the [prompting guide](https://docs.vapi.ai/prompting-guide), structure your prompts with clear sections for identity, style, response guidelines, and goals. This helps the agent maintain context when it needs to introduce time-related information.
2. **Add Natural Speech Patterns**: Incorporate natural speech elements like hesitations and pauses to make the time limit warning feel more conversational. For example, use fillers like "uh," "um," or "well" when mentioning the time.
3. **Implement Context Management**: [Information shows](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1344181455567196170) you should maintain a running list of collected information and store current progress. This ensures the agent can smoothly return to the conversation after mentioning the time limit.
## Gracefully Ending the Call
For a smooth wrap-up when the time limit approaches:Vapi Support Bot
04/06/2025, 6:29 AMsay
Method Properly**: When it's time to end the call, use the say
method with the endCallAfterSpoken
parameter set to true
to gracefully end the call.
3. **Adjust Conversation Flow**: [Information indicates](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1335054553250533439) you should adjust the conversation flow in your VAPI script, incorporating conditions and branching to handle different scenarios based on the remaining time.
Would you like more specific information about any of these strategies for implementing time awareness in your voice agent?
Sources:
- [Discord discussion on call duration limits](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1343732017426071653)
- [Vapi Prompting Guide](https://docs.vapi.ai/prompting-guide)
- [Discord discussion on context management](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1344181455567196170)
- [Discord discussion on graceful call completion](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1336004944150401166)
- [Discord discussion on conversation flow](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1335054553250533439)Vapi Support Bot
04/06/2025, 6:30 AMcurl -X PATCH 'https://api.vapi.ai/assistant/{ASSISTANT_ID}' \
-H 'Authorization: Bearer {YOUR_API_TOKEN}' \
-H 'Content-Type: application/json' \
-d '{
"maxDurationSeconds": 1800
}'
## Informing Users About Time Limits
To maintain a smooth conversation when approaching the time limit:
1. **Use Effective Prompting**: According to the [prompting guide](https://docs.vapi.ai/prompting-guide), structure your prompts with clear sections for identity, style, response guidelines, and goals. This helps the agent maintain context when it needs to introduce time-related information.
2. **Add Natural Speech Patterns**: Incorporate natural speech elements like hesitations and pauses to make the time limit warning feel more conversational. For example, use fillers like "uh," "um," or "well" when mentioning the time.
3. **Implement Context Management**: [Information shows](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1344181455567196170) you should maintain a running list of collected information and store current progress. This ensures the agent can smoothly return to the conversation after mentioning the time limit.
## Gracefully Ending the Call
For a smooth wrap-up when the time limit approaches:Vapi Support Bot
04/06/2025, 6:30 AMsay
Method Properly**: When it's time to end the call, use the say
method with the endCallAfterSpoken
parameter set to true
to gracefully end the call.
3. **Adjust Conversation Flow**: [Information indicates](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1335054553250533439) you should adjust the conversation flow in your VAPI script, incorporating conditions and branching to handle different scenarios based on the remaining time.
Would you like more specific information about any of these strategies for implementing time awareness in your voice agent?
Sources:
- [Discord discussion on call duration limits](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1343732017426071653)
- [Vapi Prompting Guide](https://docs.vapi.ai/prompting-guide)
- [Discord discussion on context management](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1344181455567196170)
- [Discord discussion on graceful call completion](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1336004944150401166)
- [Discord discussion on conversation flow](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1335054553250533439)Vapi Support Bot
04/06/2025, 6:31 AMcurl -X PATCH 'https://api.vapi.ai/assistant/{ASSISTANT_ID}' \
-H 'Authorization: Bearer {YOUR_API_TOKEN}' \
-H 'Content-Type: application/json' \
-d '{
"maxDurationSeconds": 1800
}'
## Informing Users About Time Limits
To maintain a smooth conversation when approaching the time limit:
1. **Use Effective Prompting**: According to the [prompting guide](https://docs.vapi.ai/prompting-guide), structure your prompts with clear sections for identity, style, response guidelines, and goals. This helps the agent maintain context when it needs to introduce time-related information.
2. **Add Natural Speech Patterns**: Incorporate natural speech elements like hesitations and pauses to make the time limit warning feel more conversational. For example, use fillers like "uh," "um," or "well" when mentioning the time.
3. **Implement Context Management**: [Information shows](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1344181455567196170) you should maintain a running list of collected information and store current progress. This ensures the agent can smoothly return to the conversation after mentioning the time limit.
## Gracefully Ending the Call
For a smooth wrap-up when the time limit approaches:Vapi Support Bot
04/06/2025, 6:31 AMsay
Method Properly**: When it's time to end the call, use the say
method with the endCallAfterSpoken
parameter set to true
to gracefully end the call.
3. **Adjust Conversation Flow**: [Information indicates](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1335054553250533439) you should adjust the conversation flow in your VAPI script, incorporating conditions and branching to handle different scenarios based on the remaining time.
Would you like more specific information about any of these strategies for implementing time awareness in your voice agent?
Sources:
- [Discord discussion on call duration limits](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1343732017426071653)
- [Vapi Prompting Guide](https://docs.vapi.ai/prompting-guide)
- [Discord discussion on context management](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1344181455567196170)
- [Discord discussion on graceful call completion](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1336004944150401166)
- [Discord discussion on conversation flow](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1335054553250533439)Vapi Support Bot
04/06/2025, 6:31 AMcurl -X PATCH 'https://api.vapi.ai/assistant/{ASSISTANT_ID}' \
-H 'Authorization: Bearer {YOUR_API_TOKEN}' \
-H 'Content-Type: application/json' \
-d '{
"maxDurationSeconds": 1800
}'
## Informing Users About Time Limits
To maintain a smooth conversation when approaching the time limit:
1. **Use Effective Prompting**: According to the [prompting guide](https://docs.vapi.ai/prompting-guide), structure your prompts with clear sections for identity, style, response guidelines, and goals. This helps the agent maintain context when it needs to introduce time-related information.
2. **Add Natural Speech Patterns**: Incorporate natural speech elements like hesitations and pauses to make the time limit warning feel more conversational. For example, use fillers like "uh," "um," or "well" when mentioning the time.
3. **Implement Context Management**: [Information shows](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1344181455567196170) you should maintain a running list of collected information and store current progress. This ensures the agent can smoothly return to the conversation after mentioning the time limit.
## Gracefully Ending the Call
For a smooth wrap-up when the time limit approaches:Vapi Support Bot
04/06/2025, 6:32 AMsay
Method Properly**: When it's time to end the call, use the say
method with the endCallAfterSpoken
parameter set to true
to gracefully end the call.
3. **Adjust Conversation Flow**: [Information indicates](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1335054553250533439) you should adjust the conversation flow in your VAPI script, incorporating conditions and branching to handle different scenarios based on the remaining time.
Would you like more specific information about any of these strategies for implementing time awareness in your voice agent?
Sources:
- [Discord discussion on call duration limits](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1343732017426071653)
- [Vapi Prompting Guide](https://docs.vapi.ai/prompting-guide)
- [Discord discussion on context management](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1344181455567196170)
- [Discord discussion on graceful call completion](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1336004944150401166)
- [Discord discussion on conversation flow](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1335054553250533439)Vapi Support Bot
04/06/2025, 6:32 AMcurl -X PATCH 'https://api.vapi.ai/assistant/{ASSISTANT_ID}' \
-H 'Authorization: Bearer {YOUR_API_TOKEN}' \
-H 'Content-Type: application/json' \
-d '{
"maxDurationSeconds": 1800
}'
## Informing Users About Time Limits
To maintain a smooth conversation when approaching the time limit:
1. **Use Effective Prompting**: According to the [prompting guide](https://docs.vapi.ai/prompting-guide), structure your prompts with clear sections for identity, style, response guidelines, and goals. This helps the agent maintain context when it needs to introduce time-related information.
2. **Add Natural Speech Patterns**: Incorporate natural speech elements like hesitations and pauses to make the time limit warning feel more conversational. For example, use fillers like "uh," "um," or "well" when mentioning the time.
3. **Implement Context Management**: [Information shows](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1344181455567196170) you should maintain a running list of collected information and store current progress. This ensures the agent can smoothly return to the conversation after mentioning the time limit.
## Gracefully Ending the Call
For a smooth wrap-up when the time limit approaches:Vapi Support Bot
04/06/2025, 6:32 AMsay
Method Properly**: When it's time to end the call, use the say
method with the endCallAfterSpoken
parameter set to true
to gracefully end the call.
3. **Adjust Conversation Flow**: [Information indicates](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1335054553250533439) you should adjust the conversation flow in your VAPI script, incorporating conditions and branching to handle different scenarios based on the remaining time.
Would you like more specific information about any of these strategies for implementing time awareness in your voice agent?
Sources:
- [Discord discussion on call duration limits](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1343732017426071653)
- [Vapi Prompting Guide](https://docs.vapi.ai/prompting-guide)
- [Discord discussion on context management](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1344181455567196170)
- [Discord discussion on graceful call completion](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1336004944150401166)
- [Discord discussion on conversation flow](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1335054553250533439)Vapi Support Bot
04/06/2025, 6:33 AMcurl -X PATCH 'https://api.vapi.ai/assistant/{ASSISTANT_ID}' \
-H 'Authorization: Bearer {YOUR_API_TOKEN}' \
-H 'Content-Type: application/json' \
-d '{
"maxDurationSeconds": 1800
}'
## Informing Users About Time Limits
To maintain a smooth conversation when approaching the time limit:
1. **Use Effective Prompting**: According to the [prompting guide](https://docs.vapi.ai/prompting-guide), structure your prompts with clear sections for identity, style, response guidelines, and goals. This helps the agent maintain context when it needs to introduce time-related information.
2. **Add Natural Speech Patterns**: Incorporate natural speech elements like hesitations and pauses to make the time limit warning feel more conversational. For example, use fillers like "uh," "um," or "well" when mentioning the time.
3. **Implement Context Management**: [Information shows](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1344181455567196170) you should maintain a running list of collected information and store current progress. This ensures the agent can smoothly return to the conversation after mentioning the time limit.
## Gracefully Ending the Call
For a smooth wrap-up when the time limit approaches:Vapi Support Bot
04/06/2025, 6:33 AMsay
Method Properly**: When it's time to end the call, use the say
method with the endCallAfterSpoken
parameter set to true
to gracefully end the call.
3. **Adjust Conversation Flow**: [Information indicates](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1335054553250533439) you should adjust the conversation flow in your VAPI script, incorporating conditions and branching to handle different scenarios based on the remaining time.
Would you like more specific information about any of these strategies for implementing time awareness in your voice agent?
Sources:
- [Discord discussion on call duration limits](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1343732017426071653)
- [Vapi Prompting Guide](https://docs.vapi.ai/prompting-guide)
- [Discord discussion on context management](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1344181455567196170)
- [Discord discussion on graceful call completion](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1336004944150401166)
- [Discord discussion on conversation flow](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1335054553250533439)Vapi Support Bot
04/06/2025, 6:34 AMcurl -X PATCH 'https://api.vapi.ai/assistant/{ASSISTANT_ID}' \
-H 'Authorization: Bearer {YOUR_API_TOKEN}' \
-H 'Content-Type: application/json' \
-d '{
"maxDurationSeconds": 1800
}'
## Informing Users About Time Limits
To maintain a smooth conversation when approaching the time limit:
1. **Use Effective Prompting**: According to the [prompting guide](https://docs.vapi.ai/prompting-guide), structure your prompts with clear sections for identity, style, response guidelines, and goals. This helps the agent maintain context when it needs to introduce time-related information.
2. **Add Natural Speech Patterns**: Incorporate natural speech elements like hesitations and pauses to make the time limit warning feel more conversational. For example, use fillers like "uh," "um," or "well" when mentioning the time.
3. **Implement Context Management**: [Information shows](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1344181455567196170) you should maintain a running list of collected information and store current progress. This ensures the agent can smoothly return to the conversation after mentioning the time limit.
## Gracefully Ending the Call
For a smooth wrap-up when the time limit approaches:Vapi Support Bot
04/06/2025, 6:34 AMsay
Method Properly**: When it's time to end the call, use the say
method with the endCallAfterSpoken
parameter set to true
to gracefully end the call.
3. **Adjust Conversation Flow**: [Information indicates](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1335054553250533439) you should adjust the conversation flow in your VAPI script, incorporating conditions and branching to handle different scenarios based on the remaining time.
Would you like more specific information about any of these strategies for implementing time awareness in your voice agent?
Sources:
- [Discord discussion on call duration limits](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1343732017426071653)
- [Vapi Prompting Guide](https://docs.vapi.ai/prompting-guide)
- [Discord discussion on context management](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1344181455567196170)
- [Discord discussion on graceful call completion](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1336004944150401166)
- [Discord discussion on conversation flow](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1335054553250533439)Vapi Support Bot
04/06/2025, 6:35 AMcurl -X PATCH 'https://api.vapi.ai/assistant/{ASSISTANT_ID}' \
-H 'Authorization: Bearer {YOUR_API_TOKEN}' \
-H 'Content-Type: application/json' \
-d '{
"maxDurationSeconds": 1800
}'
## Informing Users About Time Limits
To maintain a smooth conversation when approaching the time limit:
1. **Use Effective Prompting**: According to the [prompting guide](https://docs.vapi.ai/prompting-guide), structure your prompts with clear sections for identity, style, response guidelines, and goals. This helps the agent maintain context when it needs to introduce time-related information.
2. **Add Natural Speech Patterns**: Incorporate natural speech elements like hesitations and pauses to make the time limit warning feel more conversational. For example, use fillers like "uh," "um," or "well" when mentioning the time.
3. **Implement Context Management**: [Information shows](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1344181455567196170) you should maintain a running list of collected information and store current progress. This ensures the agent can smoothly return to the conversation after mentioning the time limit.
## Gracefully Ending the Call
For a smooth wrap-up when the time limit approaches:Vapi Support Bot
04/06/2025, 6:35 AMsay
Method Properly**: When it's time to end the call, use the say
method with the endCallAfterSpoken
parameter set to true
to gracefully end the call.
3. **Adjust Conversation Flow**: [Information indicates](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1335054553250533439) you should adjust the conversation flow in your VAPI script, incorporating conditions and branching to handle different scenarios based on the remaining time.
Would you like more specific information about any of these strategies for implementing time awareness in your voice agent?
Sources:
- [Discord discussion on call duration limits](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1343732017426071653)
- [Vapi Prompting Guide](https://docs.vapi.ai/prompting-guide)
- [Discord discussion on context management](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1344181455567196170)
- [Discord discussion on graceful call completion](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1336004944150401166)
- [Discord discussion on conversation flow](https://discord.com/channels/1211482211119796234/1211483291191083018/threads/1335054553250533439)Vapi Support Bot
04/06/2025, 6:36 AMvapi.send
and vapi.say
, and provide more concrete guidance on maintaining smooth conversation flow when approaching time limits.
I've shared all the details of your query with them, including your experiences with the methods you've already tried. They'll reach out to you shortly to continue the conversation and help you implement this feature successfully.
Is there anything specific you'd like me to highlight to them about your implementation needs?Vapi Support Bot
04/06/2025, 6:36 AMvapi.send
and vapi.say
.
I've shared all the details of your query with them, including the problems you encountered with agent repetition and maintaining conversational context. A support specialist will reach out to you shortly with tailored assistance for your implementation.
Is there anything specific about your implementation environment or use case that would be helpful for them to know before they connect with you?Vapi Support Bot
04/06/2025, 6:37 AMvapi.send
and vapi.say
.
I've shared all the details of your query with them, including the problems you encountered with agent repetition and maintaining conversational context. A support specialist will reach out to you shortly with tailored assistance for your implementation.
Is there anything specific about your implementation environment or use case that would be helpful for them to know before they connect with you?Vapi Support Bot
04/06/2025, 6:38 AMvapi.send
and vapi.say
.
I've shared all the details of your query with them, including the problems you encountered with agent repetition and maintaining conversational context. A support specialist will reach out to you shortly with tailored assistance for your implementation.
Is there anything specific about your implementation environment or use case that would be helpful for them to know before they connect with you?Vapi Support Bot
04/06/2025, 6:39 AMvapi.send
and vapi.say
.
I've shared all the details of your query with them, including the problems you encountered with agent repetition and maintaining conversational context. A support specialist will reach out to you shortly with tailored assistance for your implementation.
Is there anything specific about your implementation environment or use case that would be helpful for them to know before they connect with you?Vapi Support Bot
04/06/2025, 6:40 AMvapi.send
and vapi.say
.
I've shared all the details of your query with them, including the problems you encountered with agent repetition and maintaining conversational context. A support specialist will reach out to you shortly with tailored assistance for your implementation.
Is there anything specific about your implementation environment or use case that would be helpful for them to know before they connect with you?Vapi Support Bot
04/06/2025, 6:40 AMvapi.send
and vapi.say
.
I've shared all the details of your query with them, including the problems you encountered with agent repetition and maintaining conversational context. A support specialist will reach out to you shortly with tailored assistance for your implementation.
Is there anything specific about your implementation environment or use case that would be helpful for them to know before they connect with you?Vapi Support Bot
04/06/2025, 6:41 AMvapi.send
and vapi.say
.
I've shared all the details of your query with them, including the problems you encountered with agent repetition and maintaining conversational context. A support specialist will reach out to you shortly with tailored assistance for your implementation.
Is there anything specific about your implementation environment or use case that would be helpful for them to know before they connect with you?Vapi Support Bot
04/06/2025, 6:42 AMvapi.send
and vapi.say
.
I've shared all the details of your query with them, including the problems you encountered with agent repetition and maintaining conversational context. A support specialist will reach out to you shortly with tailored assistance for your implementation.
Is there anything specific about your implementation environment or use case that would be helpful for them to know before they connect with you?Vapi Support Bot
04/06/2025, 6:43 AMvapi.send
and vapi.say
.
I've shared all the details of your query with them, including your specific requirements:
- Making the agent aware of dynamic call duration limits
- Informing users when the time limit is approaching
- Naturally wrapping up while maintaining conversation flow
- Clearly communicating when the call is ending
A support specialist with expertise in this specific SDK version will reach out to you shortly with tailored implementation assistance. Is there anything specific about your implementation environment or use case that would be helpful for them to know before they connect with you?Vapi Support Bot
04/06/2025, 6:43 AMvapi.send
and vapi.say
.
I've shared all the details of your query with them, including your specific requirements:
- Making the agent aware of dynamic call duration limits
- Informing users when the time limit is approaching
- Naturally wrapping up while maintaining conversation flow
- Clearly communicating when the call is ending
A support specialist with expertise in this specific SDK version will reach out to you shortly with tailored implementation assistance. Is there anything specific about your implementation environment or use case that would be helpful for them to know before they connect with you?Vapi Support Bot
04/06/2025, 6:44 AMvapi.send
and vapi.say
.
I've shared all the details of your query with them, including your specific requirements:
- Making the agent aware of dynamic call duration limits
- Informing users when the time limit is approaching
- Naturally wrapping up while maintaining conversation flow
- Clearly communicating when the call is ending
A support specialist with expertise in this specific SDK version will reach out to you shortly with tailored implementation assistance. Is there anything specific about your implementation environment or use case that would be helpful for them to know before they connect with you?Vapi Support Bot
04/06/2025, 6:45 AMvapi.send
and vapi.say
.
I've shared all the details of your query with them, including your specific requirements:
- Making the agent aware of dynamic call duration limits
- Informing users when the time limit is approaching
- Naturally wrapping up while maintaining conversation flow
- Clearly communicating when the call is ending
A support specialist with expertise in this specific SDK version will reach out to you shortly with tailored implementation assistance. Is there anything specific about your implementation environment or use case that would be helpful for them to know before they connect with you?Vapi Support Bot
04/06/2025, 6:46 AMvapi.send
and vapi.say
.
I've shared all the details of your query with them, including your specific requirements:
- Making the agent aware of dynamic call duration limits
- Informing users when the time limit is approaching
- Naturally wrapping up while maintaining conversation flow
- Clearly communicating when the call is ending
A support specialist with expertise in this specific SDK version will reach out to you shortly with tailored implementation assistance. Is there anything specific about your implementation environment or use case that would be helpful for them to know before they connect with you?Vapi Support Bot
04/06/2025, 6:47 AMvapi.send
and vapi.say
.
I've shared all the details of your query with them, including your specific requirements:
- Making the agent aware of dynamic call duration limits
- Informing users when the time limit is approaching
- Naturally wrapping up while maintaining conversation flow
- Clearly communicating when the call is ending
A support specialist with expertise in this specific SDK version will reach out to you shortly with tailored implementation assistance. Is there anything specific about your implementation environment or use case that would be helpful for them to know before they connect with you?Vapi Support Bot
04/06/2025, 6:48 AMvapi.send
and vapi.say
.
I've shared all the details of your query with them, including your specific requirements:
- Making the agent aware of dynamic call duration limits
- Informing users when the time limit is approaching
- Naturally wrapping up while maintaining conversation flow
- Clearly communicating when the call is ending
A support specialist with expertise in this specific SDK version will reach out to you shortly with tailored implementation assistance. Is there anything specific about your implementation environment or use case that would be helpful for them to know before they connect with you?Vapi Support Bot
04/06/2025, 6:49 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist with expertise in this specific SDK version will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
Is there anything specific about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you?Vapi Support Bot
04/06/2025, 6:50 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist with expertise in this specific SDK version will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
Is there anything specific about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you?Vapi Support Bot
04/06/2025, 6:50 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist with expertise in this specific SDK version will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
Is there anything specific about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you?Vapi Support Bot
04/06/2025, 6:51 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist with expertise in this specific SDK version will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 6:52 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist with expertise in this specific SDK version will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 6:53 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist with expertise in this specific SDK version will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 6:54 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist with expertise in this specific SDK version will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 6:55 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist with expertise in this specific SDK version will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 6:56 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist with expertise in this specific SDK version will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 6:57 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist with expertise in this specific SDK version will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 6:58 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist with expertise in this specific SDK version will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 6:59 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:00 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:01 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:02 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:03 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:04 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:05 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:06 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:07 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:08 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:09 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:10 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:11 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:12 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:14 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:15 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:16 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:17 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:18 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:19 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:20 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:21 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:23 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:24 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:25 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:26 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:27 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:28 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:29 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:30 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:31 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:33 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:34 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:35 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:36 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:37 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:38 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:40 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:41 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:42 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:43 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:44 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:46 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:47 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:48 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:49 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:51 AMvapi.send
causing agent repetition and vapi.say
potentially disrupting conversation flow.
A support specialist will reach out to you shortly with implementation solutions that address your requirements:
- Making the agent aware of dynamic call duration limits
- Informing users naturally when the time limit is approaching
- Maintaining smooth conversation flow during wrap-up
- Clearly communicating call ending without abrupt disconnection
In the meantime, if you have any specific details about your implementation environment or particular use cases that would be helpful for our technical team to know before they connect with you, please feel free to share them.Vapi Support Bot
04/06/2025, 7:51 AMShubham Bajaj
04/06/2025, 8:34 AMKings Big
04/07/2025, 1:02 PMgodlike
04/07/2025, 5:10 PMjsx
if (elapsedTime >= 30 && isUserSpeaking && !warningMessageSent) {
send({
type: "add-message",
message: {
content: `IMPORTANT - DONT IGNORE THIS - Please incorporate a brief note about time running low in your next response, but do NOT break continuity. Keep the conversation flowing, then add something like 'By the way, we've got about 2 minutes left, so let's keep it short' or something like this, near the end of your response. FYI - Time is almost up. Please keep further questions minimal and proceed to finalize the call soon.`,
role: "assistant",
},
});
send({
type: "add-message",
message: {
role: "user",
content: "IMPORTANT - DONT IGNORE THIS - Weβre running short on time. Letβs wrap up soon. If there's anything else I need to address, please let me know.",
},
});
setWarningMessageSent(true);
}
but its not working as expected. The agent sometimes does calls out that we've limited time left, however, rest of the times it totally forgets about the time limits and just keeps on goingKings Big
04/09/2025, 1:00 AM