feat(agent-runner): support host tool lookup (#2244)

This commit is contained in:
huanghuoguoguo
2026-06-14 11:29:57 +08:00
committed by GitHub
parent 27be09ab15
commit e9fe2f2d43
7 changed files with 47 additions and 5 deletions
+6
View File
@@ -0,0 +1,6 @@
class ToolNotFoundError(ValueError):
"""Raised when a requested tool cannot be found in any active loader."""
def __init__(self, name: str):
self.name = name
super().__init__(f'Tool not found: {name}')