Dummy
The Dummy action is a placeholder that serves no operational purpose. It is often used for testing, debugging, or marking sections of a workflow for future updates.
DUMMY()
Example
{{#if IsEmpty(text=greetingPhraseInstruction)}}
{{DUMMY("This section was triggered")}}
{{Set(name="base_instruction", value="Mention call reason from the context in the greeting phrase.")}}
{{else}}
{{Set(name="base_instruction", value="Strictly follow the greeting phrase instruction.")}}
{{/if}}
Updated 16 days ago