Codex auth helpers for pydantic-ai OpenAI Responses models.
Project description
codex-auth-helper
codex-auth-helper turns an existing local Codex auth session into a
pydantic-ai model.
It reads ~/.codex/auth.json, refreshes access tokens when needed, builds a
custom AsyncOpenAI client for the Codex Responses endpoint, and returns a
ready-to-use CodexResponsesModel.
What It Does
- Reads tokens from
~/.codex/auth.json - Derives
ChatGPT-Account-Idfrom the auth file or token claims - Refreshes expired access tokens with
https://auth.openai.com/oauth/token - Writes refreshed tokens back to the auth file
- Builds an OpenAI-compatible client pointed at
https://chatgpt.com/backend-api/codex - Returns a
pydantic-airesponses model that already applies the Codex backend requirements
The helper enforces two backend-specific behaviors for you:
openai_store=False- streamed responses even when
pydantic-aicalls the non-streamedrequest()path
What It Does Not Do
- It does not log you into Codex
- It does not create
~/.codex/auth.json - It does not support
pydantic_ai.models.openai.OpenAIChatModelor Chat Completions flows - It does not replace
pydantic-ai; it only provides a model/client factory
Install
uv pip install codex-auth-helper
You also need an existing Codex auth session on the same machine:
~/.codex/auth.json
If you have not logged in yet:
codex login
Quick Start
from codex_auth_helper import create_codex_responses_model
from pydantic_ai import Agent
model = create_codex_responses_model("gpt-5.4")
agent = Agent(model, instructions="You are a helpful coding assistant.")
result = agent.run_sync("Naber")
print(result.output)
Custom Auth Path
If you want to read a different auth file, pass a custom config:
from pathlib import Path
from codex_auth_helper import CodexAuthConfig, create_codex_responses_model
config = CodexAuthConfig(auth_path=Path("/tmp/codex-auth.json"))
model = create_codex_responses_model("gpt-5.4", config=config)
Passing Extra OpenAI Responses Settings
Additional OpenAIResponsesModelSettings can still be passed through. The helper
keeps openai_store=False unless you explicitly override the model after
construction.
from codex_auth_helper import create_codex_responses_model
model = create_codex_responses_model(
"gpt-5.4",
settings={
"openai_reasoning_summary": "concise",
},
)
Lower-Level Client Factory
If you only want the authenticated OpenAI client, use create_codex_async_openai(...):
from codex_auth_helper import create_codex_async_openai
client = create_codex_async_openai()
This returns CodexAsyncOpenAI, a subclass of openai.AsyncOpenAI.
Public API
from codex_auth_helper import (
CodexAsyncOpenAI,
CodexAuthConfig,
CodexAuthState,
CodexAuthStore,
CodexResponsesModel,
CodexTokenManager,
create_codex_async_openai,
create_codex_responses_model,
)
Errors
Typical failure modes:
Codex auth file was not found ...The machine is not logged into Codex yet.Codex auth file ... does not contain valid JSONThe auth file is corrupt or partially written.ModelHTTPError ... Store must be set to falseMeans you are not using the helper-backed model instance.ModelHTTPError ... Stream must be set to trueMeans you are not usingCodexResponsesModel.
Package Notes
This package is intentionally small and focused:
- auth file parsing
- token refresh
- Codex-specific OpenAI client wiring
pydantic-airesponses model factory
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file codex_auth_helper-0.8.0.tar.gz.
File metadata
- Download URL: codex_auth_helper-0.8.0.tar.gz
- Upload date:
- Size: 12.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4eedd237679e8a576b043602e5c7f4be66c3e58ff7dbe151d29f97085811a2e7
|
|
| MD5 |
8000261d2ff25c43e8dd195ca1d54f16
|
|
| BLAKE2b-256 |
d05c2a9bb39b1ba8e3502bfb7682e6b5675ff16eb688902c2dd4448a055ba962
|
File details
Details for the file codex_auth_helper-0.8.0-py3-none-any.whl.
File metadata
- Download URL: codex_auth_helper-0.8.0-py3-none-any.whl
- Upload date:
- Size: 14.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.7 {"installer":{"name":"uv","version":"0.11.7","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
30f36789fc58557623fd98470cf1c69c9012b8f891343e42794b2efa6c5e91f0
|
|
| MD5 |
798a703f44455590be3518f3b0237a9d
|
|
| BLAKE2b-256 |
0b4d07515ab684e8efef8be4c85becbce0e61f30f397dc76e7b63f3b7eec53d8
|