centaurus-cli 2.6.0 → 2.6.1
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/models-config.json +77 -0
- package/package.json +2 -1
|
@@ -0,0 +1,77 @@
|
|
|
1
|
+
{
|
|
2
|
+
"models": [
|
|
3
|
+
{
|
|
4
|
+
"id": "gemini-3-pro-preview",
|
|
5
|
+
"name": "Gemini 3 Pro (High Thinking)",
|
|
6
|
+
"description": "Next generation flagship with deep reasoning",
|
|
7
|
+
"provider": "google",
|
|
8
|
+
"contextWindow": 2000000,
|
|
9
|
+
"region": "global",
|
|
10
|
+
"supportsThinking": true,
|
|
11
|
+
"thinkingConfig": {
|
|
12
|
+
"thinking_config": {
|
|
13
|
+
"thinking_level": "HIGH",
|
|
14
|
+
"include_thoughts": true
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"id": "gemini-3-pro-preview",
|
|
20
|
+
"name": "Gemini 3 Pro (Low Thinking)",
|
|
21
|
+
"description": "Next generation flagship with faster responses",
|
|
22
|
+
"provider": "google",
|
|
23
|
+
"contextWindow": 2000000,
|
|
24
|
+
"region": "global",
|
|
25
|
+
"supportsThinking": true,
|
|
26
|
+
"thinkingConfig": {
|
|
27
|
+
"thinking_config": {
|
|
28
|
+
"thinking_level": "LOW",
|
|
29
|
+
"include_thoughts": true
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
"id": "gemini-2.5-flash",
|
|
35
|
+
"name": "Gemini 2.5 Flash",
|
|
36
|
+
"description": "Fast and efficient",
|
|
37
|
+
"provider": "google",
|
|
38
|
+
"contextWindow": 2000000,
|
|
39
|
+
"region": "us-central1",
|
|
40
|
+
"supportsThinking": true,
|
|
41
|
+
"thinkingConfig": {
|
|
42
|
+
"thinking_config": {
|
|
43
|
+
"include_thoughts": true
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"id": "gemini-2.5-pro",
|
|
49
|
+
"name": "Gemini 2.5 Pro",
|
|
50
|
+
"description": "Most capable model",
|
|
51
|
+
"provider": "google",
|
|
52
|
+
"contextWindow": 2000000,
|
|
53
|
+
"region": "us-central1",
|
|
54
|
+
"supportsThinking": true,
|
|
55
|
+
"thinkingConfig": {
|
|
56
|
+
"thinking_config": {
|
|
57
|
+
"include_thoughts": true
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"id": "moonshotai/kimi-k2-thinking-maas",
|
|
63
|
+
"name": "Kimi k2 Thinking (MaaS)",
|
|
64
|
+
"description": "Deep reasoning",
|
|
65
|
+
"provider": "maas",
|
|
66
|
+
"contextWindow": 128000,
|
|
67
|
+
"region": "global",
|
|
68
|
+
"supportsThinking": true,
|
|
69
|
+
"thinkingConfig": {
|
|
70
|
+
"chat_template_kwargs": {
|
|
71
|
+
"thinking": true
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
],
|
|
76
|
+
"defaultModel": "gemini-2.5-flash"
|
|
77
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "centaurus-cli",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.1",
|
|
4
4
|
"description": "A powerful command-line AI coding assistant with Google Gemini support",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -37,6 +37,7 @@
|
|
|
37
37
|
"files": [
|
|
38
38
|
"dist",
|
|
39
39
|
"postinstall.js",
|
|
40
|
+
"models-config.json",
|
|
40
41
|
"README.md",
|
|
41
42
|
"LICENSE",
|
|
42
43
|
"CONFIG_GUIDE.md",
|