Use the tool.
(self, tool_input: str)
| 28 | tool_logo_md: str = "" |
| 29 | |
| 30 | def _run(self, tool_input: str) -> str: |
| 31 | """Use the tool.""" |
| 32 | return self.func(tool_input) |
| 33 | |
| 34 | async def _arun(self, tool_input: str) -> str: |
| 35 | """Use the tool asynchronously.""" |