chore: release v0.18.0#58
Merged
Merged
Conversation
Bundles the ADC + Gemini streaming fix landed since 0.17.0: - Application Default Credentials support for Gemini (#57) - Fix Gemini streaming async-generator consumption (#57) - Robust google-genai chunk / finish_reason parsing (#57) - savings.py tolerates None selected_model / tier in logs (#57) - nadirclaw status shows mid-tier model when configured (#57) Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
Collaborator
Author
|
CI green across Python 3.10 / 3.11 / 3.12 (run 26402176670) and the diff is the standard release shape (version bump + CHANGELOG). Merging now and cutting the v0.18.0 tag — no functional changes vs. main since #57 landed yesterday. — scheduled review bot |
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.
Bundles the ADC support + Gemini streaming fix landed since 0.17.0:
google.auth.default()when noGOOGLE_API_KEYis set, so users can auth viaGOOGLE_CLOUD_PROJECT/GOOGLE_CLOUD_LOCATION(Vertex AI / gcloud creds)._dispatch_model_streamwas consuming_stream_gemini(an async generator) with a plainforloop and would have raisedTypeErroron any real streaming Gemini call. Now usesasync for. Robust to google-genai SDK returning enum-like chunks /finish_reason.savingstolerates None values (Adc gemini #57, @froody) —selected_model: None/tier: Nonein real logs (failed/aborted requests) no longer crash the report.nadirclaw statusdisplays the mid model (Adc gemini #57, @froody) when one is configured.Why a release
The Gemini streaming bug was latent — anyone who actually hit
stream=trueon a Gemini-routed request would have gottenTypeError: 'async_generator' object is not iterable. Worth pinning a version. ADC is also a meaningful UX win for Vertex AI users who can't easily mint an API key.Diff
nadirclaw/__init__.py—__version__ = "0.18.0"CHANGELOG.md— new[0.18.0]block under### Addedand### FixedVerification
Co-Authored-By: Claude Opus 4.7 noreply@anthropic.com
🤖 Generated with Claude Code