Inline python function to extend instruction: ```yaml - !fn |- [python] def add(a,b): return a+b - $add(1,2) ``` Import python functions from file: ```yaml --- import: "./my.py" --- - $add(1,2) ``` ```rb # my.py def add(a,b): return a+b ```