@hunyed15/codecgc 0.2.9 → 0.2.10

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hunyed15/codecgc",
3
- "version": "0.2.9",
3
+ "version": "0.2.10",
4
4
  "description": "Claude-hosted multi-model workflow product shell for CodeCGC.",
5
5
  "license": "MIT",
6
6
  "type": "commonjs",
@@ -294,7 +294,7 @@ async def execute_payload(payload: dict[str, Any], timeout_seconds: int) -> dict
294
294
  payload["tool_args"],
295
295
  read_timeout_seconds=datetime.timedelta(seconds=timeout_seconds),
296
296
  )
297
- except* ExceptionGroup:
297
+ except Exception:
298
298
  # MCP SDK 清理阶段的 TaskGroup 异常不影响已获得的结果
299
299
  pass
300
300