To be overriden by the descendant class
(self, raw_inputs:Dict[str,str], spatial_info:Dict[str,Any], temporal_info:Dict[str,Any], **kwargs)
| 652 | self.prompt_set = PromptSetRegistry.get(domain) |
| 653 | |
| 654 | def _process_inputs(self, raw_inputs:Dict[str,str], spatial_info:Dict[str,Any], temporal_info:Dict[str,Any], **kwargs)->List[Any]: |
| 655 | """ To be overriden by the descendant class """ |
| 656 | """ Process the raw_inputs(most of the time is a List[Dict]) """ |
| 657 | return None |
| 658 | |
| 659 | def _execute(self, input:Dict[str,str], spatial_info:Dict[str,Any], temporal_info:Dict[str,Any],**kwargs): |
| 660 | """ To be overriden by the descendant class """ |
nothing calls this directly
no outgoing calls
no test coverage detected