@oh-my-pi/pi-coding-agent 12.7.4 → 12.7.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/CHANGELOG.md +6 -0
- package/package.json +7 -7
- package/src/config/model-resolver.ts +35 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [12.7.5] - 2026-02-16
|
|
6
|
+
### Changed
|
|
7
|
+
|
|
8
|
+
- Updated SMOL_MODEL_PRIORITY to include additional model variants (gpt-5.3-spark, cerebras/zai-glm-4.7, haiku-4-5, haiku-4.5) for improved fast model discovery
|
|
9
|
+
- Updated SLOW_MODEL_PRIORITY to include additional model variants (gpt-5.3-codex, gpt-5.3, gpt-5.1-codex, gpt-5.1, opus-4.6, opus-4-6, opus-4.5, opus-4-5, opus-4.1, opus-4-1) for improved comprehensive model discovery
|
|
10
|
+
|
|
5
11
|
## [12.7.3] - 2026-02-16
|
|
6
12
|
|
|
7
13
|
### Fixed
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oh-my-pi/pi-coding-agent",
|
|
3
|
-
"version": "12.7.
|
|
3
|
+
"version": "12.7.5",
|
|
4
4
|
"description": "Coding agent CLI with read, bash, edit, write tools and session management",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -84,12 +84,12 @@
|
|
|
84
84
|
},
|
|
85
85
|
"dependencies": {
|
|
86
86
|
"@mozilla/readability": "0.6.0",
|
|
87
|
-
"@oh-my-pi/omp-stats": "12.7.
|
|
88
|
-
"@oh-my-pi/pi-agent-core": "12.7.
|
|
89
|
-
"@oh-my-pi/pi-ai": "12.7.
|
|
90
|
-
"@oh-my-pi/pi-natives": "12.7.
|
|
91
|
-
"@oh-my-pi/pi-tui": "12.7.
|
|
92
|
-
"@oh-my-pi/pi-utils": "12.7.
|
|
87
|
+
"@oh-my-pi/omp-stats": "12.7.5",
|
|
88
|
+
"@oh-my-pi/pi-agent-core": "12.7.5",
|
|
89
|
+
"@oh-my-pi/pi-ai": "12.7.5",
|
|
90
|
+
"@oh-my-pi/pi-natives": "12.7.5",
|
|
91
|
+
"@oh-my-pi/pi-tui": "12.7.5",
|
|
92
|
+
"@oh-my-pi/pi-utils": "12.7.5",
|
|
93
93
|
"@sinclair/typebox": "^0.34.48",
|
|
94
94
|
"@xterm/headless": "^6.0.0",
|
|
95
95
|
"ajv": "^8.18.0",
|
|
@@ -42,10 +42,43 @@ export interface ScopedModel {
|
|
|
42
42
|
}
|
|
43
43
|
|
|
44
44
|
/** Priority chain for auto-discovering smol/fast models */
|
|
45
|
-
export const SMOL_MODEL_PRIORITY = [
|
|
45
|
+
export const SMOL_MODEL_PRIORITY = [
|
|
46
|
+
// any spark
|
|
47
|
+
"gpt-5.3-spark",
|
|
48
|
+
// cerebras zai
|
|
49
|
+
"cerebras/zai-glm-4.7",
|
|
50
|
+
"cerebras/zai-glm-4.6",
|
|
51
|
+
"cerebras/zai-glm",
|
|
52
|
+
// any haiku
|
|
53
|
+
"haiku-4-5",
|
|
54
|
+
"haiku-4.5",
|
|
55
|
+
"haiku",
|
|
56
|
+
// any flash
|
|
57
|
+
"flash",
|
|
58
|
+
// any mini
|
|
59
|
+
"mini",
|
|
60
|
+
];
|
|
46
61
|
|
|
47
62
|
/** Priority chain for auto-discovering slow/comprehensive models (reasoning, codex) */
|
|
48
|
-
export const SLOW_MODEL_PRIORITY = [
|
|
63
|
+
export const SLOW_MODEL_PRIORITY = [
|
|
64
|
+
// any codex
|
|
65
|
+
"gpt-5.3-codex",
|
|
66
|
+
"gpt-5.3",
|
|
67
|
+
"gpt-5.2-codex",
|
|
68
|
+
"gpt-5.2",
|
|
69
|
+
"gpt-5.1-codex",
|
|
70
|
+
"gpt-5.1",
|
|
71
|
+
"codex",
|
|
72
|
+
// any opus
|
|
73
|
+
"opus-4.6",
|
|
74
|
+
"opus-4-6",
|
|
75
|
+
"opus-4.5",
|
|
76
|
+
"opus-4-5",
|
|
77
|
+
"opus-4.1",
|
|
78
|
+
"opus-4-1",
|
|
79
|
+
// whatever
|
|
80
|
+
"pro",
|
|
81
|
+
];
|
|
49
82
|
|
|
50
83
|
/**
|
|
51
84
|
* Parse a model string in "provider/modelId" format.
|