centaurus-cli 2.8.4 → 2.8.6
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/cli-adapter.d.ts +7 -0
- package/dist/cli-adapter.d.ts.map +1 -1
- package/dist/cli-adapter.js +143 -35
- package/dist/cli-adapter.js.map +1 -1
- package/dist/config/models.d.ts.map +1 -1
- package/dist/config/models.js +14 -4
- package/dist/config/models.js.map +1 -1
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/types/index.d.ts +6 -0
- package/dist/types/index.d.ts.map +1 -1
- package/dist/ui/components/App.d.ts +2 -0
- package/dist/ui/components/App.d.ts.map +1 -1
- package/dist/ui/components/App.js +67 -4
- package/dist/ui/components/App.js.map +1 -1
- package/dist/ui/components/ConnectionStatusMessage.d.ts +17 -0
- package/dist/ui/components/ConnectionStatusMessage.d.ts.map +1 -0
- package/dist/ui/components/ConnectionStatusMessage.js +66 -0
- package/dist/ui/components/ConnectionStatusMessage.js.map +1 -0
- package/dist/ui/components/InteractiveShell.d.ts +2 -0
- package/dist/ui/components/InteractiveShell.d.ts.map +1 -1
- package/dist/ui/components/InteractiveShell.js +11 -2
- package/dist/ui/components/InteractiveShell.js.map +1 -1
- package/dist/ui/components/MessageDisplay.d.ts.map +1 -1
- package/dist/ui/components/MessageDisplay.js +5 -0
- package/dist/ui/components/MessageDisplay.js.map +1 -1
- package/dist/ui/components/ToolExecutionMessage.d.ts.map +1 -1
- package/dist/ui/components/ToolExecutionMessage.js +40 -24
- package/dist/ui/components/ToolExecutionMessage.js.map +1 -1
- package/dist/utils/editor-utils.d.ts +3 -3
- package/dist/utils/editor-utils.d.ts.map +1 -1
- package/dist/utils/editor-utils.js +25 -18
- package/dist/utils/editor-utils.js.map +1 -1
- package/dist/utils/terminal-output.d.ts.map +1 -1
- package/dist/utils/terminal-output.js +55 -1
- package/dist/utils/terminal-output.js.map +1 -1
- package/models-config.json +24 -4
- package/package.json +4 -3
package/models-config.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"name": "Gemini 3 Pro (High Thinking)",
|
|
6
6
|
"description": "Next generation flagship with deep reasoning",
|
|
7
7
|
"provider": "google",
|
|
8
|
-
"contextWindow":
|
|
8
|
+
"contextWindow": 1000000,
|
|
9
9
|
"region": "global",
|
|
10
10
|
"supportsThinking": true,
|
|
11
11
|
"thinkingConfig": {
|
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
"name": "Gemini 3 Pro (Low Thinking)",
|
|
27
27
|
"description": "Next generation flagship with faster responses",
|
|
28
28
|
"provider": "google",
|
|
29
|
-
"contextWindow":
|
|
29
|
+
"contextWindow": 1000000,
|
|
30
30
|
"region": "global",
|
|
31
31
|
"supportsThinking": true,
|
|
32
32
|
"thinkingConfig": {
|
|
@@ -42,12 +42,32 @@
|
|
|
42
42
|
"maxOutputTokens": 32768
|
|
43
43
|
}
|
|
44
44
|
},
|
|
45
|
+
{
|
|
46
|
+
"id": "gemini-3-flash-preview",
|
|
47
|
+
"name": "Gemini 3 Flash Preview",
|
|
48
|
+
"description": "Next generation fast and efficient model",
|
|
49
|
+
"provider": "google",
|
|
50
|
+
"contextWindow": 1000000,
|
|
51
|
+
"region": "global",
|
|
52
|
+
"supportsThinking": true,
|
|
53
|
+
"thinkingConfig": {
|
|
54
|
+
"thinking_config": {
|
|
55
|
+
"include_thoughts": true
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
"generationConfig": {
|
|
59
|
+
"temperature": 0.1,
|
|
60
|
+
"topP": 0.95,
|
|
61
|
+
"topK": 64,
|
|
62
|
+
"maxOutputTokens": 32768
|
|
63
|
+
}
|
|
64
|
+
},
|
|
45
65
|
{
|
|
46
66
|
"id": "gemini-2.5-flash",
|
|
47
67
|
"name": "Gemini 2.5 Flash",
|
|
48
68
|
"description": "Fast and efficient",
|
|
49
69
|
"provider": "google",
|
|
50
|
-
"contextWindow":
|
|
70
|
+
"contextWindow": 1000000,
|
|
51
71
|
"region": "us-central1",
|
|
52
72
|
"supportsThinking": true,
|
|
53
73
|
"thinkingConfig": {
|
|
@@ -67,7 +87,7 @@
|
|
|
67
87
|
"name": "Gemini 2.5 Pro",
|
|
68
88
|
"description": "Most capable model",
|
|
69
89
|
"provider": "google",
|
|
70
|
-
"contextWindow":
|
|
90
|
+
"contextWindow": 1000000,
|
|
71
91
|
"region": "us-central1",
|
|
72
92
|
"supportsThinking": true,
|
|
73
93
|
"thinkingConfig": {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "centaurus-cli",
|
|
3
|
-
"version": "2.8.
|
|
3
|
+
"version": "2.8.6",
|
|
4
4
|
"description": "A powerful command-line AI coding assistant with Google Gemini support",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -47,8 +47,6 @@
|
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"@homebridge/node-pty-prebuilt-multiarch": "^0.13.1",
|
|
49
49
|
"@modelcontextprotocol/sdk": "^1.24.2",
|
|
50
|
-
"@types/node": "^24.7.2",
|
|
51
|
-
"@types/react": "^18.3.26",
|
|
52
50
|
"axios": "^1.12.2",
|
|
53
51
|
"boxen": "^8.0.1",
|
|
54
52
|
"chalk": "^5.6.2",
|
|
@@ -66,11 +64,14 @@
|
|
|
66
64
|
"open": "^10.1.0",
|
|
67
65
|
"react": "^18.3.1",
|
|
68
66
|
"ssh2": "^1.15.0",
|
|
67
|
+
"strip-ansi": "^7.1.0",
|
|
69
68
|
"typescript": "^5.9.3",
|
|
70
69
|
"wrap-ansi": "^9.0.2"
|
|
71
70
|
},
|
|
72
71
|
"devDependencies": {
|
|
73
72
|
"@types/inquirer": "^9.0.9",
|
|
73
|
+
"@types/node": "^24.7.2",
|
|
74
|
+
"@types/react": "^18.3.26",
|
|
74
75
|
"@types/ssh2": "^1.15.0",
|
|
75
76
|
"prettier": "^3.6.2",
|
|
76
77
|
"ts-node": "^10.9.2"
|