Appearance
Codex CLI / App
Use this for OpenAI groups such as Codex Plus Pool and Codex Pro Pool.
This configuration applies to Codex CLI, Codex App, and the VS Code extension.
config.toml
Put the following content at the beginning of config.toml.
toml
# ~/.codex/config.toml
model_provider = "codex-easy"
model = "gpt-5.5"
model_reasoning_effort = "high"
disable_response_storage = true
supports_websockets = false
[model_providers.codex-easy]
name = "codex-easy"
base_url = "https://codex-easy.ai"
wire_api = "responses"
requires_openai_auth = true
[features]
goals = truetoml
# %userprofile%\.codex\config.toml
model_provider = "codex-easy"
model = "gpt-5.5"
model_reasoning_effort = "high"
disable_response_storage = true
supports_websockets = false
[model_providers.codex-easy]
name = "codex-easy"
base_url = "https://codex-easy.ai"
wire_api = "responses"
requires_openai_auth = true
[features]
goals = trueauth.json
json
// ~/.codex/auth.json
{
"OPENAI_API_KEY": "<your-ce-api-key>"
}json
// %userprofile%\.codex\auth.json
{
"OPENAI_API_KEY": "<your-ce-api-key>"
}