(self)
| 33 | ## !!define your method here !! |
| 34 | class SampleMethod(BaseToolMethod): |
| 35 | def __init__(self): |
| 36 | super().__init__() |
| 37 | def forward(self,query:str,tools:List[Dict],tool_func:Callable)->Dict: |
| 38 | return {} |
| 39 | def convert_result_to_dict(self,result): |
nothing calls this directly
no outgoing calls
no test coverage detected