Quick question — does Vapi currently support conditional or fallback logic within token templates?
For example, I’d like to handle cases where a variable like {{company_name}} might be empty and display a default value instead. Something like:
{{#if company_name}}
Hi from {{company_name}}!
{{else}}
Hi from our team!
{{/if}}
—or maybe even shorthand fallback logic like {{company_name || "our team"}}.
Is there any supported syntax or best practice for this type of conditional handling in prompts or tool request templates?
Thanks in advance!