deps: bump geny-executor 2.0.2 → 2.0.3 (Claude Code message-form parser)#812
Merged
Merged
Conversation
…h_failed) 2.0.3 fixes two follow-on bugs the user hit on prod after 2.0.2: 1. Claude Code 2.x emits the full assistant message in one ``assistant.message.content[]`` envelope (not delta form) by default. The 2.0.2 accumulator only handled the delta form so sessions came back with ``output_len=0`` despite the pipeline reporting SUCCESS. 2. ``error="authentication_failed"`` envelopes were treated as normal assistant output. The "Not logged in · Please run /login" placeholder was returned as the agent's reply. See CocoRoF/geny-executor#205 for the full root-cause + fix. 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.3 which fixes the two bugs that surfaced after 2.0.2 unblocked Claude Code (CLI) streaming on prod:
output_len=0on every session. Claude Code 2.x's default stream-json output puts the full assistant message in one envelope (assistant.message.content[]) instead of per-token deltas. The 2.0.2 accumulator only handled the delta form so text never made it into the terminal APIResponse.error="authentication_failed"but otherwise looks like normal output; 2.0.3 raisesAPIError(CLI_AUTH_FAILED)so the host surfaces the auth problem.Executor PR: CocoRoF/geny-executor#205
PyPI: https://pypi.org/project/geny-executor/2.0.3/
Test plan
tests/llm_client/pass including 3 new regression guards🤖 Generated with Claude Code