deps: bump geny-executor 2.0.1 → 2.0.2 (Claude Code streaming)#807
Merged
Conversation
geny-executor 2.0.2 fixes ``ClaudeCodeCLIClient.create_message_stream`` to emit a populated ``message_complete`` envelope. Without this upgrade, every session using ``provider=claude_code_cli`` for Stage 6 fails at first turn with: → s06_api ✗ s06_api: Stream ended without message_complete Pipeline error: Stream ended without message_complete Reported by the user after picking Claude Code (CLI) in the Stage 6 provider strip. See CocoRoF/geny-executor#204 for the full root-cause analysis. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Pulls in geny-executor 2.0.2 which fixes the
Stream ended without message_completeerror users hit when picking Claude Code (CLI) as the Stage 6 provider in any environment.Root cause (in executor):
ClaudeCodeCLIClient.create_message_streamemitted a bare{"type": "message_complete"}with noresponsefield. The s06_api default stage's_call_streamingreadschunk["response"]; withresponsealwaysNone, the post-loop guard always raised. Fixed by accumulating text/thinking/tool_use blocks + the finalresultenvelope as canonical events flow, then yielding one populated terminal envelope — mirroring the contract every SDK client already honoured.Executor PR: CocoRoF/geny-executor#204
PyPI: https://pypi.org/project/geny-executor/2.0.2/
Test plan
tests/llm_client/pass including new regression guardStream ended without message_complete🤖 Generated with Claude Code