Feature request: Include model and reasoning-level recommendations in ChatGPT-to-Codex handoffs

Open 💬 2 comments Opened Jul 31, 2026 by scruffyOrc
💡 Likely answer: A maintainer (github-actions[bot], contributor) responded on this thread — see the highlighted reply below.

What variant of Codex are you using?

App

What feature would you like to see?

When ChatGPT hands a task to Codex, it should be able to include a recommended model and reasoning level based on the context of the conversation.

ChatGPT often already understands whether a task is routine implementation, repository exploration, cross-system work, difficult debugging, architectural design, or consequential review. That context should be passed into the Codex handoff instead of requiring the user to make the model-selection decision again manually.

The handoff could show:

Recommended model: Luna
Recommended reasoning: High
Reason: The behavior is already defined and the remaining work is primarily implementation and testing.

The user should be able to accept the recommendation, override it, or disable recommendations entirely.

This would improve cost efficiency, reliability, and transparency while helping users take advantage of lower-cost models when they are appropriate.

Additional information

I regularly use ChatGPT to clarify product behavior and technical intent before handing repository-level work to Codex.

The appropriate model often depends on where the uncertainty lies:

  • Luna when the task is implementing already-defined behavior
  • Terra when the task requires understanding the existing system and making moderate implementation decisions
  • Sol when the task involves architecture, unresolved product decisions, difficult diagnosis, or high-consequence review

Today, ChatGPT may have enough context to make that distinction, but the recommendation is lost during the handoff. The user must remember to reconsider the model and reasoning level before starting the task.

A later extension could allow Codex to recommend escalation when a lower-cost model discovers unexpected architectural uncertainty, repeated failures, or risks beyond the original task classification. The initial feature, however, could simply pass an optional model and reasoning recommendation with the task.

Related issue

This is related to #35062, but concerns a different workflow stage. #35062 proposes secure model dispatch originating within Codex. This request proposes carrying ChatGPT’s existing task context into the initial Codex handoff as an optional model and reasoning-level recommendation. The capabilities could complement each other.

View original on GitHub ↗

2 Comments

github-actions[bot] contributor · 28 days ago

Potential duplicates detected. Please review them and close your issue if it is a duplicate.

  • #35062

Powered by Codex Action

scruffyOrc · 28 days ago

Thanks for pointing me to #35062. I agree that the two requests are related because both involve task-aware model selection, but I believe they address different stages of the workflow.

#35062 focuses on model dispatch initiated within Codex, including the secure authorization, consent, entitlement, and launch mechanics needed for a local routing component to recommend or switch models.

This request focuses on the earlier ChatGPT-to-Codex handoff. ChatGPT may already understand the task’s intent, complexity, and source of uncertainty from the preceding conversation, but that context is currently lost when the task is handed to Codex. The proposed feature would pass an optional model and reasoning-level recommendation into the initial handoff, while still allowing the user to accept or override it.

The two capabilities could complement each other, but this request does not require automatic routing or switching within Codex.