(codex = {})
| 4119 | } |
| 4120 | |
| 4121 | function formatTemporaryCodexRouteSummary(codex = {}) { |
| 4122 | return [ |
| 4123 | codex.model ? `model=${codex.model}` : null, |
| 4124 | codex.reasoningEffort ? `effort=${codex.reasoningEffort}` : null |
| 4125 | ].filter(Boolean).join(", ") || "default"; |
| 4126 | } |
| 4127 | |
| 4128 | async function executePendingRemoteExecutionAction() { |
| 4129 | const pending = state.remoteExecution.pendingAction; |
no outgoing calls
no test coverage detected