⚠️ Ensure your function is safe and deterministic. Avoid external calls unless explicitly supported.
🔍 What It Does
This tool gives you full control to run Python code during the bot’s execution. The output of the function can be stored as a variable and reused in following actions.🧠 A powerful option for tailoring logic beyond static parameters.
🖼️ Action Interface

⚙️ Configuration Options
Function (required)
Function (required)
Type: Use
string
A complete Python function body. Return the desired result explicitly.Example:arguments
dictionary to access parameters directly.🔧 Tips
- Always end your function with a
return
statement. - Use
arguments[...]
to build dynamic logic.