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)
| 183 | return {"error": f"An unexpected error occurred: {e!s}"} |
| 184 | |
| 185 | def get_tools(self) -> List[FunctionTool]: |
| 186 | r"""Returns a list of FunctionTool objects representing the functions |
| 187 | in the toolkit. |
| 188 | |
| 189 | Returns: |
| 190 | List[FunctionTool]: A list of FunctionTool objects representing |
| 191 | the functions in the toolkit. |
| 192 | """ |
| 193 | return [ |
| 194 | FunctionTool(self.search_real_time_data), |
| 195 | FunctionTool(self.get_ai_recommendations), |
| 196 | ] |
nothing calls this directly
no test coverage detected