Overview
The LLM path is the fastest way to send a voice notification. You provide amessage string and Echo generates a contextual call script on the fly using your business context (business_name, business_summary, industry) and the message you provide.
No agent definition required. No variables. Just a customer ID and a message.
Sending an LLM-path Notification
Response
Request Fields
Using collect_feedback
When collect_feedback: true, the generated call script includes a feedback prompt at the end of the conversation. The AI will ask the caller to take an action — confirm, cancel, reschedule, or similar — depending on the message content.
call_result.
Using context
The context field is for runtime nuance you don’t want hardcoded into the message. Use it to pass background information that shapes how the AI conducts the conversation:
Controlling Call Duration
Usemax_duration_seconds to cap how long the call can run. This is useful for:
- Cost control — billing is per minute, so shorter limits reduce exposure
- User experience — preventing runaway conversations on simple notifications
- Compliance — some use cases require call length limits
What Echo Generates
When you use the LLM path, Echo combines:- Your
business_name,business_summary, andindustryfrom signup - The customer’s
first_nameandlast_name - Your
messageand optionalcontext
LLM Path vs Agent Path
For full control over the conversation, structured output extraction, and consistent brand voice across thousands of calls, use the Agent approach.