add autonomous_operation_sop folder to tracking; update .gitignore whitelist; agent_loop changes

This commit is contained in:
Liang Jiaqing
2026-03-13 14:16:43 +08:00
parent fd7bf241d0
commit 3f66368689
3 changed files with 42 additions and 1 deletions

View File

@@ -20,7 +20,7 @@ class BaseHandler:
def dispatch(self, tool_name, args, response):
method_name = f"do_{tool_name}"
if hasattr(self, method_name):
_ = yield from try_call_generator(self.tool_before_callback, tool_name, args, response)
prer = yield from try_call_generator(self.tool_before_callback, tool_name, args, response)
ret = yield from try_call_generator(getattr(self, method_name), args, response)
_ = yield from try_call_generator(self.tool_after_callback, tool_name, args, response, ret)
return ret