To be overriden by the descendant class
(self, raw_inputs:Dict[str,str], spatial_info:Dict[str,Any], temporal_info:Dict[str,Any], **kwargs)
| 615 | self.prompt_set = PromptSetRegistry.get(domain) |
| 616 | |
| 617 | def _process_inputs(self, raw_inputs:Dict[str,str], spatial_info:Dict[str,Any], temporal_info:Dict[str,Any], **kwargs)->List[Any]: |
| 618 | """ To be overriden by the descendant class """ |
| 619 | """ Process the raw_inputs(most of the time is a List[Dict]) """ |
| 620 | return None |
| 621 | |
| 622 | def _execute(self, input:Dict[str,str], spatial_info:Dict[str,Any], temporal_info:Dict[str,Any],**kwargs): |
| 623 | """ To be overriden by the descendant class """ |
nothing calls this directly
no outgoing calls
no test coverage detected