1
0

[kimi] fix: add logging to silent except Exception handlers (#646) (#692)

This commit is contained in:
2026-03-21 03:50:26 +00:00
parent c9445e3056
commit e3d425483d
9 changed files with 20 additions and 1 deletions

View File

@@ -139,6 +139,7 @@ def _run_kimi(cmd: list[str], workdir: str) -> dict[str, Any]:
"error": "Kimi timed out after 300s. Task may be too broad — try breaking it into smaller pieces.",
}
except Exception as exc:
logger.exception("Failed to run Kimi subprocess")
return {
"success": False,
"error": f"Failed to run Kimi: {exc}",