Repoint the image and video defaults, which were both dead - #6
Merged
Conversation
startVideo defaulted to veo-3.0-generate-001, shut down on 30 June 2026, so Google video generation has been failing outright for anyone who did not pass an explicit model. Now defaults to veo-3.1. generateImage defaulted to imagen-4.0-fast-generate-001. Imagen is retired as a product line and shuts down on 17 August 2026, so this had seventeen days left. Now defaults to gemini-3.1-flash-image, which is what replaces it. The dead constants stay, marked @deprecated with their shutdown dates, in keeping with never removing public API.
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.
Same class of bug as the six chat defaults fixed in v0.15.0, found by auditing the constants rather than the defaults.
startVideo()defaulted toveo-3.0-generate-001, shut down 30 June 2026. Google video generation has been failing outright for anyone not passing an explicit model. Nowveo-3.1.generateImage()defaulted toimagen-4.0-fast-generate-001. Imagen is retired as a product line and shuts down 17 August 2026, seventeen days out. Nowgemini-3.1-flash-image, its named replacement.Adds the current image constants (
gemini-3.1-flash-image,-lite-image,gemini-2.5-flash-image) andveo-3.1-fast.Every dead constant is kept and marked
@deprecatedwith its shutdown date rather than removed, in keeping with never removing public API. Deleting them would turn a runtime 404 into a fatal error for anyone merely referencing one.78 tests, Psalm clean.