modal.method

def method(
    _warn_parentheses_missing=None,
    *,
    # Set this to True if it's a non-generator function returning
    # a [sync/async] generator object
    is_generator: Optional[bool] = None,
    keep_warm: Optional[int] = None,  # An optional number of containers to always keep warm.
) -> 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):
        ...