codex-sdk-python 0.85.0__tar.gz → 0.86.0__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_sdk_python-0.85.0 → codex_sdk_python-0.86.0}/PKG-INFO +6 -2
- {codex_sdk_python-0.85.0 → codex_sdk_python-0.86.0}/README.md +5 -1
- {codex_sdk_python-0.85.0 → codex_sdk_python-0.86.0}/pyproject.toml +1 -1
- {codex_sdk_python-0.85.0 → codex_sdk_python-0.86.0}/src/codex_sdk/__init__.py +1 -1
- {codex_sdk_python-0.85.0 → codex_sdk_python-0.86.0}/src/codex_sdk/abort.py +0 -0
- {codex_sdk_python-0.85.0 → codex_sdk_python-0.86.0}/src/codex_sdk/app_server.py +0 -0
- {codex_sdk_python-0.85.0 → codex_sdk_python-0.86.0}/src/codex_sdk/codex.py +0 -0
- {codex_sdk_python-0.85.0 → codex_sdk_python-0.86.0}/src/codex_sdk/config_overrides.py +0 -0
- {codex_sdk_python-0.85.0 → codex_sdk_python-0.86.0}/src/codex_sdk/events.py +0 -0
- {codex_sdk_python-0.85.0 → codex_sdk_python-0.86.0}/src/codex_sdk/exceptions.py +0 -0
- {codex_sdk_python-0.85.0 → codex_sdk_python-0.86.0}/src/codex_sdk/exec.py +0 -0
- {codex_sdk_python-0.85.0 → codex_sdk_python-0.86.0}/src/codex_sdk/hooks.py +0 -0
- {codex_sdk_python-0.85.0 → codex_sdk_python-0.86.0}/src/codex_sdk/integrations/__init__.py +0 -0
- {codex_sdk_python-0.85.0 → codex_sdk_python-0.86.0}/src/codex_sdk/integrations/pydantic_ai.py +0 -0
- {codex_sdk_python-0.85.0 → codex_sdk_python-0.86.0}/src/codex_sdk/integrations/pydantic_ai_model.py +0 -0
- {codex_sdk_python-0.85.0 → codex_sdk_python-0.86.0}/src/codex_sdk/items.py +0 -0
- {codex_sdk_python-0.85.0 → codex_sdk_python-0.86.0}/src/codex_sdk/options.py +0 -0
- {codex_sdk_python-0.85.0 → codex_sdk_python-0.86.0}/src/codex_sdk/telemetry.py +0 -0
- {codex_sdk_python-0.85.0 → codex_sdk_python-0.86.0}/src/codex_sdk/thread.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: codex-sdk-python
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.86.0
|
|
4
4
|
Summary: Python SDK for the Codex CLI agent with async threads, streaming events, and structured outputs
|
|
5
5
|
Keywords: codex,sdk,python,api,cli,agent,async,streaming
|
|
6
6
|
Author: Vectorfy Co
|
|
@@ -44,7 +44,7 @@ Embed the Codex agent in Python workflows. This SDK wraps the bundled `codex` CL
|
|
|
44
44
|
<td><strong>Lifecycle</strong></td>
|
|
45
45
|
<td>
|
|
46
46
|
<a href="#ci-cd"><img src="https://img.shields.io/badge/CI%2FCD-Active-16a34a?style=flat&logo=githubactions&logoColor=white" alt="CI/CD badge" /></a>
|
|
47
|
-
<img src="https://img.shields.io/badge/Release-0.
|
|
47
|
+
<img src="https://img.shields.io/badge/Release-0.86.0-6b7280?style=flat&logo=pypi&logoColor=white" alt="Release badge" />
|
|
48
48
|
<a href="#license"><img src="https://img.shields.io/badge/License-Apache--2.0-0f766e?style=flat&logo=apache&logoColor=white" alt="License badge" /></a>
|
|
49
49
|
</td>
|
|
50
50
|
</tr>
|
|
@@ -320,6 +320,10 @@ if __name__ == "__main__":
|
|
|
320
320
|
asyncio.run(main())
|
|
321
321
|
```
|
|
322
322
|
|
|
323
|
+
Codex 0.86.0+ supports optional `SKILL.toml` metadata alongside `SKILL.md`. When present,
|
|
324
|
+
`skills_list` responses include an `interface` object (display name, icons, brand color,
|
|
325
|
+
default prompt) for richer UI integrations.
|
|
326
|
+
|
|
323
327
|
#### App-server convenience methods
|
|
324
328
|
|
|
325
329
|
The SDK also exposes helpers for most app-server endpoints:
|
|
@@ -8,7 +8,7 @@ Embed the Codex agent in Python workflows. This SDK wraps the bundled `codex` CL
|
|
|
8
8
|
<td><strong>Lifecycle</strong></td>
|
|
9
9
|
<td>
|
|
10
10
|
<a href="#ci-cd"><img src="https://img.shields.io/badge/CI%2FCD-Active-16a34a?style=flat&logo=githubactions&logoColor=white" alt="CI/CD badge" /></a>
|
|
11
|
-
<img src="https://img.shields.io/badge/Release-0.
|
|
11
|
+
<img src="https://img.shields.io/badge/Release-0.86.0-6b7280?style=flat&logo=pypi&logoColor=white" alt="Release badge" />
|
|
12
12
|
<a href="#license"><img src="https://img.shields.io/badge/License-Apache--2.0-0f766e?style=flat&logo=apache&logoColor=white" alt="License badge" /></a>
|
|
13
13
|
</td>
|
|
14
14
|
</tr>
|
|
@@ -284,6 +284,10 @@ if __name__ == "__main__":
|
|
|
284
284
|
asyncio.run(main())
|
|
285
285
|
```
|
|
286
286
|
|
|
287
|
+
Codex 0.86.0+ supports optional `SKILL.toml` metadata alongside `SKILL.md`. When present,
|
|
288
|
+
`skills_list` responses include an `interface` object (display name, icons, brand color,
|
|
289
|
+
default prompt) for richer UI integrations.
|
|
290
|
+
|
|
287
291
|
#### App-server convenience methods
|
|
288
292
|
|
|
289
293
|
The SDK also exposes helpers for most app-server endpoints:
|
|
@@ -4,7 +4,7 @@ build-backend = "uv_build"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "codex-sdk-python"
|
|
7
|
-
version = "0.
|
|
7
|
+
version = "0.86.0"
|
|
8
8
|
description = "Python SDK for the Codex CLI agent with async threads, streaming events, and structured outputs"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = {text = "Apache-2.0"}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{codex_sdk_python-0.85.0 → codex_sdk_python-0.86.0}/src/codex_sdk/integrations/pydantic_ai.py
RENAMED
|
File without changes
|
{codex_sdk_python-0.85.0 → codex_sdk_python-0.86.0}/src/codex_sdk/integrations/pydantic_ai_model.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|