To be overriden by the descendant class
(self, input:List[Any], spatial_info:Dict[str,Any], temporal_info:Dict[str,Any], mode: str = "default", **kwargs)
| 265 | |
| 266 | @abstractmethod |
| 267 | async def _async_execute(self, input:List[Any], spatial_info:Dict[str,Any], temporal_info:Dict[str,Any], mode: str = "default", **kwargs): |
| 268 | """ To be overriden by the descendant class """ |
| 269 | """ Use the processed input to get the result """ |
| 270 | |
| 271 | @abstractmethod |
| 272 | def _process_inputs(self, raw_inputs:List[Any], spatial_info:Dict[str,Any], temporal_info:Dict[str,Any], **kwargs)->List[Any]: |