codex icon indicating copy to clipboard operation
codex copied to clipboard

feat(core): re-export InitialHistory from conversation_manager

Open M4n5ter opened this issue 7 months ago • 0 comments

This commit adds a re-export for InitialHistory from the internal conversation_manager module in codex-core's lib.rs.

The RolloutRecorder::get_rollout_history method (exposed via pub use rollout::RolloutRecorder;, already present in lib.rs) returns an InitialHistory type, which is defined in the private conversation_manager module. Without this re-export, consumers of the public RolloutRecorder API would not be able to directly use the return type, as they cannot access the private module. This would result in an inconvenient experience where the method's return value cannot be handled without additional, non-obvious imports.

By adding pub use conversation_manager::InitialHistory;, we make InitialHistory available as codex_core::InitialHistory, improving API ergonomics for users of the rollout functionality while keeping the conversation_manager module internal.

No functional changes are made; this is a pure re-export for better usability.

M4n5ter avatar Sep 07 '25 09:09 M4n5ter