MCPcopy Create free account
hub / github.com/feast-dev/feast / DummyInputNode

Class DummyInputNode

sdk/python/tests/component/ray/test_nodes.py:31–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

29
30
31class DummyInputNode(DAGNode):
32 def __init__(self, name, output):
33 super().__init__(name)
34 self._output = output
35
36 def execute(self, context):
37 return self._output
38
39
40class DummyFeatureView:

Calls

no outgoing calls