(self, response: Response, **kwargs)
| 8 | self.log = None |
| 9 | |
| 10 | async def after_execution(self, response: Response, **kwargs): |
| 11 | text = sanitize_string(response.message.strip()) |
| 12 | self.agent.hist_add_tool_result( |
| 13 | self.name, |
| 14 | text, |
| 15 | **(response.additional or {}), |
| 16 | ) |
| 17 | |
| 18 | async def execute(self, **kwargs) -> Response: |
| 19 | args = {**self.args, **kwargs} |