mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-05-18 04:41:56 +00:00
fix(kanban): reject toolset names in task skills
This commit is contained in:
parent
a91e5a8759
commit
673418dfa1
4 changed files with 39 additions and 0 deletions
|
|
@ -611,6 +611,8 @@ def _handle_create(args: dict, **kw) -> str:
|
|||
)
|
||||
finally:
|
||||
conn.close()
|
||||
except ValueError as e:
|
||||
return tool_error(f"kanban_create: {e}")
|
||||
except Exception as e:
|
||||
logger.exception("kanban_create failed")
|
||||
return tool_error(f"kanban_create: {e}")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue