prodex 0.21.0

OpenAI profile pooling and safe auto-rotate for Codex CLI and Claude Code
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use super::*;

pub(super) struct RuntimeLaunchRequest<'a> {
    pub(super) profile: Option<&'a str>,
    pub(super) allow_auto_rotate: bool,
    pub(super) skip_quota_check: bool,
    pub(super) base_url: Option<&'a str>,
    pub(super) include_code_review: bool,
    pub(super) force_runtime_proxy: bool,
}

pub(super) struct PreparedRuntimeLaunch {
    pub(super) paths: AppPaths,
    pub(super) codex_home: PathBuf,
    pub(super) managed: bool,
    pub(super) runtime_proxy: Option<RuntimeProxyEndpoint>,
}