0.1.dev2192+g7c539c3.d20250403

flytekit.remote.remote_callable

Directory

Classes

Class Description
RemoteEntity Helper class that provides a standard way to create an ABC using.

flytekit.remote.remote_callable.RemoteEntity

Helper class that provides a standard way to create an ABC using inheritance.

class RemoteEntity(
    args,
    kwargs,
)
Parameter Type
args *args
kwargs **kwargs

Methods

Method Description
compile()
construct_node_metadata() Used when constructing the node that encapsulates this task as part of a broader workflow definition.
execute()
local_execute()
local_execution_mode()

compile()

def compile(
    ctx: flytekit.core.context_manager.FlyteContext,
    args,
    kwargs,
)
Parameter Type
ctx flytekit.core.context_manager.FlyteContext
args *args
kwargs **kwargs

construct_node_metadata()

def construct_node_metadata()

Used when constructing the node that encapsulates this task as part of a broader workflow definition.

execute()

def execute(
    kwargs,
) -> typing.Any
Parameter Type
kwargs **kwargs

local_execute()

def local_execute(
    ctx: flytekit.core.context_manager.FlyteContext,
    kwargs,
) -> typing.Union[typing.Tuple[flytekit.core.promise.Promise], flytekit.core.promise.Promise, flytekit.core.promise.VoidPromise, NoneType]
Parameter Type
ctx flytekit.core.context_manager.FlyteContext
kwargs **kwargs

local_execution_mode()

def local_execution_mode()

Properties

Property Type Description
id
name
python_interface