mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-08-09 04:40:57 +00:00
feat(agent-runner): support host tool lookup (#2244)
This commit is contained in:
@@ -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}')
|
||||
Reference in New Issue
Block a user