pi-openai-codex-compat 0.0.4 → 0.0.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/README.md +7 -1
- package/extensions/index.ts +2 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -393,7 +393,13 @@ mise run test:live:codex
|
|
|
393
393
|
The task obtains the local Codex bearer token and runs the tests with
|
|
394
394
|
`gpt-5.6-luna` at medium reasoning effort.
|
|
395
395
|
|
|
396
|
-
The
|
|
396
|
+
The public package entrypoint is `extensions/index.ts`; implementation modules remain under
|
|
397
|
+
`extensions/openai-codex-compat/`. The focused Pi AI serializer copy lives under
|
|
398
|
+
`extensions/openai-codex-compat/vendor/pi-ai/`. The custom Codex provider transport and stream
|
|
399
|
+
parser are focused adaptations of Pi AI's corresponding implementation. Equivalence and protocol
|
|
400
|
+
tests cover canonical serialization, native namespace round-trips, raw native replay, sibling Codex
|
|
401
|
+
JSON endpoints, SSE request behavior, WebSocket reuse, grammar tools, image results, standalone
|
|
402
|
+
search, and compaction continuation.
|
|
397
403
|
|
|
398
404
|
## Release staging
|
|
399
405
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "pi-openai-codex-compat",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
4
4
|
"description": "OpenAI Codex compatibility for Pi with native compaction, fast mode, and Codex-optimized capabilities",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pi-package"
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"url": "git+https://github.com/2h2d-co/pi-openai-codex-compat.git"
|
|
21
21
|
},
|
|
22
22
|
"files": [
|
|
23
|
-
"extensions
|
|
23
|
+
"extensions",
|
|
24
24
|
"README.md",
|
|
25
25
|
"CHANGELOG.md",
|
|
26
26
|
"LICENSE",
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
},
|
|
59
59
|
"pi": {
|
|
60
60
|
"extensions": [
|
|
61
|
-
"./extensions/
|
|
61
|
+
"./extensions/index.ts"
|
|
62
62
|
]
|
|
63
63
|
}
|
|
64
64
|
}
|