@oh-my-pi/pi-agent-core 17.3.2 → 17.3.4
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
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [17.3.4] - 2026-08-14
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- Fixed Codex-compatible V2 remote compaction with an explicit `v2Endpoint` by sending the required feature-negotiation header ([#8524](https://github.com/can1357/oh-my-pi/issues/8524)).
|
|
10
|
+
|
|
5
11
|
## [17.3.0] - 2026-08-13
|
|
6
12
|
|
|
7
13
|
### Fixed
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"type": "module",
|
|
3
3
|
"name": "@oh-my-pi/pi-agent-core",
|
|
4
|
-
"version": "17.3.
|
|
4
|
+
"version": "17.3.4",
|
|
5
5
|
"description": "General-purpose agent with transport abstraction, state management, and attachment support",
|
|
6
6
|
"homepage": "https://omp.sh",
|
|
7
7
|
"author": "Can Boluk",
|
|
@@ -35,16 +35,16 @@
|
|
|
35
35
|
"fmt": "biome format --write ."
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@oh-my-pi/pi-ai": "17.3.
|
|
39
|
-
"@oh-my-pi/pi-catalog": "17.3.
|
|
40
|
-
"@oh-my-pi/pi-natives": "17.3.
|
|
41
|
-
"@oh-my-pi/pi-utils": "17.3.
|
|
42
|
-
"@oh-my-pi/pi-wire": "17.3.
|
|
43
|
-
"@oh-my-pi/snapcompact": "17.3.
|
|
38
|
+
"@oh-my-pi/pi-ai": "17.3.4",
|
|
39
|
+
"@oh-my-pi/pi-catalog": "17.3.4",
|
|
40
|
+
"@oh-my-pi/pi-natives": "17.3.4",
|
|
41
|
+
"@oh-my-pi/pi-utils": "17.3.4",
|
|
42
|
+
"@oh-my-pi/pi-wire": "17.3.4",
|
|
43
|
+
"@oh-my-pi/snapcompact": "17.3.4",
|
|
44
44
|
"@opentelemetry/api": "^1.9.1"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@oh-my-pi/omptype": "17.3.
|
|
47
|
+
"@oh-my-pi/omptype": "17.3.4",
|
|
48
48
|
"@opentelemetry/context-async-hooks": "^2.9.0",
|
|
49
49
|
"@opentelemetry/sdk-trace-base": "^2.9.0",
|
|
50
50
|
"@types/bun": "^1.3.14"
|
|
@@ -423,6 +423,7 @@ function buildCompactionV2Headers(
|
|
|
423
423
|
}
|
|
424
424
|
headers[OPENAI_HEADERS.BETA] = OPENAI_HEADER_VALUES.BETA_RESPONSES;
|
|
425
425
|
headers[OPENAI_HEADERS.ORIGINATOR] = OPENAI_HEADER_VALUES.ORIGINATOR_CODEX;
|
|
426
|
+
headers[OPENAI_HEADERS.CODEX_BETA_FEATURES] = OPENAI_HEADER_VALUES.REMOTE_COMPACTION_V2;
|
|
426
427
|
if (model.useResponsesLite) {
|
|
427
428
|
headers[OPENAI_HEADERS.RESPONSES_LITE] = "true";
|
|
428
429
|
}
|