(self, tool_name: str, tool_input: str)
| 79 | """工具执行器接口: 你必须能按名字执行工具""" |
| 80 | @abstractmethod |
| 81 | def execute(self, tool_name: str, tool_input: str) -> str: |
| 82 | ... |
| 83 | |
| 84 | # 对应 permissions.rs:39-41 |
| 85 | # pub trait PermissionPrompter { |
no outgoing calls
no test coverage detected