Conversation
- Auto-generated SDK updates - Version: 1.3.28
- Auto-generated SDK updates - Version: 1.3.29
- Auto-generated SDK updates - Version: 1.3.30
- Auto-generated SDK updates - Version: 1.3.31
- Auto-generated SDK updates - Version: 1.3.32
- Auto-generated SDK updates - Version: 1.3.33
- Auto-generated SDK updates - Version: 1.3.34
- Auto-generated SDK updates - Version: 1.3.35
* fix: fix broken model imports blocking regenerate pipeline Move 7 models removed from OpenAPI spec (CaptionResponse, DownloadResponse, DownloadFormat, HashtagCheckResponse, HashtagInfo, TranscriptResponse, TranscriptSegment) to responses.py since the endpoints still work. Update models/__init__.py and tools.py imports accordingly. Fix test_exhaustive Type enum references (Type -> Type5). Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> * fix: use string values in media type tests instead of unstable Type5 enum The generated enum name (Type5) is not stable across regenerations. Use string values with Pydantic coercion instead. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com> --------- Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
- Auto-generated SDK updates - Version: 1.3.36
The generation script created resource files (like ValidateResource) but never updated resources/__init__.py or late_client.py, requiring manual wiring that was easy to miss. This caused client.validate to be missing, breaking validate_subreddit MCP tool calls. Now generate_resources.py auto-updates both files: - resources/__init__.py: prefers manual implementations over auto-generated - late_client.py: imports + registration between marker comments Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Contributor
📦 Release Preview
⏭️ No ReleaseVersion
|
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
resources/__init__.pyandlate_client.pywhen new resources are addedvalidate_subredditMCP tool error:'Zernio' object has no attribute 'validate'What changed
generate_resources.py: detects manual vs auto-generated resources, updates__init__.pyand client file automaticallylate_client.py: uses marker comments for auto-registration (32 resources, was 20)resources/__init__.py: now auto-generated, prefers manual implementations over auto-generatedTest plan
client.validate.validate_subreddit("programming")workspython scripts/generate_resources.pytwice produces identical output🤖 Generated with Claude Code