mirror of
https://github.com/openai/codex.git
synced 2026-05-20 19:23:21 +00:00
Add a mailbox we can use for inter-agent communication `wait` is now based on it and don't take target anymore
15 lines
461 B
Rust
15 lines
461 B
Rust
pub(crate) mod agent_resolver;
|
|
pub(crate) mod control;
|
|
pub(crate) mod mailbox;
|
|
mod registry;
|
|
pub(crate) mod role;
|
|
pub(crate) mod status;
|
|
|
|
pub(crate) use codex_protocol::protocol::AgentStatus;
|
|
pub(crate) use control::AgentControl;
|
|
pub(crate) use mailbox::Mailbox;
|
|
pub(crate) use mailbox::MailboxReceiver;
|
|
pub(crate) use registry::exceeds_thread_spawn_depth_limit;
|
|
pub(crate) use registry::next_thread_spawn_depth;
|
|
pub(crate) use status::agent_status_from_event;
|