Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ devvy
```

The setup wizard will help you:
1. Select your AI provider (OpenAI, Anthropic, OpenRouter, or custom)
1. Select your AI provider (OpenAI, Anthropic, OpenRouter, Google Gemini, or custom)
2. Enter your API key
3. Choose your default model

Expand All @@ -54,6 +54,7 @@ devvy setup

- **OpenAI** - GPT-4, GPT-4o, GPT-4-turbo
- **Anthropic** - Claude 3.5, Claude 3
- **Google Gemini** - Gemini 2.0, Gemini 1.5 (uses beta API endpoint)
- **OpenRouter** - Access to 100+ models from various providers
- **Custom** - Any OpenAI-compatible API endpoint

Expand All @@ -71,7 +72,7 @@ devvy setup
# Set your API key
devvy config set-key your-api-key-here

# Set provider (openai, anthropic, openrouter, custom)
# Set provider (openai, anthropic, openrouter, gemini, custom)
devvy config set-provider openrouter

# Select model interactively (fetches available models from API)
Expand All @@ -95,6 +96,7 @@ You can also use environment variables:
export OPENAI_API_KEY=your-key # For OpenAI
export ANTHROPIC_API_KEY=your-key # For Anthropic
export OPENROUTER_API_KEY=your-key # For OpenRouter
export GEMINI_API_KEY=your-key # For Google Gemini
Copy link

Copilot AI Dec 20, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The example command in README.md line 75-76 shows "openrouter" as an example but should be updated to include "gemini" as one of the valid options. The comment should read: "# Set provider (openai, anthropic, openrouter, gemini, custom)" to reflect the newly added Gemini provider support.

Copilot uses AI. Check for mistakes.
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated the provider comment to include gemini in commit ba8f160.

```

## Usage
Expand Down
Loading