Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions internal/executor/codex_executor.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,10 @@ import (
// Ensure CodexExecutor implements TurnExecutor.
var _ TurnExecutor = (*CodexExecutor)(nil)

// CodexExecutor wraps CodexCLI for phase execution with structured output
// via --output-schema. Unlike Claude's constrained decoding, Codex's
// structured output is NOT guaranteed — responses are validated and retried.
// CodexExecutor wraps CodexCLI for phase execution with structured output via
// --output-schema. PackageName: executor. Unlike Claude's constrained decoding,
// Codex's structured output is NOT guaranteed — responses are validated and
// retried.
type CodexExecutor struct {
codexPath string
workdir string
Expand Down