minovative-mind-cli 1.4.2 → 1.4.3

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.
@@ -57,9 +57,9 @@ export declare function getPlanExecutionConfig(): {
57
57
  * Used for shrinking context payloads to prevent OOM/choking.
58
58
  */
59
59
  export declare function compressTextUsingFlashLite(text: string, instruction?: string): Promise<string>;
60
- export declare const CONTEXT_AGENT_MODEL: "gemini-3.5-flash";
60
+ export declare const CONTEXT_AGENT_MODEL: "gemini-3.1-flash-lite";
61
61
  export declare function createContextAgentSession(): any;
62
62
  export declare const INTENT_ROUTER_MODEL: "gemini-3.1-flash-lite";
63
63
  export declare function createIntentRouterSession(): any;
64
- export declare const WEB_SEARCH_AGENT_MODEL: "gemini-3.5-flash";
64
+ export declare const WEB_SEARCH_AGENT_MODEL: "gemini-3.1-flash-lite";
65
65
  export declare function createWebSearchAgentSession(): any;
@@ -204,7 +204,7 @@ export async function compressTextUsingFlashLite(text, instruction = 'Summarize
204
204
  }
205
205
  }
206
206
  // ─── Context Agent Service ───────────────────────────────────────────
207
- export const CONTEXT_AGENT_MODEL = DEFAULT_MODEL;
207
+ export const CONTEXT_AGENT_MODEL = GEMINI_MODELS.FLASH_LITE_3_1;
208
208
  export function createContextAgentSession() {
209
209
  const contextTools = [
210
210
  {
@@ -378,7 +378,7 @@ export function createIntentRouterSession() {
378
378
  { temperature: 0, responseMimeType: 'application/json' });
379
379
  }
380
380
  // ─── Web Search Agent Service ───────────────────────────────────────────
381
- export const WEB_SEARCH_AGENT_MODEL = DEFAULT_MODEL;
381
+ export const WEB_SEARCH_AGENT_MODEL = GEMINI_MODELS.FLASH_LITE_3_1;
382
382
  export function createWebSearchAgentSession() {
383
383
  return new ProxyChatSession(WEB_SEARCH_AGENT_MODEL, WEB_SEARCH_SYSTEM_INSTRUCTION, [{ googleSearch: {} }], {
384
384
  maxOutputTokens: MAX_OUTPUT_TOKENS,
@@ -65,5 +65,5 @@
65
65
  ]
66
66
  }
67
67
  },
68
- "version": "1.4.2"
68
+ "version": "1.4.3"
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.4.2",
4
+ "version": "1.4.3",
5
5
  "author": "Daniel Ward",
6
6
  "bin": {
7
7
  "minovative-mind-cli": "./bin/run.js"