Add a direct Google Gemini provider (opt-in via config)#1
Open
isene wants to merge 1 commit into
Open
Conversation
Co-Authored-By: Claude Fable 5 <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.
Adds a second image/vision provider so the daemon can talk straight to Google's Gemini API (AI Studio
generateContent) instead of going through OpenRouter.What
[imagegen] provider = "gemini" | "openrouter".openrouter— existing configs and behavior are unchanged.provider = "gemini",api_keyis a Google AI Studio key and requests go togenerativelanguage.googleapis.com/.../generateContent; both the illustration and the handwriting-Q&A paths are handled.Why
Lets people who already have (or would rather use) a Google AI Studio key skip the OpenRouter account and middleman. Same underlying Gemini image models.
How
imagegen.rsgrows a smallProviderenum; the client builds either the OpenRouter chat-completions request or the GeminigenerateContentrequest and parses each response shape.main.rsparses the newproviderkey; the default keeps OpenRouter.Built and running on a real reMarkable 2. Kept the change self-contained and opt-in so it's easy to take or leave. Thanks for inkling — it's a lovely project.
🤖 Generated with Claude Code