(self,query:str,tools:List[Dict],tool_func:Callable)
| 35 | pass |
| 36 | |
| 37 | def __call__(self,query:str,tools:List[Dict],tool_func:Callable)->Dict: |
| 38 | result = self.forward(query,tools,tool_func) |
| 39 | return self.convert_result_to_dict(result) |
| 40 |
nothing calls this directly
no test coverage detected