(self,query:str,tools:List[Dict],tool_func:Callable)
| 32 | ''' |
| 33 | pass |
| 34 | def forward(self,query:str,tools:List[Dict],tool_func:Callable)->Dict: |
| 35 | pass |
| 36 | |
| 37 | def __call__(self,query:str,tools:List[Dict],tool_func:Callable)->Dict: |
| 38 | result = self.forward(query,tools,tool_func) |