You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Responses background mode stays opt-in. Enable `backgroundResponses` in settings or `CODEX_AUTH_BACKGROUND_RESPONSES=1` only for callers that intentionally send `background: true`, because those requests switch from stateless `store=false` routing to stateful `store=true`. See [docs/upgrade.md](docs/upgrade.md) for rollout guidance.
229
+
213
230
---
214
231
215
232
## Experimental Settings Highlights
@@ -291,9 +308,9 @@ codex auth doctor --json
291
308
292
309
## Release Notes
293
310
294
-
- Current stable: [docs/releases/v1.2.0.md](docs/releases/v1.2.0.md)
|[development/RUNBOOK_ADD_AUTH_COMMAND.md](development/RUNBOOK_ADD_AUTH_COMMAND.md)| Safe workflow for adding a new `codex auth ...` command |
72
+
|[development/RUNBOOK_ADD_CONFIG_FIELD.md](development/RUNBOOK_ADD_CONFIG_FIELD.md)| Safe workflow for introducing a new config field |
73
+
|[development/RUNBOOK_CHANGE_ROUTING_POLICY.md](development/RUNBOOK_CHANGE_ROUTING_POLICY.md)| Safe workflow for changing routing, retry, or fallback policy |
65
74
|[development/REPOSITORY_SCOPE.md](development/REPOSITORY_SCOPE.md)| Ownership map by repository path |
75
+
|[development/RUNBOOK_ADD_AUTH_MANAGER_COMMAND.md](development/RUNBOOK_ADD_AUTH_MANAGER_COMMAND.md)| Safe workflow for adding a new `codex auth` command |
76
+
|[development/RUNBOOK_ADD_CONFIG_FIELD_SAFELY.md](development/RUNBOOK_ADD_CONFIG_FIELD_SAFELY.md)| Safe workflow for introducing a new config/settings field |
77
+
|[development/RUNBOOK_CHANGE_ROUTING_POLICY_SAFELY.md](development/RUNBOOK_CHANGE_ROUTING_POLICY_SAFELY.md)| Safe workflow for changing routing or account-selection policy |
66
78
|[development/TESTING.md](development/TESTING.md)| Validation gates and test matrix |
Copy file name to clipboardExpand all lines: docs/development/CONFIG_FIELDS.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,7 @@ Used only for host plugin mode through the host runtime config file.
31
31
|`reasoningEffort`| string |`none\|minimal\|low\|medium\|high\|xhigh`| Reasoning effort hint |
32
32
|`reasoningSummary`| string |`auto\|concise\|detailed`| Summary detail hint |
33
33
|`textVerbosity`| string |`low\|medium\|high`| Text verbosity target |
34
+
|`promptCacheRetention`| string |`5m\|1h\|24h\|7d`| Default server-side prompt cache retention when the request body omits `prompt_cache_retention`|
34
35
|`include`| string[]|`reasoning.encrypted_content`| Extra payload include |
35
36
|`store`| boolean |`false`| Required for stateless backend mode |
36
37
@@ -74,10 +75,19 @@ Used only for host plugin mode through the host runtime config file.
74
75
|`tokenRefreshSkewMs`|`60000`|
75
76
|`sessionRecovery`|`true`|
76
77
|`autoResume`|`true`|
78
+
|`responseContinuation`|`false`|
79
+
|`backgroundResponses`|`false`|
77
80
|`proactiveRefreshGuardian`|`true`|
78
81
|`proactiveRefreshIntervalMs`|`60000`|
79
82
|`proactiveRefreshBufferMs`|`300000`|
80
83
84
+
`backgroundResponses` is an opt-in compatibility switch for Responses API `background: true` requests. When enabled, those requests become stateful (`store=true`) instead of following the default stateless Codex routing.
85
+
86
+
Upgrade note:
87
+
- Leave this disabled for existing stateless pipelines that do not intentionally send `background: true`.
88
+
- Enable it only for callers that need stateful background responses and can accept forced `store=true`, preserved input item IDs, and the loss of stateless-only defaults such as fast-session trimming.
89
+
- After enabling it, test one known `background: true` request end to end before rolling it across shared automation.
0 commit comments