@oh-my-pi/pi-coding-agent 12.8.0 → 12.8.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@oh-my-pi/pi-coding-agent",
|
|
3
|
-
"version": "12.8.
|
|
3
|
+
"version": "12.8.1",
|
|
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.8.
|
|
88
|
-
"@oh-my-pi/pi-agent-core": "12.8.
|
|
89
|
-
"@oh-my-pi/pi-ai": "12.8.
|
|
90
|
-
"@oh-my-pi/pi-natives": "12.8.
|
|
91
|
-
"@oh-my-pi/pi-tui": "12.8.
|
|
92
|
-
"@oh-my-pi/pi-utils": "12.8.
|
|
87
|
+
"@oh-my-pi/omp-stats": "12.8.1",
|
|
88
|
+
"@oh-my-pi/pi-agent-core": "12.8.1",
|
|
89
|
+
"@oh-my-pi/pi-ai": "12.8.1",
|
|
90
|
+
"@oh-my-pi/pi-natives": "12.8.1",
|
|
91
|
+
"@oh-my-pi/pi-tui": "12.8.1",
|
|
92
|
+
"@oh-my-pi/pi-utils": "12.8.1",
|
|
93
93
|
"@sinclair/typebox": "^0.34.48",
|
|
94
94
|
"@xterm/headless": "^6.0.0",
|
|
95
95
|
"ajv": "^8.18.0",
|
|
@@ -2898,11 +2898,6 @@ Be thorough - include exact file paths, function names, error messages, and tech
|
|
|
2898
2898
|
)
|
|
2899
2899
|
.sort((a, b) => a.contextWindow - b.contextWindow);
|
|
2900
2900
|
addCandidate(sameProviderLarger[0]);
|
|
2901
|
-
|
|
2902
|
-
const anyLarger = [...availableModels]
|
|
2903
|
-
.filter(m => m.contextWindow > contextWindow)
|
|
2904
|
-
.sort((a, b) => a.contextWindow - b.contextWindow);
|
|
2905
|
-
addCandidate(anyLarger[0]);
|
|
2906
2901
|
for (const candidate of candidates) {
|
|
2907
2902
|
if (modelsAreEqual(candidate, currentModel)) continue;
|
|
2908
2903
|
if (candidate.contextWindow <= contextWindow) continue;
|