Seem a basic node can be generated from a Python function if the parameters are declared with correct type info?
Is there any simple wrapper? like:
@ryven_node
def add(int: a, int: b) -> int:
return a+b
I didn't find a such simple example, is there any?