How tags work
The LLM generates a normal reply. If the reply contains a tag, the engine intercepts it:The LLM says: “Sure, I’ll transfer you to our manager now. [TRANSFER:+442087601234]” Caller hears: “Sure, I’ll transfer you to our manager now.” Engine action: Cold transfer to +442087601234.The caller never hears the tag itself. It exists only as a signal between the LLM and the engine.
Built-in tags
End call
[END_CALL] — gracefully end the conversationTransfer
[TRANSFER:+number] — hand off to a humanSend SMS
[SEND_SMS: text] — text the caller mid-callTelling the agent when to use them
Add an Actions section to your system prompt with one-line guidance for each tag you want the agent to use:Multiple tags in one response
The agent can use more than one tag in a single reply. Common pattern after a booking:“Perfect, you’re booked in for Tuesday at 2pm. I’ve just sent you a text with the details. [SEND_SMS: Your appointment with Acme Dental is confirmed for Tuesday 5th March at 2pm. Call us if anything changes.] Have a great day. [END_CALL]”The engine processes them in order: send the SMS, then end the call.