mirror of
https://github.com/openai/codex.git
synced 2026-04-30 01:16:54 +00:00
17 lines
408 B
Rust
17 lines
408 B
Rust
pub mod account;
|
|
mod conversation_id;
|
|
pub use conversation_id::ConversationId;
|
|
/// Numeric identifier for agents/subagents (agent 0 is always the root UI thread).
|
|
pub type AgentId = u64;
|
|
pub mod approvals;
|
|
pub mod config_types;
|
|
pub mod custom_prompts;
|
|
pub mod items;
|
|
pub mod message_history;
|
|
pub mod models;
|
|
pub mod num_format;
|
|
pub mod parse_command;
|
|
pub mod plan_tool;
|
|
pub mod protocol;
|
|
pub mod user_input;
|