git-diff-ai-reviewer 1.2.5 → 1.2.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/provider.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "git-diff-ai-reviewer",
3
- "version": "1.2.5",
3
+ "version": "1.2.6",
4
4
  "description": "AI-powered code review using Claude or Gemini API. Reviews git branch diffs and generates actionable fix prompts.",
5
5
  "main": "src/index.js",
6
6
  "bin": {
package/src/provider.js CHANGED
@@ -14,7 +14,7 @@ const PROVIDERS = {
14
14
  */
15
15
  const DEFAULT_MODELS = {
16
16
  [PROVIDERS.CLAUDE]: 'claude-sonnet-4-20250514',
17
- [PROVIDERS.GEMINI]: 'gemini-2.0-flash',
17
+ [PROVIDERS.GEMINI]: 'gemini-3.1-flash-lite-preview',
18
18
  };
19
19
 
20
20
  /**