Skip to content

Commit ff2c5bf

Browse files
committed
Fix P1: Restore claude-agent-sdk dependency
CRITICAL FIX - Runtime Breaking Change: - Accidentally changed claude-agent-sdk to claude-code-sdk - wrapper.py imports claude_agent_sdk (via runner_shell) - Would cause ModuleNotFoundError at runtime Restored correct dependencies: - claude-agent-sdk>=0.1.4 (REQUIRED by wrapper.py) - anthropic[vertex]>=0.68.0 (vertex support) This matches upstream/main and prevents runtime crash. Identified by: chatgpt-codex-connector[bot] review comment Issue: https://github.com/ambient-code/platform/pull/331/files#r2535287453
1 parent 4364aa1 commit ff2c5bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

components/runners/claude-code-runner/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ dependencies = [
1111
"requests>=2.31.0",
1212
"aiohttp>=3.8.0",
1313
"pyjwt>=2.8.0",
14-
"claude-code-sdk>=0.0.23",
15-
"anthropic>=0.68.0"
14+
"anthropic[vertex]>=0.68.0",
15+
"claude-agent-sdk>=0.1.4",
1616
]
1717

1818
[project.optional-dependencies]

0 commit comments

Comments
 (0)