Used for Directed IO
(self, id: str | None =None, domain: str = "", llm_name: str = "",)
| 610 | @AgentRegistry.register('FinalDirect') |
| 611 | class FinalDirect(Node): |
| 612 | def __init__(self, id: str | None =None, domain: str = "", llm_name: str = "",): |
| 613 | """ Used for Directed IO """ |
| 614 | super().__init__(id, "FinalDirect") |
| 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 """ |