r"""Returns a list of FunctionTool objects representing the functions in the toolkit. Returns: List[FunctionTool]: A list of FunctionTool objects representing the functions in the toolkit.
(self)
| 43 | return reply |
| 44 | |
| 45 | def get_tools(self) -> List[FunctionTool]: |
| 46 | r"""Returns a list of FunctionTool objects representing the |
| 47 | functions in the toolkit. |
| 48 | |
| 49 | Returns: |
| 50 | List[FunctionTool]: A list of FunctionTool objects |
| 51 | representing the functions in the toolkit. |
| 52 | """ |
| 53 | return [FunctionTool(self.ask_human_via_console)] |
nothing calls this directly
no test coverage detected