Potentially we could define some custom blocks from a Python script or from a Notebook if we use some decorators. Something like: ``` @block def myfunction(a: int, b: int) -> int: return a + b ```