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.
- package/dist/services/agent.js +1 -1
- package/dist/utils/config.d.ts +2 -2
- package/dist/utils/config.js +2 -2
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/dist/services/agent.js
CHANGED
|
@@ -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'},
|
package/dist/utils/config.d.ts
CHANGED
|
@@ -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";
|
package/dist/utils/config.js
CHANGED
|
@@ -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',
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED