modal.method
def method(
*,
# Set this to True if it's a non-generator function returning
# a [sync/async] generator object
is_generator: Optional[bool] = None,
) -> Callable[[Callable[..., Any]], _PartialFunction]:
Decorator for methods that should be transformed into a Modal Function registered against this class’s stub.
Usage:
@stub.cls(cpu=8)
class MyCls:
@modal.method()
def f(self):
...