indusagi-coding-agent 0.1.37 → 0.1.38
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/CHANGELOG.md +11 -1
- package/dist/core/model-resolver.js +2 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [0.1.
|
|
3
|
+
## [0.1.38] - Latest Release
|
|
4
|
+
|
|
5
|
+
### Added
|
|
6
|
+
- **MiniMax New Defaults**: Added support defaults for new MiniMax generations
|
|
7
|
+
- `minimax` now defaults to `MiniMax-M2.7`
|
|
8
|
+
- `minimax-cn` now defaults to `MiniMax-M2.5`
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
- **Model Resolver**: Updated MiniMax default model mapping in `defaultModelPerProvider`
|
|
12
|
+
|
|
13
|
+
## [0.1.37]
|
|
4
14
|
|
|
5
15
|
### Changed
|
|
6
16
|
- **Indusagi Dependency**: Updated `indusagi` to `^0.12.17`
|
|
@@ -120,8 +120,8 @@ export const defaultModelPerProvider = {
|
|
|
120
120
|
cerebras: "zai-glm-5",
|
|
121
121
|
zai: "glm-5",
|
|
122
122
|
mistral: "devstral-medium-latest",
|
|
123
|
-
minimax: "MiniMax-M2.
|
|
124
|
-
"minimax-cn": "MiniMax-M2.
|
|
123
|
+
minimax: "MiniMax-M2.7",
|
|
124
|
+
"minimax-cn": "MiniMax-M2.5",
|
|
125
125
|
opencode: "claude-opus-4-5",
|
|
126
126
|
kimi: "kimi-k2.5",
|
|
127
127
|
"kimi-coding": "kimi-for-coding",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "indusagi-coding-agent",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.38",
|
|
4
4
|
"description": "Coding agent CLI with file ops, bash, web search (DuckDuckGo), web fetch, and session management. Now with web capabilities for real-time research!",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"indusagiConfig": {
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"diff": "^8.0.2",
|
|
54
54
|
"file-type": "^21.1.1",
|
|
55
55
|
"glob": "^11.0.3",
|
|
56
|
-
"indusagi": "
|
|
56
|
+
"indusagi": "0.12.19",
|
|
57
57
|
"marked": "^15.0.12",
|
|
58
58
|
"minimatch": "^10.1.1",
|
|
59
59
|
"proper-lockfile": "^4.1.2",
|
|
@@ -76,7 +76,7 @@
|
|
|
76
76
|
"tui",
|
|
77
77
|
"agent"
|
|
78
78
|
],
|
|
79
|
-
"author": "
|
|
79
|
+
"author": "Varun Israni",
|
|
80
80
|
"license": "MIT",
|
|
81
81
|
"repository": {
|
|
82
82
|
"type": "git",
|