minovative-mind-cli 1.1.4 → 1.1.5

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.
@@ -711,7 +711,7 @@ export async function startAgentLoop(workspaceRoot, version) {
711
711
  const selectedModel = await p.select({
712
712
  message: 'Select AI Model',
713
713
  options: [
714
- { value: 'gemini-3.1-pro', label: 'Gemini 3.1 Pro', hint: 'The newest Pro model for complex logic' },
714
+ { value: 'gemini-3.1-pro-preview', label: 'Gemini 3.1 Pro', hint: 'The newest Pro model for complex logic' },
715
715
  { value: 'gemini-3.5-flash', label: 'Gemini 3.5 Flash', hint: 'Balanced performance' },
716
716
  { value: 'gemini-2.5-pro', label: 'Gemini 2.5 Pro', hint: 'Best for complex coding & large context' },
717
717
  // {value: 'gemini-2.5-flash', label: 'Gemini 2.5 Flash', hint: 'Balanced performance'},
@@ -4,10 +4,10 @@
4
4
  export declare const FIREBASE_API_KEY = "AIzaSyAFqOlkNO3uFGYO1kaEBGEFD9CXLt0mnIs";
5
5
  export declare const GITHUB_CLIENT_ID = "Ov23linFYFfjO3JILG7r";
6
6
  export declare const GEMINI_MODELS: {
7
+ readonly PRO_3_1: "gemini-3.1-pro-preview";
8
+ readonly FLASH_3_5: "gemini-3.5-flash";
7
9
  readonly FLASH_PRO: "gemini-2.5-pro";
8
10
  readonly FLASH_LATEST: "gemini-2.5-flash";
9
- readonly PRO_3_1: "gemini-3.1-pro";
10
- readonly FLASH_3_5: "gemini-3.5-flash";
11
11
  };
12
12
  export declare const CLAUDE_MODELS: {
13
13
  readonly OPUS: "claude-opus-4-6";
@@ -4,10 +4,10 @@
4
4
  export const FIREBASE_API_KEY = 'AIzaSyAFqOlkNO3uFGYO1kaEBGEFD9CXLt0mnIs';
5
5
  export const GITHUB_CLIENT_ID = 'Ov23linFYFfjO3JILG7r';
6
6
  export const GEMINI_MODELS = {
7
+ PRO_3_1: 'gemini-3.1-pro-preview',
8
+ FLASH_3_5: 'gemini-3.5-flash',
7
9
  FLASH_PRO: 'gemini-2.5-pro',
8
10
  FLASH_LATEST: 'gemini-2.5-flash',
9
- PRO_3_1: 'gemini-3.1-pro',
10
- FLASH_3_5: 'gemini-3.5-flash',
11
11
  };
12
12
  export const CLAUDE_MODELS = {
13
13
  OPUS: 'claude-opus-4-6',
@@ -65,5 +65,5 @@
65
65
  ]
66
66
  }
67
67
  },
68
- "version": "1.1.4"
68
+ "version": "1.1.5"
69
69
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "minovative-mind-cli",
3
3
  "description": "An automated AI agent powered by Vertex AI that helps you write software",
4
- "version": "1.1.4",
4
+ "version": "1.1.5",
5
5
  "author": "Daniel Ward",
6
6
  "bin": {
7
7
  "minovative-mind-cli": "./bin/run.js"