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.
- package/dist/services/ai.d.ts +2 -2
- package/dist/services/ai.js +2 -2
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/dist/services/ai.d.ts
CHANGED
|
@@ -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.
|
|
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.
|
|
64
|
+
export declare const WEB_SEARCH_AGENT_MODEL: "gemini-3.1-flash-lite";
|
|
65
65
|
export declare function createWebSearchAgentSession(): any;
|
package/dist/services/ai.js
CHANGED
|
@@ -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 =
|
|
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 =
|
|
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,
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED