mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-05-23 05:31:23 +00:00
fix(kanban): parse triage flag explicitly
This commit is contained in:
parent
c1545a19b1
commit
f7c395931f
2 changed files with 49 additions and 1 deletions
|
|
@ -484,7 +484,9 @@ def _handle_create(args: dict, **kw) -> str:
|
|||
priority = args.get("priority")
|
||||
workspace_kind = args.get("workspace_kind") or "scratch"
|
||||
workspace_path = args.get("workspace_path")
|
||||
triage = bool(args.get("triage"))
|
||||
triage, bool_error = _parse_bool_arg(args, "triage")
|
||||
if bool_error:
|
||||
return tool_error(bool_error)
|
||||
idempotency_key = args.get("idempotency_key")
|
||||
max_runtime_seconds = args.get("max_runtime_seconds")
|
||||
skills = args.get("skills")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue