@iservu-inc/adf-cli 0.4.27 → 0.4.28

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.
package/CHANGELOG.md CHANGED
@@ -5,6 +5,56 @@ All notable changes to `@iservu-inc/adf-cli` will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [0.4.28] - 2025-10-04
9
+
10
+ ### ✨ Major Update: Gemini 2.5 Models
11
+
12
+ **Added: Complete Gemini 2.5 Series Support**
13
+ - **Problem:** Missing all latest Gemini 2.5 models (only had outdated 1.5 series)
14
+ - **Solution:** Updated model list to include full Gemini 2.5, 2.0, and 1.5 lineups
15
+ - **Reference:** https://ai.google.dev/gemini-api/docs/models (updated 2025-10-02)
16
+
17
+ **New Models Available (10 total, up from 6):**
18
+
19
+ **Gemini 2.5 Series (Latest - Stable):**
20
+ - `gemini-2.5-pro` - Most advanced for complex reasoning
21
+ - `gemini-2.5-flash` - Best price-performance
22
+ - `gemini-2.5-flash-lite` - Fastest and most cost-efficient
23
+ - `gemini-2.5-flash-image` - Image generation
24
+
25
+ **Gemini 2.0 Series (Stable):**
26
+ - `gemini-2.0-flash`
27
+ - `gemini-2.0-flash-lite`
28
+
29
+ **Gemini 1.5 Series (Legacy - Still Supported):**
30
+ - `gemini-1.5-pro-latest`
31
+ - `gemini-1.5-flash-latest`
32
+ - `gemini-1.5-pro`
33
+ - `gemini-1.5-flash`
34
+
35
+ **Previous Model List (v0.4.27):**
36
+ - Only had 6 models, all from older series (2.0-flash-exp, 1.5-pro-latest, etc.)
37
+ - Missing entire Gemini 2.5 series
38
+
39
+ **Impact:**
40
+ - Users now see latest Gemini 2.5 models first
41
+ - Access to most advanced Gemini capabilities
42
+ - Better price-performance with 2.5-flash
43
+ - Fastest responses with 2.5-flash-lite
44
+ - Image generation with 2.5-flash-image
45
+ - Legacy 1.5 models still available for compatibility
46
+
47
+ **Technical Details:**
48
+ - `ai-config.js:45-59`: Updated Google provider defaultModels
49
+ - Models ordered by: 2.5 series → 2.0 series → 1.5 series (newest first)
50
+ - Added inline comments documenting each model's purpose
51
+ - All 120 tests passing
52
+
53
+ **Recommended Models:**
54
+ - **Complex reasoning:** `gemini-2.5-pro`
55
+ - **General use:** `gemini-2.5-flash`
56
+ - **High throughput:** `gemini-2.5-flash-lite`
57
+
8
58
  ## [0.4.27] - 2025-10-04
9
59
 
10
60
  ### 🐛 Critical Bug Fixes
@@ -43,12 +43,19 @@ const AI_PROVIDERS = {
43
43
  website: 'https://ai.google.dev/',
44
44
  setup: 'Get your API key from https://aistudio.google.com/app/apikey',
45
45
  defaultModels: [
46
- 'gemini-2.0-flash-exp',
46
+ // Gemini 2.5 Series (Latest - Stable)
47
+ 'gemini-2.5-pro', // Most advanced for complex reasoning
48
+ 'gemini-2.5-flash', // Best price-performance
49
+ 'gemini-2.5-flash-lite', // Fastest and most cost-efficient
50
+ 'gemini-2.5-flash-image', // Image generation
51
+ // Gemini 2.0 Series (Stable)
52
+ 'gemini-2.0-flash',
53
+ 'gemini-2.0-flash-lite',
54
+ // Gemini 1.5 Series (Legacy - still supported)
47
55
  'gemini-1.5-pro-latest',
48
56
  'gemini-1.5-flash-latest',
49
57
  'gemini-1.5-pro',
50
- 'gemini-1.5-flash',
51
- 'gemini-1.5-flash-8b'
58
+ 'gemini-1.5-flash'
52
59
  ]
53
60
  },
54
61
  OPENROUTER: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@iservu-inc/adf-cli",
3
- "version": "0.4.27",
3
+ "version": "0.4.28",
4
4
  "description": "CLI tool for AgentDevFramework - AI-assisted development framework with multi-provider AI support",
5
5
  "main": "index.js",
6
6
  "bin": {