Embed the Codex agent in your workflows and apps.
This is a lightweight Python SDK that uses the system-installed codex command from PATH (no bundled binary).
| Item | Version |
|---|---|
| Based on | @openai/codex-sdk @ commit 9327e99b2 |
| Codex CLI | v0.98.0+ (requires --json flag support) |
| Python | 3.10+ |
This SDK is periodically synced with the upstream OpenAI Codex SDK. Check the upstream sync workflow for update status.
| Language | Package | Repository |
|---|---|---|
| Python | codex-sdk-py |
nogataka/codex-sdk-py |
| TypeScript | codex-sdk-ts |
nogataka/codex-sdk-ts |
Both SDKs have identical features and API design. Choose based on your preferred language.
This Python SDK is a complete port of the official OpenAI Codex TypeScript SDK, with all features, data structures, and behaviors fully implemented.
Fully ported from official SDK:
- All 8 event types (ThreadStartedEvent, TurnCompletedEvent, etc.)
- All 8 item types (AgentMessageItem, CommandExecutionItem, etc.)
- All 4 enums (ApprovalMode, SandboxMode, ModelReasoningEffort, WebSearchMode)
- CLI argument construction logic, environment variable handling, TOML config serialization
Additional features unique to this SDK:
- Lightweight design without bundled binary (uses system-installed Codex CLI)
- MCP server configuration via
--configoverrides - Upstream sync workflow for tracking official SDK changes
For detailed comparison, see docs/typescript-python-comparison.md.
pip install codex-sdk-pyRequires Python 3.10+.
import asyncio
from codex_sdk import Codex
async def main():
codex = Codex()
thread = codex.start_thread()
turn = await thread.run("Diagnose the test failure and propose a fix")
print(turn.final_response)
print(turn.items)
asyncio.run(main())Call run() repeatedly on the same Thread instance to continue that conversation.
next_turn = await thread.run("Implement the fix")run() buffers events until the turn finishes. To react to intermediate progress—tool calls, streaming responses, and file change notifications—use run_streamed() instead, which returns an async generator of structured events.
async def stream_example():
codex = Codex()
thread = codex.start_thread()
streamed = await thread.run_streamed("Diagnose the test failure and propose a fix")
async for event in streamed.events:
match event.get("type"):
case "item.completed":
print("item", event.get("item"))
case "turn.completed":
print("usage", event.get("usage"))The Codex agent can produce a JSON response that conforms to a specified schema. The schema can be provided for each turn as a plain JSON object.
schema = {
"type": "object",
"properties": {
"summary": {"type": "string"},
"status": {"type": "string", "enum": ["ok", "action_required"]},
},
"required": ["summary", "status"],
"additionalProperties": False,
}
turn = await thread.run("Summarize repository status", {"output_schema": schema})
print(turn.final_response)You can also create a JSON schema from a Pydantic model using model_json_schema().
from pydantic import BaseModel
from typing import Literal
class StatusResponse(BaseModel):
summary: str
status: Literal["ok", "action_required"]
turn = await thread.run(
"Summarize repository status",
{"output_schema": StatusResponse.model_json_schema()}
)
print(turn.final_response)Provide structured input entries when you need to include images alongside text. Text entries are concatenated into the final prompt while image entries are passed to the Codex CLI via --image.
turn = await thread.run([
{"type": "text", "text": "Describe these screenshots"},
{"type": "local_image", "path": "./ui.png"},
{"type": "local_image", "path": "./diagram.jpg"},
])Threads are persisted in ~/.codex/sessions. If you lose the in-memory Thread object, reconstruct it with resume_thread() and keep going.
import os
saved_thread_id = os.environ["CODEX_THREAD_ID"]
thread = codex.resume_thread(saved_thread_id)
await thread.run("Implement the fix")Codex runs in the current working directory by default. To avoid unrecoverable errors, Codex requires the working directory to be a Git repository. You can skip the Git repository check by passing the skip_git_repo_check option when creating a thread.
thread = codex.start_thread({
"working_directory": "/path/to/project",
"skip_git_repo_check": True,
})Control how the agent interacts with your filesystem using sandbox_mode.
from codex_sdk import Codex, SandboxMode
thread = codex.start_thread({
"sandbox_mode": SandboxMode.WORKSPACE_WRITE,
})Available modes:
SandboxMode.READ_ONLY- Agent can only read filesSandboxMode.WORKSPACE_WRITE- Agent can read/write in the workspaceSandboxMode.DANGER_FULL_ACCESS- Full filesystem access (use with caution)
Control when the agent requires approval for actions.
from codex_sdk import Codex, ApprovalMode
thread = codex.start_thread({
"approval_policy": ApprovalMode.ON_FAILURE,
})Available modes:
ApprovalMode.NEVER- Never require approvalApprovalMode.ON_REQUEST- Approve on explicit requestApprovalMode.ON_FAILURE- Approve after failuresApprovalMode.UNTRUSTED- Always require approval
Use asyncio.Event to cancel an ongoing turn (equivalent to AbortSignal in TypeScript).
import asyncio
async def cancellable_example():
codex = Codex()
thread = codex.start_thread()
cancel_event = asyncio.Event()
async def cancel_after_delay():
await asyncio.sleep(5)
cancel_event.set()
# Start cancellation timer
asyncio.create_task(cancel_after_delay())
try:
turn = await thread.run(
"Long running task",
{"cancel_event": cancel_event}
)
except asyncio.CancelledError:
print("Turn was cancelled")By default, the Codex CLI inherits the Python process environment. Provide the optional env parameter when instantiating the Codex client to fully control which variables the CLI receives—useful for sandboxed hosts.
codex = Codex({
"env": {
"PATH": "/usr/local/bin",
},
})The SDK still injects its required variables (such as OPENAI_BASE_URL and CODEX_API_KEY) on top of the environment you provide.
Use the config option to provide additional Codex CLI configuration overrides. The SDK accepts a dict, flattens it into dotted paths, and serializes values as TOML literals before passing them as repeated --config key=value flags.
codex = Codex({
"config": {
"show_raw_agent_reasoning": True,
"sandbox_workspace_write": {"network_access": True},
},
})Thread options still take precedence for overlapping settings because they are emitted after these global overrides.
Configure Model Context Protocol (MCP) servers to extend Codex's capabilities with external tools.
codex = Codex({
"config": {
"mcp_servers": {
"playwright": {
"command": "npx",
"args": ["-y", "@playwright/mcp@latest"]
},
"filesystem": {
"command": "npx",
"args": ["-y", "@anthropic/mcp-server-filesystem@latest", "/path/to/dir"]
}
}
}
})The mcp_servers configuration is serialized as an inline TOML table, allowing you to dynamically configure MCP servers without modifying global Codex settings.
Main entry point for the SDK.
codex = Codex(options: CodexOptions | None = None)Methods:
start_thread(options: ThreadOptions | None = None) -> Thread- Start a new conversationresume_thread(thread_id: str, options: ThreadOptions | None = None) -> Thread- Resume an existing conversation
Represents a conversation with the agent.
Properties:
id: str | None- Thread ID (populated after first turn)
Methods:
async run(input: Input, turn_options: TurnOptions | None = None) -> Turn- Execute a turn and return resultsasync run_streamed(input: Input, turn_options: TurnOptions | None = None) -> StreamedTurn- Execute a turn with streaming events
Result of a completed turn.
@dataclass
class Turn:
items: list[ThreadItem] # All items produced during the turn
final_response: str # The agent's final response text
usage: Usage | None # Token usage statisticsResult of a streamed turn.
@dataclass
class StreamedTurn:
events: AsyncGenerator[ThreadEvent, None] # Async generator of eventsInput = str | list[UserInput]- User input (string or structured)TextUserInput- Text input:{"type": "text", "text": "..."}ImageUserInput- Image input:{"type": "local_image", "path": "..."}
ThreadStartedEvent- Thread startedTurnStartedEvent- Turn startedTurnCompletedEvent- Turn completed (includes usage)TurnFailedEvent- Turn failed (includes error)ItemStartedEvent- Item startedItemUpdatedEvent- Item updatedItemCompletedEvent- Item completedThreadErrorEvent- Unrecoverable error
AgentMessageItem- Agent's response textReasoningItem- Agent's reasoning summaryCommandExecutionItem- Shell command executionFileChangeItem- File modificationsMcpToolCallItem- MCP tool invocationWebSearchItem- Web search queryTodoListItem- Agent's task listErrorItem- Non-fatal error
class SandboxMode(StrEnum):
READ_ONLY = "read-only"
WORKSPACE_WRITE = "workspace-write"
DANGER_FULL_ACCESS = "danger-full-access"
class ApprovalMode(StrEnum):
NEVER = "never"
ON_REQUEST = "on-request"
ON_FAILURE = "on-failure"
UNTRUSTED = "untrusted"
class ModelReasoningEffort(StrEnum):
MINIMAL = "minimal"
LOW = "low"
MEDIUM = "medium"
HIGH = "high"
XHIGH = "xhigh"
class WebSearchMode(StrEnum):
DISABLED = "disabled"
CACHED = "cached"
LIVE = "live"# Clone the repository
git clone https://github.com/nogataka/codex-sdk-py.git
cd codex-sdk-py
# Install development dependencies
pip install -e ".[dev]"pytest tests/ -v# Lint
ruff check codex_sdk/
# Format
ruff format codex_sdk/
# Type check
mypy codex_sdk/Releases are automated via GitHub Actions.
-
Update the version in
codex_sdk/__init__.py:__version__ = "0.1.0"
-
Commit the version change:
git add codex_sdk/__init__.py git commit -m "Bump version to 0.1.0" -
Create and push a tag:
git tag v0.1.0 git push origin main --tags
-
GitHub Actions will automatically:
- Build the package
- Publish to PyPI
- Create a GitHub Release
Set the following secrets in your GitHub repository:
PYPI_TOKEN: Your PyPI API token for publishing packages
To create a PyPI token:
- Go to https://pypi.org/manage/account/token/
- Create a new token with "Upload packages" scope
- Add it to your GitHub repository secrets
Apache-2.0