CodexExecutor is a stateless executor for Codex (OpenAI Responses API entrypoint). If api_key is unavailable on auth, it falls back to legacy via ClientAdapter.
| 223 | // CodexExecutor is a stateless executor for Codex (OpenAI Responses API entrypoint). |
| 224 | // If api_key is unavailable on auth, it falls back to legacy via ClientAdapter. |
| 225 | type CodexExecutor struct { |
| 226 | cfg *config.Config |
| 227 | } |
| 228 | |
| 229 | func NewCodexExecutor(cfg *config.Config) *CodexExecutor { return &CodexExecutor{cfg: cfg} } |
| 230 |
nothing calls this directly
no outgoing calls
no test coverage detected