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)
| 312 | return extracted_files |
| 313 | |
| 314 | def get_tools(self) -> List[FunctionTool]: |
| 315 | r"""Returns a list of FunctionTool objects representing the functions in the toolkit. |
| 316 | |
| 317 | Returns: |
| 318 | List[FunctionTool]: A list of FunctionTool objects representing the functions in the toolkit. |
| 319 | """ |
| 320 | return [ |
| 321 | FunctionTool(self.extract_document_content), |
| 322 | ] # Added closing triple quotes here |
no outgoing calls
no test coverage detected