codex-python 0.2.11__tar.gz → 0.2.13__tar.gz
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.
- {codex_python-0.2.11 → codex_python-0.2.13}/PKG-INFO +2 -2
- {codex_python-0.2.11 → codex_python-0.2.13}/README.md +1 -1
- {codex_python-0.2.11 → codex_python-0.2.13}/codex/__init__.py +1 -1
- codex_python-0.2.13/codex/protocol/_base_model.py +8 -0
- codex_python-0.2.13/codex/protocol/types.py +1553 -0
- {codex_python-0.2.11 → codex_python-0.2.13}/crates/codex_native/Cargo.lock +218 -20
- {codex_python-0.2.11 → codex_python-0.2.13}/crates/codex_native/Cargo.toml +8 -1
- codex_python-0.2.13/crates/codex_native/src/bin/protocol_schema.rs +163 -0
- {codex_python-0.2.11 → codex_python-0.2.13}/crates/codex_native/src/lib.rs +49 -4
- {codex_python-0.2.11 → codex_python-0.2.13}/pyproject.toml +1 -0
- codex_python-0.2.11/codex/protocol/types.py +0 -1539
- {codex_python-0.2.11 → codex_python-0.2.13}/LICENSE +0 -0
- {codex_python-0.2.11 → codex_python-0.2.13}/codex/api.py +0 -0
- {codex_python-0.2.11 → codex_python-0.2.13}/codex/config.py +0 -0
- {codex_python-0.2.11 → codex_python-0.2.13}/codex/event.py +0 -0
- {codex_python-0.2.11 → codex_python-0.2.13}/codex/native.py +0 -0
- {codex_python-0.2.11 → codex_python-0.2.13}/codex/py.typed +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: codex-python
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.13
|
|
4
4
|
Classifier: Programming Language :: Python :: 3
|
|
5
5
|
Classifier: Programming Language :: Python :: 3 :: Only
|
|
6
6
|
Classifier: Programming Language :: Python :: 3.13
|
|
@@ -104,7 +104,7 @@ Common tasks
|
|
|
104
104
|
- Generate protocol types from upstream: `make gen-protocol`
|
|
105
105
|
|
|
106
106
|
Protocol types
|
|
107
|
-
- `make gen-protocol` generates TS types
|
|
107
|
+
- `make gen-protocol` generates TS types and a JSON Schema, then writes Pydantic v2 models to `codex/protocol/types.py`. The process runs entirely from the native helper in this repo; no manual scripts needed.
|
|
108
108
|
- Generated models use `model_config = ConfigDict(extra='allow')` and place it at the end of each class.
|
|
109
109
|
|
|
110
110
|
Releasing
|
|
@@ -85,7 +85,7 @@ Common tasks
|
|
|
85
85
|
- Generate protocol types from upstream: `make gen-protocol`
|
|
86
86
|
|
|
87
87
|
Protocol types
|
|
88
|
-
- `make gen-protocol` generates TS types
|
|
88
|
+
- `make gen-protocol` generates TS types and a JSON Schema, then writes Pydantic v2 models to `codex/protocol/types.py`. The process runs entirely from the native helper in this repo; no manual scripts needed.
|
|
89
89
|
- Generated models use `model_config = ConfigDict(extra='allow')` and place it at the end of each class.
|
|
90
90
|
|
|
91
91
|
Releasing
|