Narrow Python SDK root exports

Co-authored-by: Codex <noreply@openai.com>
This commit is contained in:
Ahmed Ibrahim
2026-05-09 10:35:44 +03:00
parent 8b8e868140
commit 692c08faf9
7 changed files with 126 additions and 55 deletions

View File

@@ -95,12 +95,12 @@ with Codex() as codex:
print(result.final_response)
```
## 6) Generated models
## 6) Public value types
The convenience wrappers live at the package root, but the canonical app-server models live under:
The convenience wrappers and selected value types live at the package root:
```python
from codex_app_server.generated.v2_all import Turn, TurnStatus, ThreadReadResponse
from codex_app_server import AskForApproval, ReasoningEffort, SandboxPolicy, TurnStatus
```
## 7) Next stops