feat: add Gemini CLI auth login support#305
Open
AtharvaGurao wants to merge 1 commit intosipeed:mainfrom
Open
Conversation
Add Gemini (Google AI) as a supported provider for CLI authentication. Users can now store their Gemini API key via: picoclaw auth login --provider gemini The key is stored securely in ~/.picoclaw/auth.json and loaded automatically when the provider is set to gemini with auth_method=token. Changes: - pkg/auth/token.go: add Gemini display name (aistudio.google.com/apikey) - cmd/picoclaw/main.go: wire Gemini into login/logout/help commands - pkg/providers/http_provider.go: load Gemini API key from auth store when auth_method is 'token' (both explicit provider and model-name fallback detection) Closes sipeed#267
Collaborator
|
@Zepan Adds Gemini CLI auth login support — allows using Google's device auth flow for Gemini access without an API key. Recommendation: Merge. +38/-8, lowers the barrier to using Gemini. Aligns with PicoClaw's goal of being accessible on minimal hardware with minimal setup. |
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
Adds Gemini (Google AI) as a supported provider for CLI authentication, enabling users to securely store and use their Gemini API key.
Usage
The API key is stored securely in
~/.picoclaw/auth.jsonand loaded automatically when the provider is configured withauth_method: "token".Changes
pkg/auth/token.goaistudio.google.com/apikey)cmd/picoclaw/main.gopkg/providers/http_provider.goauth_methodistoken(both explicit provider and model-name fallback)How it works
picoclaw auth login --provider gemini~/.picoclaw/auth.jsonauth_method: "token"Backward Compatible
api_keyin config continues to work (takes priority)Closes #267